@soat/sdk 0.12.5 → 0.13.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.d.cts CHANGED
@@ -2560,6 +2560,10 @@ type HumanInputRequest = {
2560
2560
  };
2561
2561
  };
2562
2562
  type StartRunRequest = {
2563
+ /**
2564
+ * Orchestration to run (orch_...).
2565
+ */
2566
+ orchestration_id: string;
2563
2567
  /**
2564
2568
  * Initial state for the run (merged with orchestration defaults).
2565
2569
  */
@@ -2647,16 +2651,11 @@ type SessionRecord = {
2647
2651
  */
2648
2652
  last_activity_at?: Date | null;
2649
2653
  };
2650
- type SessionMessage = {
2651
- role?: 'user' | 'assistant' | 'unknown';
2652
- content?: string;
2653
- document_id?: string | null;
2654
- position?: number;
2655
- metadata?: {
2656
- [key: string]: unknown;
2657
- } | null;
2658
- };
2659
2654
  type CreateSessionRequest = {
2655
+ /**
2656
+ * Agent this session belongs to
2657
+ */
2658
+ agent_id: string;
2660
2659
  /**
2661
2660
  * Optional session name
2662
2661
  */
@@ -3036,16 +3035,6 @@ type TraceTreeNode = {
3036
3035
  */
3037
3036
  children?: Array<TraceTreeNode>;
3038
3037
  };
3039
- type TraceGenerations = {
3040
- /**
3041
- * Public ID of the trace
3042
- */
3043
- trace_id?: string;
3044
- /**
3045
- * Generation public IDs linked to this trace, ordered by start time
3046
- */
3047
- generation_ids?: Array<string>;
3048
- };
3049
3038
  type UserRecord = {
3050
3039
  /**
3051
3040
  * Public user ID (usr_ prefix)
@@ -3104,6 +3093,10 @@ type WebhookSecretResponse = {
3104
3093
  };
3105
3094
  type Delivery = {
3106
3095
  id?: string;
3096
+ /**
3097
+ * Public ID of the webhook this delivery belongs to
3098
+ */
3099
+ webhook_id?: string;
3107
3100
  event_type?: string;
3108
3101
  payload?: {
3109
3102
  [key: string]: unknown;
@@ -3150,6 +3143,19 @@ type ListActorsData = {
3150
3143
  * External ID to filter by (e.g. WhatsApp phone number)
3151
3144
  */
3152
3145
  external_id?: string;
3146
+ /**
3147
+ * Return only actors linked to this agent
3148
+ */
3149
+ agent_id?: string;
3150
+ /**
3151
+ * Return only actors linked to this chat
3152
+ */
3153
+ chat_id?: string;
3154
+ /**
3155
+ * Return only actors that participate in this conversation (derived from the conversation's messages).
3156
+ *
3157
+ */
3158
+ conversation_id?: string;
3153
3159
  /**
3154
3160
  * Maximum number of results to return
3155
3161
  */
@@ -3195,6 +3201,14 @@ type CreateActorData = {
3195
3201
  * 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).
3196
3202
  */
3197
3203
  external_id?: string;
3204
+ /**
3205
+ * Agent to link this actor to. Mutually exclusive with chat_id.
3206
+ */
3207
+ agent_id?: string;
3208
+ /**
3209
+ * Chat to link this actor to. Mutually exclusive with agent_id.
3210
+ */
3211
+ chat_id?: string;
3198
3212
  /**
3199
3213
  * Memory ID to link to this actor. Mutually exclusive with auto_create_memory.
3200
3214
  */
@@ -3680,59 +3694,6 @@ type SubmitAgentToolOutputsResponses = {
3680
3694
  200: AgentGenerationResponse;
3681
3695
  };
3682
3696
  type SubmitAgentToolOutputsResponse = SubmitAgentToolOutputsResponses[keyof SubmitAgentToolOutputsResponses];
3683
- type CreateAgentActorData = {
3684
- body: {
3685
- name: string;
3686
- /**
3687
- * Optional actor type
3688
- */
3689
- type?: string;
3690
- /**
3691
- * Optional external identifier
3692
- */
3693
- external_id?: string;
3694
- tags?: {
3695
- [key: string]: string;
3696
- };
3697
- };
3698
- path: {
3699
- /**
3700
- * Agent ID
3701
- */
3702
- agent_id: string;
3703
- };
3704
- query?: never;
3705
- url: '/api/v1/agents/{agent_id}/actors';
3706
- };
3707
- type CreateAgentActorErrors = {
3708
- /**
3709
- * Bad request
3710
- */
3711
- 400: ErrorResponse;
3712
- /**
3713
- * Unauthorized
3714
- */
3715
- 401: ErrorResponse;
3716
- /**
3717
- * Forbidden
3718
- */
3719
- 403: ErrorResponse;
3720
- /**
3721
- * Agent not found
3722
- */
3723
- 404: ErrorResponse;
3724
- };
3725
- type CreateAgentActorError = CreateAgentActorErrors[keyof CreateAgentActorErrors];
3726
- type CreateAgentActorResponses = {
3727
- /**
3728
- * Actor created
3729
- */
3730
- 201: {
3731
- id?: string;
3732
- name?: string;
3733
- };
3734
- };
3735
- type CreateAgentActorResponse = CreateAgentActorResponses[keyof CreateAgentActorResponses];
3736
3697
  type ListAiProvidersData = {
3737
3698
  body?: never;
3738
3699
  path?: never;
@@ -4281,7 +4242,7 @@ type CreateChatCompletionData = {
4281
4242
  body: ChatCompletionRequest;
4282
4243
  path?: never;
4283
4244
  query?: never;
4284
- url: '/api/v1/chats/completions';
4245
+ url: '/api/v1/chat/completions';
4285
4246
  };
4286
4247
  type CreateChatCompletionErrors = {
4287
4248
  /**
@@ -4305,59 +4266,6 @@ type CreateChatCompletionResponses = {
4305
4266
  200: ChatCompletionResponse;
4306
4267
  };
4307
4268
  type CreateChatCompletionResponse = CreateChatCompletionResponses[keyof CreateChatCompletionResponses];
4308
- type CreateChatActorData = {
4309
- body: {
4310
- name: string;
4311
- /**
4312
- * Optional actor type
4313
- */
4314
- type?: string;
4315
- /**
4316
- * Optional external identifier
4317
- */
4318
- external_id?: string;
4319
- tags?: {
4320
- [key: string]: string;
4321
- };
4322
- };
4323
- path: {
4324
- /**
4325
- * Chat ID
4326
- */
4327
- chat_id: string;
4328
- };
4329
- query?: never;
4330
- url: '/api/v1/chats/{chat_id}/actors';
4331
- };
4332
- type CreateChatActorErrors = {
4333
- /**
4334
- * Bad request
4335
- */
4336
- 400: ErrorResponse;
4337
- /**
4338
- * Unauthorized
4339
- */
4340
- 401: ErrorResponse;
4341
- /**
4342
- * Forbidden
4343
- */
4344
- 403: ErrorResponse;
4345
- /**
4346
- * Chat not found
4347
- */
4348
- 404: ErrorResponse;
4349
- };
4350
- type CreateChatActorError = CreateChatActorErrors[keyof CreateChatActorErrors];
4351
- type CreateChatActorResponses = {
4352
- /**
4353
- * Actor created
4354
- */
4355
- 201: {
4356
- id?: string;
4357
- name?: string;
4358
- };
4359
- };
4360
- type CreateChatActorResponse = CreateChatActorResponses[keyof CreateChatActorResponses];
4361
4269
  type ListConversationsData = {
4362
4270
  body?: never;
4363
4271
  path?: never;
@@ -4721,39 +4629,6 @@ type GenerateConversationMessageResponses = {
4721
4629
  200: GenerateConversationMessageResponse;
4722
4630
  };
4723
4631
  type GenerateConversationMessageResponse2 = GenerateConversationMessageResponses[keyof GenerateConversationMessageResponses];
4724
- type ListConversationActorsData = {
4725
- body?: never;
4726
- path: {
4727
- /**
4728
- * Conversation ID
4729
- */
4730
- conversation_id: string;
4731
- };
4732
- query?: never;
4733
- url: '/api/v1/conversations/{conversation_id}/actors';
4734
- };
4735
- type ListConversationActorsErrors = {
4736
- /**
4737
- * Unauthorized
4738
- */
4739
- 401: ErrorResponse;
4740
- /**
4741
- * Forbidden
4742
- */
4743
- 403: ErrorResponse;
4744
- /**
4745
- * Conversation not found
4746
- */
4747
- 404: ErrorResponse;
4748
- };
4749
- type ListConversationActorsError = ListConversationActorsErrors[keyof ListConversationActorsErrors];
4750
- type ListConversationActorsResponses = {
4751
- /**
4752
- * List of actors
4753
- */
4754
- 200: Array<ConversationActorRecord>;
4755
- };
4756
- type ListConversationActorsResponse = ListConversationActorsResponses[keyof ListConversationActorsResponses];
4757
4632
  type RemoveConversationMessageData = {
4758
4633
  body?: never;
4759
4634
  path: {
@@ -5968,6 +5843,50 @@ type ListFormationEventsResponses = {
5968
5843
  200: Array<FormationOperation>;
5969
5844
  };
5970
5845
  type ListFormationEventsResponse = ListFormationEventsResponses[keyof ListFormationEventsResponses];
5846
+ type ListGenerationsData = {
5847
+ body?: never;
5848
+ path?: never;
5849
+ query?: {
5850
+ /**
5851
+ * Filter by agent public ID
5852
+ */
5853
+ agent_id?: string;
5854
+ /**
5855
+ * Filter by trace public ID
5856
+ */
5857
+ trace_id?: string;
5858
+ /**
5859
+ * Filter by lifecycle status
5860
+ */
5861
+ status?: 'in_progress' | 'requires_action' | 'completed' | 'failed';
5862
+ limit?: number;
5863
+ offset?: number;
5864
+ };
5865
+ url: '/api/v1/generations';
5866
+ };
5867
+ type ListGenerationsErrors = {
5868
+ /**
5869
+ * Unauthorized
5870
+ */
5871
+ 401: ErrorResponse;
5872
+ /**
5873
+ * Forbidden
5874
+ */
5875
+ 403: ErrorResponse;
5876
+ };
5877
+ type ListGenerationsError = ListGenerationsErrors[keyof ListGenerationsErrors];
5878
+ type ListGenerationsResponses = {
5879
+ /**
5880
+ * Paginated list of generations
5881
+ */
5882
+ 200: {
5883
+ data?: Array<Generation>;
5884
+ total?: number;
5885
+ limit?: number;
5886
+ offset?: number;
5887
+ };
5888
+ };
5889
+ type ListGenerationsResponse = ListGenerationsResponses[keyof ListGenerationsResponses];
5971
5890
  type GetGenerationData = {
5972
5891
  body?: never;
5973
5892
  path: {
@@ -6263,11 +6182,14 @@ type UpdateMemoryResponses = {
6263
6182
  type UpdateMemoryResponse = UpdateMemoryResponses[keyof UpdateMemoryResponses];
6264
6183
  type ListMemoryEntriesData = {
6265
6184
  body?: never;
6266
- path: {
6185
+ path?: never;
6186
+ query: {
6187
+ /**
6188
+ * Memory container to list entries from (mem_...)
6189
+ */
6267
6190
  memory_id: string;
6268
6191
  };
6269
- query?: never;
6270
- url: '/api/v1/memories/{memory_id}/entries';
6192
+ url: '/api/v1/memory-entries';
6271
6193
  };
6272
6194
  type ListMemoryEntriesErrors = {
6273
6195
  /**
@@ -6296,6 +6218,10 @@ type ListMemoryEntriesResponses = {
6296
6218
  type ListMemoryEntriesResponse = ListMemoryEntriesResponses[keyof ListMemoryEntriesResponses];
6297
6219
  type CreateMemoryEntryData = {
6298
6220
  body: {
6221
+ /**
6222
+ * Memory container to add the entry to (mem_...)
6223
+ */
6224
+ memory_id: string;
6299
6225
  /**
6300
6226
  * The text content of the memory entry
6301
6227
  */
@@ -6313,11 +6239,9 @@ type CreateMemoryEntryData = {
6313
6239
  */
6314
6240
  update_threshold?: number;
6315
6241
  };
6316
- path: {
6317
- memory_id: string;
6318
- };
6242
+ path?: never;
6319
6243
  query?: never;
6320
- url: '/api/v1/memories/{memory_id}/entries';
6244
+ url: '/api/v1/memory-entries';
6321
6245
  };
6322
6246
  type CreateMemoryEntryErrors = {
6323
6247
  /**
@@ -6355,11 +6279,10 @@ type CreateMemoryEntryResponse = CreateMemoryEntryResponses[keyof CreateMemoryEn
6355
6279
  type DeleteMemoryEntryData = {
6356
6280
  body?: never;
6357
6281
  path: {
6358
- memory_id: string;
6359
6282
  entry_id: string;
6360
6283
  };
6361
6284
  query?: never;
6362
- url: '/api/v1/memories/{memory_id}/entries/{entry_id}';
6285
+ url: '/api/v1/memory-entries/{entry_id}';
6363
6286
  };
6364
6287
  type DeleteMemoryEntryErrors = {
6365
6288
  /**
@@ -6389,11 +6312,10 @@ type DeleteMemoryEntryResponse = DeleteMemoryEntryResponses[keyof DeleteMemoryEn
6389
6312
  type GetMemoryEntryData = {
6390
6313
  body?: never;
6391
6314
  path: {
6392
- memory_id: string;
6393
6315
  entry_id: string;
6394
6316
  };
6395
6317
  query?: never;
6396
- url: '/api/v1/memories/{memory_id}/entries/{entry_id}';
6318
+ url: '/api/v1/memory-entries/{entry_id}';
6397
6319
  };
6398
6320
  type GetMemoryEntryErrors = {
6399
6321
  /**
@@ -6428,11 +6350,10 @@ type UpdateMemoryEntryData = {
6428
6350
  content?: string;
6429
6351
  };
6430
6352
  path: {
6431
- memory_id: string;
6432
6353
  entry_id: string;
6433
6354
  };
6434
6355
  query?: never;
6435
- url: '/api/v1/memories/{memory_id}/entries/{entry_id}';
6356
+ url: '/api/v1/memory-entries/{entry_id}';
6436
6357
  };
6437
6358
  type UpdateMemoryEntryErrors = {
6438
6359
  /**
@@ -6616,14 +6537,14 @@ type UpdateOrchestrationResponses = {
6616
6537
  type UpdateOrchestrationResponse = UpdateOrchestrationResponses[keyof UpdateOrchestrationResponses];
6617
6538
  type ListOrchestrationRunsData = {
6618
6539
  body?: never;
6619
- path: {
6540
+ path?: never;
6541
+ query?: {
6620
6542
  /**
6621
- * Public ID of the orchestration (orch_...)
6543
+ * Filter by orchestration public ID (orch_...)
6622
6544
  */
6623
- orchestration_id: string;
6545
+ orchestration_id?: string;
6624
6546
  };
6625
- query?: never;
6626
- url: '/api/v1/orchestrations/{orchestration_id}/runs';
6547
+ url: '/api/v1/orchestration-runs';
6627
6548
  };
6628
6549
  type ListOrchestrationRunsErrors = {
6629
6550
  /**
@@ -6634,10 +6555,6 @@ type ListOrchestrationRunsErrors = {
6634
6555
  * Forbidden
6635
6556
  */
6636
6557
  403: unknown;
6637
- /**
6638
- * Orchestration not found
6639
- */
6640
- 404: unknown;
6641
6558
  };
6642
6559
  type ListOrchestrationRunsResponses = {
6643
6560
  /**
@@ -6647,15 +6564,10 @@ type ListOrchestrationRunsResponses = {
6647
6564
  };
6648
6565
  type ListOrchestrationRunsResponse = ListOrchestrationRunsResponses[keyof ListOrchestrationRunsResponses];
6649
6566
  type StartOrchestrationRunData = {
6650
- body?: StartRunRequest;
6651
- path: {
6652
- /**
6653
- * Public ID of the orchestration (orch_...)
6654
- */
6655
- orchestration_id: string;
6656
- };
6567
+ body: StartRunRequest;
6568
+ path?: never;
6657
6569
  query?: never;
6658
- url: '/api/v1/orchestrations/{orchestration_id}/runs';
6570
+ url: '/api/v1/orchestration-runs';
6659
6571
  };
6660
6572
  type StartOrchestrationRunErrors = {
6661
6573
  /**
@@ -6685,17 +6597,13 @@ type StartOrchestrationRunResponse = StartOrchestrationRunResponses[keyof StartO
6685
6597
  type CancelOrchestrationRunData = {
6686
6598
  body?: never;
6687
6599
  path: {
6688
- /**
6689
- * Public ID of the orchestration (orch_...)
6690
- */
6691
- orchestration_id: string;
6692
6600
  /**
6693
6601
  * Public ID of the run (run_...)
6694
6602
  */
6695
6603
  run_id: string;
6696
6604
  };
6697
6605
  query?: never;
6698
- url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}/cancel';
6606
+ url: '/api/v1/orchestration-runs/{run_id}/cancel';
6699
6607
  };
6700
6608
  type CancelOrchestrationRunErrors = {
6701
6609
  /**
@@ -6725,17 +6633,13 @@ type CancelOrchestrationRunResponse = CancelOrchestrationRunResponses[keyof Canc
6725
6633
  type SubmitHumanInputData = {
6726
6634
  body: HumanInputRequest;
6727
6635
  path: {
6728
- /**
6729
- * Public ID of the orchestration (orch_...)
6730
- */
6731
- orchestration_id: string;
6732
6636
  /**
6733
6637
  * Public ID of the run (run_...)
6734
6638
  */
6735
6639
  run_id: string;
6736
6640
  };
6737
6641
  query?: never;
6738
- url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}/human-input';
6642
+ url: '/api/v1/orchestration-runs/{run_id}/human-input';
6739
6643
  };
6740
6644
  type SubmitHumanInputErrors = {
6741
6645
  /**
@@ -6769,17 +6673,13 @@ type SubmitHumanInputResponse = SubmitHumanInputResponses[keyof SubmitHumanInput
6769
6673
  type ResumeOrchestrationRunData = {
6770
6674
  body?: never;
6771
6675
  path: {
6772
- /**
6773
- * Public ID of the orchestration (orch_...)
6774
- */
6775
- orchestration_id: string;
6776
6676
  /**
6777
6677
  * Public ID of the run (run_...)
6778
6678
  */
6779
6679
  run_id: string;
6780
6680
  };
6781
6681
  query?: never;
6782
- url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}/resume';
6682
+ url: '/api/v1/orchestration-runs/{run_id}/resume';
6783
6683
  };
6784
6684
  type ResumeOrchestrationRunErrors = {
6785
6685
  /**
@@ -6809,17 +6709,13 @@ type ResumeOrchestrationRunResponse = ResumeOrchestrationRunResponses[keyof Resu
6809
6709
  type GetOrchestrationRunData = {
6810
6710
  body?: never;
6811
6711
  path: {
6812
- /**
6813
- * Public ID of the orchestration (orch_...)
6814
- */
6815
- orchestration_id: string;
6816
6712
  /**
6817
6713
  * Public ID of the run (run_...)
6818
6714
  */
6819
6715
  run_id: string;
6820
6716
  };
6821
6717
  query?: never;
6822
- url: '/api/v1/orchestrations/{orchestration_id}/runs/{run_id}';
6718
+ url: '/api/v1/orchestration-runs/{run_id}';
6823
6719
  };
6824
6720
  type GetOrchestrationRunErrors = {
6825
6721
  /**
@@ -6845,7 +6741,12 @@ type GetOrchestrationRunResponse = GetOrchestrationRunResponses[keyof GetOrchest
6845
6741
  type ListPoliciesData = {
6846
6742
  body?: never;
6847
6743
  path?: never;
6848
- query?: never;
6744
+ query?: {
6745
+ /**
6746
+ * Return only policies attached to this user (user_...)
6747
+ */
6748
+ user_id?: string;
6749
+ };
6849
6750
  url: '/api/v1/policies';
6850
6751
  };
6851
6752
  type ListPoliciesErrors = {
@@ -7328,15 +7229,14 @@ type UpdateSecretResponses = {
7328
7229
  */
7329
7230
  200: unknown;
7330
7231
  };
7331
- type ListAgentSessionsData = {
7232
+ type ListSessionsData = {
7332
7233
  body?: never;
7333
- path: {
7234
+ path?: never;
7235
+ query?: {
7334
7236
  /**
7335
- * Agent public ID
7237
+ * Filter by agent public ID
7336
7238
  */
7337
- agent_id: string;
7338
- };
7339
- query?: {
7239
+ agent_id?: string;
7340
7240
  /**
7341
7241
  * Filter by actor public ID
7342
7242
  */
@@ -7348,9 +7248,9 @@ type ListAgentSessionsData = {
7348
7248
  limit?: number;
7349
7249
  offset?: number;
7350
7250
  };
7351
- url: '/api/v1/agents/{agent_id}/sessions';
7251
+ url: '/api/v1/sessions';
7352
7252
  };
7353
- type ListAgentSessionsErrors = {
7253
+ type ListSessionsErrors = {
7354
7254
  /**
7355
7255
  * Authentication required
7356
7256
  */
@@ -7364,8 +7264,8 @@ type ListAgentSessionsErrors = {
7364
7264
  */
7365
7265
  404: ErrorResponse;
7366
7266
  };
7367
- type ListAgentSessionsError = ListAgentSessionsErrors[keyof ListAgentSessionsErrors];
7368
- type ListAgentSessionsResponses = {
7267
+ type ListSessionsError = ListSessionsErrors[keyof ListSessionsErrors];
7268
+ type ListSessionsResponses = {
7369
7269
  /**
7370
7270
  * Paginated list of sessions
7371
7271
  */
@@ -7376,19 +7276,14 @@ type ListAgentSessionsResponses = {
7376
7276
  offset?: number;
7377
7277
  };
7378
7278
  };
7379
- type ListAgentSessionsResponse = ListAgentSessionsResponses[keyof ListAgentSessionsResponses];
7380
- type CreateAgentSessionData = {
7279
+ type ListSessionsResponse = ListSessionsResponses[keyof ListSessionsResponses];
7280
+ type CreateSessionData = {
7381
7281
  body?: CreateSessionRequest;
7382
- path: {
7383
- /**
7384
- * Agent public ID
7385
- */
7386
- agent_id: string;
7387
- };
7282
+ path?: never;
7388
7283
  query?: never;
7389
- url: '/api/v1/agents/{agent_id}/sessions';
7284
+ url: '/api/v1/sessions';
7390
7285
  };
7391
- type CreateAgentSessionErrors = {
7286
+ type CreateSessionErrors = {
7392
7287
  /**
7393
7288
  * Authentication required
7394
7289
  */
@@ -7406,30 +7301,26 @@ type CreateAgentSessionErrors = {
7406
7301
  */
7407
7302
  409: ErrorResponse;
7408
7303
  };
7409
- type CreateAgentSessionError = CreateAgentSessionErrors[keyof CreateAgentSessionErrors];
7410
- type CreateAgentSessionResponses = {
7304
+ type CreateSessionError = CreateSessionErrors[keyof CreateSessionErrors];
7305
+ type CreateSessionResponses = {
7411
7306
  /**
7412
7307
  * Session created
7413
7308
  */
7414
7309
  201: SessionRecord;
7415
7310
  };
7416
- type CreateAgentSessionResponse = CreateAgentSessionResponses[keyof CreateAgentSessionResponses];
7417
- type DeleteAgentSessionData = {
7311
+ type CreateSessionResponse = CreateSessionResponses[keyof CreateSessionResponses];
7312
+ type DeleteSessionData = {
7418
7313
  body?: never;
7419
7314
  path: {
7420
- /**
7421
- * Agent public ID
7422
- */
7423
- agent_id: string;
7424
7315
  /**
7425
7316
  * Session public ID
7426
7317
  */
7427
7318
  session_id: string;
7428
7319
  };
7429
7320
  query?: never;
7430
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}';
7321
+ url: '/api/v1/sessions/{session_id}';
7431
7322
  };
7432
- type DeleteAgentSessionErrors = {
7323
+ type DeleteSessionErrors = {
7433
7324
  /**
7434
7325
  * Authentication required
7435
7326
  */
@@ -7443,30 +7334,26 @@ type DeleteAgentSessionErrors = {
7443
7334
  */
7444
7335
  404: ErrorResponse;
7445
7336
  };
7446
- type DeleteAgentSessionError = DeleteAgentSessionErrors[keyof DeleteAgentSessionErrors];
7447
- type DeleteAgentSessionResponses = {
7337
+ type DeleteSessionError = DeleteSessionErrors[keyof DeleteSessionErrors];
7338
+ type DeleteSessionResponses = {
7448
7339
  /**
7449
7340
  * Session deleted
7450
7341
  */
7451
7342
  204: void;
7452
7343
  };
7453
- type DeleteAgentSessionResponse = DeleteAgentSessionResponses[keyof DeleteAgentSessionResponses];
7454
- type GetAgentSessionData = {
7344
+ type DeleteSessionResponse = DeleteSessionResponses[keyof DeleteSessionResponses];
7345
+ type GetSessionData = {
7455
7346
  body?: never;
7456
7347
  path: {
7457
- /**
7458
- * Agent public ID
7459
- */
7460
- agent_id: string;
7461
7348
  /**
7462
7349
  * Session public ID
7463
7350
  */
7464
7351
  session_id: string;
7465
7352
  };
7466
7353
  query?: never;
7467
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}';
7354
+ url: '/api/v1/sessions/{session_id}';
7468
7355
  };
7469
- type GetAgentSessionErrors = {
7356
+ type GetSessionErrors = {
7470
7357
  /**
7471
7358
  * Authentication required
7472
7359
  */
@@ -7480,28 +7367,24 @@ type GetAgentSessionErrors = {
7480
7367
  */
7481
7368
  404: ErrorResponse;
7482
7369
  };
7483
- type GetAgentSessionError = GetAgentSessionErrors[keyof GetAgentSessionErrors];
7484
- type GetAgentSessionResponses = {
7370
+ type GetSessionError = GetSessionErrors[keyof GetSessionErrors];
7371
+ type GetSessionResponses = {
7485
7372
  /**
7486
7373
  * Session details
7487
7374
  */
7488
7375
  200: SessionRecord;
7489
7376
  };
7490
- type GetAgentSessionResponse = GetAgentSessionResponses[keyof GetAgentSessionResponses];
7377
+ type GetSessionResponse = GetSessionResponses[keyof GetSessionResponses];
7491
7378
  type UpdateSessionData = {
7492
7379
  body?: UpdateSessionRequest;
7493
7380
  path: {
7494
- /**
7495
- * Agent public ID
7496
- */
7497
- agent_id: string;
7498
7381
  /**
7499
7382
  * Session public ID
7500
7383
  */
7501
7384
  session_id: string;
7502
7385
  };
7503
7386
  query?: never;
7504
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}';
7387
+ url: '/api/v1/sessions/{session_id}';
7505
7388
  };
7506
7389
  type UpdateSessionErrors = {
7507
7390
  /**
@@ -7525,65 +7408,16 @@ type UpdateSessionResponses = {
7525
7408
  200: SessionRecord;
7526
7409
  };
7527
7410
  type UpdateSessionResponse = UpdateSessionResponses[keyof UpdateSessionResponses];
7528
- type ListAgentSessionMessagesData = {
7529
- body?: never;
7530
- path: {
7531
- /**
7532
- * Agent public ID
7533
- */
7534
- agent_id: string;
7535
- /**
7536
- * Session public ID
7537
- */
7538
- session_id: string;
7539
- };
7540
- query?: {
7541
- limit?: number;
7542
- offset?: number;
7543
- };
7544
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/messages';
7545
- };
7546
- type ListAgentSessionMessagesErrors = {
7547
- /**
7548
- * Authentication required
7549
- */
7550
- 401: ErrorResponse;
7551
- /**
7552
- * Insufficient permissions
7553
- */
7554
- 403: ErrorResponse;
7555
- /**
7556
- * Not found
7557
- */
7558
- 404: ErrorResponse;
7559
- };
7560
- type ListAgentSessionMessagesError = ListAgentSessionMessagesErrors[keyof ListAgentSessionMessagesErrors];
7561
- type ListAgentSessionMessagesResponses = {
7562
- /**
7563
- * Paginated list of messages
7564
- */
7565
- 200: {
7566
- data?: Array<SessionMessage>;
7567
- total?: number;
7568
- limit?: number;
7569
- offset?: number;
7570
- };
7571
- };
7572
- type ListAgentSessionMessagesResponse = ListAgentSessionMessagesResponses[keyof ListAgentSessionMessagesResponses];
7573
7411
  type AddSessionMessageData = {
7574
7412
  body: AddSessionMessageRequest;
7575
7413
  path: {
7576
- /**
7577
- * Agent public ID
7578
- */
7579
- agent_id: string;
7580
7414
  /**
7581
7415
  * Session public ID
7582
7416
  */
7583
7417
  session_id: string;
7584
7418
  };
7585
7419
  query?: never;
7586
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/messages';
7420
+ url: '/api/v1/sessions/{session_id}/messages';
7587
7421
  };
7588
7422
  type AddSessionMessageErrors = {
7589
7423
  /**
@@ -7614,10 +7448,6 @@ type AddSessionMessageResponse2 = AddSessionMessageResponses[keyof AddSessionMes
7614
7448
  type GenerateSessionResponseData = {
7615
7449
  body?: GenerateSessionRequest;
7616
7450
  path: {
7617
- /**
7618
- * Agent public ID
7619
- */
7620
- agent_id: string;
7621
7451
  /**
7622
7452
  * Session public ID
7623
7453
  */
@@ -7629,7 +7459,7 @@ type GenerateSessionResponseData = {
7629
7459
  */
7630
7460
  async?: boolean;
7631
7461
  };
7632
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/generate';
7462
+ url: '/api/v1/sessions/{session_id}/generate';
7633
7463
  };
7634
7464
  type GenerateSessionResponseErrors = {
7635
7465
  /**
@@ -7676,17 +7506,13 @@ type GenerateSessionResponseResponse = GenerateSessionResponseResponses[keyof Ge
7676
7506
  type SubmitSessionToolOutputsData = {
7677
7507
  body: SubmitSessionToolOutputsRequest;
7678
7508
  path: {
7679
- /**
7680
- * Agent public ID
7681
- */
7682
- agent_id: string;
7683
7509
  /**
7684
7510
  * Session public ID
7685
7511
  */
7686
7512
  session_id: string;
7687
7513
  };
7688
7514
  query?: never;
7689
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/tool-outputs';
7515
+ url: '/api/v1/sessions/{session_id}/tool-outputs';
7690
7516
  };
7691
7517
  type SubmitSessionToolOutputsErrors = {
7692
7518
  /**
@@ -7713,17 +7539,13 @@ type SubmitSessionToolOutputsResponse = SubmitSessionToolOutputsResponses[keyof
7713
7539
  type GetSessionTagsData = {
7714
7540
  body?: never;
7715
7541
  path: {
7716
- /**
7717
- * Agent public ID
7718
- */
7719
- agent_id: string;
7720
7542
  /**
7721
7543
  * Session public ID
7722
7544
  */
7723
7545
  session_id: string;
7724
7546
  };
7725
7547
  query?: never;
7726
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/tags';
7548
+ url: '/api/v1/sessions/{session_id}/tags';
7727
7549
  };
7728
7550
  type GetSessionTagsErrors = {
7729
7551
  /**
@@ -7754,17 +7576,13 @@ type MergeSessionTagsData = {
7754
7576
  [key: string]: string;
7755
7577
  };
7756
7578
  path: {
7757
- /**
7758
- * Agent public ID
7759
- */
7760
- agent_id: string;
7761
7579
  /**
7762
7580
  * Session public ID
7763
7581
  */
7764
7582
  session_id: string;
7765
7583
  };
7766
7584
  query?: never;
7767
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/tags';
7585
+ url: '/api/v1/sessions/{session_id}/tags';
7768
7586
  };
7769
7587
  type MergeSessionTagsErrors = {
7770
7588
  /**
@@ -7795,17 +7613,13 @@ type ReplaceSessionTagsData = {
7795
7613
  [key: string]: string;
7796
7614
  };
7797
7615
  path: {
7798
- /**
7799
- * Agent public ID
7800
- */
7801
- agent_id: string;
7802
7616
  /**
7803
7617
  * Session public ID
7804
7618
  */
7805
7619
  session_id: string;
7806
7620
  };
7807
7621
  query?: never;
7808
- url: '/api/v1/agents/{agent_id}/sessions/{session_id}/tags';
7622
+ url: '/api/v1/sessions/{session_id}/tags';
7809
7623
  };
7810
7624
  type ReplaceSessionTagsErrors = {
7811
7625
  /**
@@ -8128,39 +7942,6 @@ type GetTraceTreeResponses = {
8128
7942
  200: TraceTreeNode;
8129
7943
  };
8130
7944
  type GetTraceTreeResponse = GetTraceTreeResponses[keyof GetTraceTreeResponses];
8131
- type GetTraceGenerationsData = {
8132
- body?: never;
8133
- path: {
8134
- /**
8135
- * Public ID of the trace
8136
- */
8137
- trace_id: string;
8138
- };
8139
- query?: never;
8140
- url: '/api/v1/traces/{trace_id}/generations';
8141
- };
8142
- type GetTraceGenerationsErrors = {
8143
- /**
8144
- * Unauthorized
8145
- */
8146
- 401: ErrorResponse;
8147
- /**
8148
- * Forbidden
8149
- */
8150
- 403: ErrorResponse;
8151
- /**
8152
- * Trace not found
8153
- */
8154
- 404: ErrorResponse;
8155
- };
8156
- type GetTraceGenerationsError = GetTraceGenerationsErrors[keyof GetTraceGenerationsErrors];
8157
- type GetTraceGenerationsResponses = {
8158
- /**
8159
- * Generation IDs linked to the trace
8160
- */
8161
- 200: TraceGenerations;
8162
- };
8163
- type GetTraceGenerationsResponse = GetTraceGenerationsResponses[keyof GetTraceGenerationsResponses];
8164
7945
  type GetCurrentUserData = {
8165
7946
  body?: never;
8166
7947
  path?: never;
@@ -8337,42 +8118,6 @@ type LoginUserResponses = {
8337
8118
  200: LoginResponse;
8338
8119
  };
8339
8120
  type LoginUserResponse = LoginUserResponses[keyof LoginUserResponses];
8340
- type GetUserPoliciesData = {
8341
- body?: never;
8342
- path: {
8343
- /**
8344
- * User public ID (usr_ prefix)
8345
- */
8346
- user_id: string;
8347
- };
8348
- query?: never;
8349
- url: '/api/v1/users/{user_id}/policies';
8350
- };
8351
- type GetUserPoliciesErrors = {
8352
- /**
8353
- * Unauthorized
8354
- */
8355
- 401: unknown;
8356
- /**
8357
- * Forbidden (non-admin user)
8358
- */
8359
- 403: unknown;
8360
- /**
8361
- * User not found
8362
- */
8363
- 404: unknown;
8364
- };
8365
- type GetUserPoliciesResponses = {
8366
- /**
8367
- * List of policies attached to the user
8368
- */
8369
- 200: Array<{
8370
- id?: string;
8371
- name?: string;
8372
- description?: string;
8373
- }>;
8374
- };
8375
- type GetUserPoliciesResponse = GetUserPoliciesResponses[keyof GetUserPoliciesResponses];
8376
8121
  type AttachUserPoliciesData = {
8377
8122
  body: {
8378
8123
  /**
@@ -8560,14 +8305,16 @@ type UpdateWebhookResponses = {
8560
8305
  type UpdateWebhookResponse = UpdateWebhookResponses[keyof UpdateWebhookResponses];
8561
8306
  type ListWebhookDeliveriesData = {
8562
8307
  body?: never;
8563
- path: {
8308
+ path?: never;
8309
+ query: {
8310
+ /**
8311
+ * Webhook to list deliveries for (wh_...)
8312
+ */
8564
8313
  webhook_id: string;
8565
- };
8566
- query?: {
8567
8314
  limit?: number;
8568
8315
  offset?: number;
8569
8316
  };
8570
- url: '/api/v1/webhooks/{webhook_id}/deliveries';
8317
+ url: '/api/v1/webhook-deliveries';
8571
8318
  };
8572
8319
  type ListWebhookDeliveriesErrors = {
8573
8320
  /**
@@ -8593,11 +8340,10 @@ type ListWebhookDeliveriesResponse = ListWebhookDeliveriesResponses[keyof ListWe
8593
8340
  type GetWebhookDeliveryData = {
8594
8341
  body?: never;
8595
8342
  path: {
8596
- webhook_id: string;
8597
8343
  delivery_id: string;
8598
8344
  };
8599
8345
  query?: never;
8600
- url: '/api/v1/webhooks/{webhook_id}/deliveries/{delivery_id}';
8346
+ url: '/api/v1/webhook-deliveries/{delivery_id}';
8601
8347
  };
8602
8348
  type GetWebhookDeliveryErrors = {
8603
8349
  /**
@@ -8788,12 +8534,6 @@ declare class Agents {
8788
8534
  *
8789
8535
  */
8790
8536
  static submitAgentToolOutputs<ThrowOnError extends boolean = false>(options: Options<SubmitAgentToolOutputsData, ThrowOnError>): RequestResult<SubmitAgentToolOutputsResponses, SubmitAgentToolOutputsErrors, ThrowOnError>;
8791
- /**
8792
- * Create an actor for an agent
8793
- *
8794
- * Creates a new actor associated with the specified agent
8795
- */
8796
- static createAgentActor<ThrowOnError extends boolean = false>(options: Options<CreateAgentActorData, ThrowOnError>): RequestResult<CreateAgentActorResponses, CreateAgentActorErrors, ThrowOnError>;
8797
8537
  }
8798
8538
  declare class AiProviders {
8799
8539
  /**
@@ -8896,16 +8636,10 @@ declare class Chats {
8896
8636
  /**
8897
8637
  * Create a chat completion (stateless)
8898
8638
  *
8899
- * OpenAI Chat Completions-compatible endpoint. Resolves the AI provider from `ai_provider_id`, decrypts its secret, and calls the appropriate Vercel AI SDK provider. `ai_provider_id` is required — there is no server-side model fallback.
8639
+ * OpenAI Chat Completions-compatible endpoint. Mirrors OpenAI's `POST /v1/chat/completions` path so an OpenAI SDK can target it by base URL alone. Resolves the AI provider from `ai_provider_id`, decrypts its secret, and calls the appropriate Vercel AI SDK provider. `ai_provider_id` is required — there is no server-side model fallback.
8900
8640
  *
8901
8641
  */
8902
8642
  static createChatCompletion<ThrowOnError extends boolean = false>(options: Options<CreateChatCompletionData, ThrowOnError>): RequestResult<CreateChatCompletionResponses, CreateChatCompletionErrors, ThrowOnError>;
8903
- /**
8904
- * Create an actor for a chat
8905
- *
8906
- * Creates a new actor associated with the specified chat
8907
- */
8908
- static createChatActor<ThrowOnError extends boolean = false>(options: Options<CreateChatActorData, ThrowOnError>): RequestResult<CreateChatActorResponses, CreateChatActorErrors, ThrowOnError>;
8909
8643
  }
8910
8644
  declare class Conversations {
8911
8645
  /**
@@ -8960,12 +8694,6 @@ declare class Conversations {
8960
8694
  *
8961
8695
  */
8962
8696
  static generateConversationMessage<ThrowOnError extends boolean = false>(options: Options<GenerateConversationMessageData, ThrowOnError>): RequestResult<GenerateConversationMessageResponses, GenerateConversationMessageErrors, ThrowOnError>;
8963
- /**
8964
- * List actors in a conversation
8965
- *
8966
- * Returns all distinct actors who have sent at least one message in the conversation
8967
- */
8968
- static listConversationActors<ThrowOnError extends boolean = false>(options: Options<ListConversationActorsData, ThrowOnError>): RequestResult<ListConversationActorsResponses, ListConversationActorsErrors, ThrowOnError>;
8969
8697
  /**
8970
8698
  * Remove a message from a conversation
8971
8699
  *
@@ -9183,6 +8911,13 @@ declare class Formations {
9183
8911
  static listFormationEvents<ThrowOnError extends boolean = false>(options: Options<ListFormationEventsData, ThrowOnError>): RequestResult<ListFormationEventsResponses, ListFormationEventsErrors, ThrowOnError>;
9184
8912
  }
9185
8913
  declare class Generations {
8914
+ /**
8915
+ * List generations
8916
+ *
8917
+ * Returns generations the caller can access, optionally filtered by agent, trace, and status. Replaces the former per-trace generations endpoint (use the trace_id query filter).
8918
+ *
8919
+ */
8920
+ static listGenerations<ThrowOnError extends boolean = false>(options?: Options<ListGenerationsData, ThrowOnError>): RequestResult<ListGenerationsResponses, ListGenerationsErrors, ThrowOnError>;
9186
8921
  /**
9187
8922
  * Get a generation
9188
8923
  *
@@ -9297,13 +9032,13 @@ declare class Orchestrations {
9297
9032
  /**
9298
9033
  * List orchestration runs
9299
9034
  *
9300
- * Returns all runs for an orchestration.
9035
+ * Returns orchestration runs the caller can access, optionally filtered by orchestration.
9301
9036
  */
9302
- static listOrchestrationRuns<ThrowOnError extends boolean = false>(options: Options<ListOrchestrationRunsData, ThrowOnError>): RequestResult<ListOrchestrationRunsResponses, ListOrchestrationRunsErrors, ThrowOnError>;
9037
+ static listOrchestrationRuns<ThrowOnError extends boolean = false>(options?: Options<ListOrchestrationRunsData, ThrowOnError>): RequestResult<ListOrchestrationRunsResponses, ListOrchestrationRunsErrors, ThrowOnError>;
9303
9038
  /**
9304
9039
  * Start an orchestration run
9305
9040
  *
9306
- * Creates and immediately executes a new run for the orchestration.
9041
+ * Creates and immediately executes a new run for the orchestration named by orchestration_id.
9307
9042
  */
9308
9043
  static startOrchestrationRun<ThrowOnError extends boolean = false>(options: Options<StartOrchestrationRunData, ThrowOnError>): RequestResult<StartOrchestrationRunResponses, StartOrchestrationRunErrors, ThrowOnError>;
9309
9044
  /**
@@ -9335,7 +9070,8 @@ declare class Policies {
9335
9070
  /**
9336
9071
  * List all policies
9337
9072
  *
9338
- * Returns a list of all global policies. Requires admin role.
9073
+ * Returns global policies. Requires admin role. Pass user_id to list only the policies attached to that user (replaces the former per-user policies endpoint).
9074
+ *
9339
9075
  */
9340
9076
  static listPolicies<ThrowOnError extends boolean = false>(options?: Options<ListPoliciesData, ThrowOnError>): RequestResult<ListPoliciesResponses, ListPoliciesErrors, ThrowOnError>;
9341
9077
  /**
@@ -9426,41 +9162,34 @@ declare class Sessions {
9426
9162
  /**
9427
9163
  * List sessions
9428
9164
  *
9429
- * Returns sessions for the specified agent, optionally filtered by actorId and status.
9165
+ * Returns sessions the caller can access, optionally filtered by agent, actor and status.
9430
9166
  */
9431
- static listAgentSessions<ThrowOnError extends boolean = false>(options: Options<ListAgentSessionsData, ThrowOnError>): RequestResult<ListAgentSessionsResponses, ListAgentSessionsErrors, ThrowOnError>;
9167
+ static listSessions<ThrowOnError extends boolean = false>(options?: Options<ListSessionsData, ThrowOnError>): RequestResult<ListSessionsResponses, ListSessionsErrors, ThrowOnError>;
9432
9168
  /**
9433
9169
  * Create a session
9434
9170
  *
9435
9171
  * Creates a new session for the specified agent. Internally creates a conversation and two actors (agent + user) so the caller only needs this single call to start interacting with the agent.
9436
9172
  *
9437
9173
  */
9438
- static createAgentSession<ThrowOnError extends boolean = false>(options: Options<CreateAgentSessionData, ThrowOnError>): RequestResult<CreateAgentSessionResponses, CreateAgentSessionErrors, ThrowOnError>;
9174
+ static createSession<ThrowOnError extends boolean = false>(options?: Options<CreateSessionData, ThrowOnError>): RequestResult<CreateSessionResponses, CreateSessionErrors, ThrowOnError>;
9439
9175
  /**
9440
9176
  * Delete a session
9441
9177
  *
9442
9178
  * Deletes the session and its underlying conversation and actors.
9443
9179
  */
9444
- static deleteAgentSession<ThrowOnError extends boolean = false>(options: Options<DeleteAgentSessionData, ThrowOnError>): RequestResult<DeleteAgentSessionResponses, DeleteAgentSessionErrors, ThrowOnError>;
9180
+ static deleteSession<ThrowOnError extends boolean = false>(options: Options<DeleteSessionData, ThrowOnError>): RequestResult<DeleteSessionResponses, DeleteSessionErrors, ThrowOnError>;
9445
9181
  /**
9446
9182
  * Get a session
9447
9183
  *
9448
9184
  * Returns details of a single session.
9449
9185
  */
9450
- static getAgentSession<ThrowOnError extends boolean = false>(options: Options<GetAgentSessionData, ThrowOnError>): RequestResult<GetAgentSessionResponses, GetAgentSessionErrors, ThrowOnError>;
9186
+ static getSession<ThrowOnError extends boolean = false>(options: Options<GetSessionData, ThrowOnError>): RequestResult<GetSessionResponses, GetSessionErrors, ThrowOnError>;
9451
9187
  /**
9452
9188
  * Update a session
9453
9189
  *
9454
9190
  * Updates the session name and/or status.
9455
9191
  */
9456
9192
  static updateSession<ThrowOnError extends boolean = false>(options: Options<UpdateSessionData, ThrowOnError>): RequestResult<UpdateSessionResponses, UpdateSessionErrors, ThrowOnError>;
9457
- /**
9458
- * List session messages
9459
- *
9460
- * Returns messages in the session with simplified roles (user/assistant) instead of raw actor IDs.
9461
- *
9462
- */
9463
- static listAgentSessionMessages<ThrowOnError extends boolean = false>(options: Options<ListAgentSessionMessagesData, ThrowOnError>): RequestResult<ListAgentSessionMessagesResponses, ListAgentSessionMessagesErrors, ThrowOnError>;
9464
9193
  /**
9465
9194
  * Add a user message
9466
9195
  *
@@ -9562,12 +9291,6 @@ declare class Traces {
9562
9291
  *
9563
9292
  */
9564
9293
  static getTraceTree<ThrowOnError extends boolean = false>(options: Options<GetTraceTreeData, ThrowOnError>): RequestResult<GetTraceTreeResponses, GetTraceTreeErrors, ThrowOnError>;
9565
- /**
9566
- * Get generation IDs for a trace
9567
- *
9568
- * Returns all generation IDs associated with the trace.
9569
- */
9570
- static getTraceGenerations<ThrowOnError extends boolean = false>(options: Options<GetTraceGenerationsData, ThrowOnError>): RequestResult<GetTraceGenerationsResponses, GetTraceGenerationsErrors, ThrowOnError>;
9571
9294
  }
9572
9295
  declare class Users {
9573
9296
  /**
@@ -9612,12 +9335,6 @@ declare class Users {
9612
9335
  * Authenticates a user and returns a JWT token
9613
9336
  */
9614
9337
  static loginUser<ThrowOnError extends boolean = false>(options: Options<LoginUserData, ThrowOnError>): RequestResult<LoginUserResponses, LoginUserErrors, ThrowOnError>;
9615
- /**
9616
- * Get policies attached to a user
9617
- *
9618
- * Returns the list of policies attached to a user. Requires admin role.
9619
- */
9620
- static getUserPolicies<ThrowOnError extends boolean = false>(options: Options<GetUserPoliciesData, ThrowOnError>): RequestResult<GetUserPoliciesResponses, GetUserPoliciesErrors, ThrowOnError>;
9621
9338
  /**
9622
9339
  * Attach policies to a user
9623
9340
  *
@@ -9657,9 +9374,9 @@ declare class Webhooks {
9657
9374
  */
9658
9375
  static updateWebhook<ThrowOnError extends boolean = false>(options: Options<UpdateWebhookData, ThrowOnError>): RequestResult<UpdateWebhookResponses, UpdateWebhookErrors, ThrowOnError>;
9659
9376
  /**
9660
- * List deliveries for a webhook
9377
+ * List webhook deliveries
9661
9378
  *
9662
- * Lists all event deliveries for a specific webhook
9379
+ * Lists event deliveries for a webhook (webhook_id is required).
9663
9380
  */
9664
9381
  static listWebhookDeliveries<ThrowOnError extends boolean = false>(options: Options<ListWebhookDeliveriesData, ThrowOnError>): RequestResult<ListWebhookDeliveriesResponses, ListWebhookDeliveriesErrors, ThrowOnError>;
9665
9382
  /**
@@ -9751,4 +9468,4 @@ declare class SoatClient {
9751
9468
  }?: SoatClientOptions);
9752
9469
  }
9753
9470
  //#endregion
9754
- export { type ActorRecord, type ActorResourceProperties, 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 AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, 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 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 CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, 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 CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, 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 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 DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, 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 DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, Embeddings, type EmbeddingsResponse, type ErrorResponse, type FileRecord, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, 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 Generation, Generations, 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 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 GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, 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 GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, 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 GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, type GetTraceData, type GetTraceError, type GetTraceErrors, type GetTraceGenerationsData, type GetTraceGenerationsError, type GetTraceGenerationsErrors, type GetTraceGenerationsResponse, type GetTraceGenerationsResponses, 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, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, 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 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 ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListProjectsData, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, 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 MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, 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 Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, 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 RequiredAction, type ResourceDeclaration, type ResumeOrchestrationRunData, type ResumeOrchestrationRunErrors, type ResumeOrchestrationRunResponse, type ResumeOrchestrationRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionMessage, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartOrchestrationRunData, type StartOrchestrationRunErrors, type StartOrchestrationRunResponse, type StartOrchestrationRunResponses, type StartRunRequest, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceGenerations, 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 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 UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, 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 UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, 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 ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
9471
+ export { type ActorRecord, type ActorResourceProperties, 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 AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type AttachUserPoliciesData, type AttachUserPoliciesError, type AttachUserPoliciesErrors, type AttachUserPoliciesResponse, type AttachUserPoliciesResponses, type BootstrapUserData, type BootstrapUserError, type BootstrapUserErrors, type BootstrapUserResponse, type BootstrapUserResponses, type CallToolData, type CallToolError, type CallToolErrors, type CallToolRequest, type CallToolResponse, type CallToolResponses, type CancelOrchestrationRunData, type CancelOrchestrationRunErrors, type CancelOrchestrationRunResponse, type CancelOrchestrationRunResponses, type Chat, type ChatCompletionChoice, type ChatCompletionForChatRequest, type ChatCompletionRequest, type ChatCompletionResponse, type ChatCompletionResponseMessage, type ChatMessage, type ChatMessageInput, type ChatResourceProperties, Chats, type ClientOptions, type ConversationActorRecord, type ConversationMessageRecord, type ConversationRecord, type ConversationResourceProperties, Conversations, type CreateActorData, type CreateActorError, type CreateActorErrors, type CreateActorResponse, type CreateActorResponses, 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 CreateAiProviderData, type CreateAiProviderErrors, type CreateAiProviderResponse, type CreateAiProviderResponses, type CreateApiKeyData, type CreateApiKeyError, type CreateApiKeyErrors, type CreateApiKeyResponse, type CreateApiKeyResponses, 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 CreateEmbeddingsData, type CreateEmbeddingsError, type CreateEmbeddingsErrors, type CreateEmbeddingsResponse, type CreateEmbeddingsResponses, type CreateFileData, type CreateFileError, type CreateFileErrors, type CreateFileResponse, type CreateFileResponses, type CreateFormationData, type CreateFormationErrors, type CreateFormationResponse, type CreateFormationResponses, type CreateMemoryData, type CreateMemoryEntryData, type CreateMemoryEntryErrors, type CreateMemoryEntryResponse, type CreateMemoryEntryResponses, type CreateMemoryErrors, type CreateMemoryResponse, type CreateMemoryResponses, type CreateOrchestrationData, type CreateOrchestrationErrors, type CreateOrchestrationRequest, type CreateOrchestrationResponse, type CreateOrchestrationResponses, 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 CreateSessionData, type CreateSessionError, type CreateSessionErrors, type CreateSessionRequest, type CreateSessionResponse, type CreateSessionResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, 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 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 DeleteFormationData, type DeleteFormationErrors, type DeleteFormationResponse, type DeleteFormationResponses, type DeleteMemoryData, type DeleteMemoryEntryData, type DeleteMemoryEntryErrors, type DeleteMemoryEntryResponse, type DeleteMemoryEntryResponses, type DeleteMemoryErrors, type DeleteMemoryResponse, type DeleteMemoryResponses, type DeleteOrchestrationData, type DeleteOrchestrationErrors, type DeleteOrchestrationResponse, type DeleteOrchestrationResponses, type DeletePolicyData, type DeletePolicyErrors, type DeletePolicyResponse, type DeletePolicyResponses, type DeleteProjectData, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteSessionData, type DeleteSessionError, type DeleteSessionErrors, type DeleteSessionResponse, type DeleteSessionResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, 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 DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, Documents, type DownloadFileBase64Data, type DownloadFileBase64Error, type DownloadFileBase64Errors, type DownloadFileBase64Response, type DownloadFileBase64Responses, type DownloadFileData, type DownloadFileError, type DownloadFileErrors, type DownloadFileResponse, type DownloadFileResponses, Embeddings, type EmbeddingsResponse, type ErrorResponse, type FileRecord, type FileResourceProperties, Files, type Formation, type FormationEvent, type FormationOperation, type FormationResource, type FormationTemplate, type FormationTemplateInput, Formations, 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 Generation, Generations, 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 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 GetCurrentUserData, type GetCurrentUserError, type GetCurrentUserErrors, type GetCurrentUserResponse, type GetCurrentUserResponses, 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 GetFormationData, type GetFormationErrors, type GetFormationResponse, type GetFormationResponses, type GetGenerationData, type GetGenerationError, type GetGenerationErrors, type GetGenerationResponse, type GetGenerationResponses, type GetMemoryData, type GetMemoryEntryData, type GetMemoryEntryErrors, type GetMemoryEntryResponse, type GetMemoryEntryResponses, type GetMemoryErrors, type GetMemoryResponse, type GetMemoryResponses, type GetOrchestrationData, type GetOrchestrationErrors, type GetOrchestrationResponse, type GetOrchestrationResponses, type GetOrchestrationRunData, type GetOrchestrationRunErrors, type GetOrchestrationRunResponse, type GetOrchestrationRunResponses, 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 GetSessionData, type GetSessionError, type GetSessionErrors, type GetSessionResponse, type GetSessionResponses, type GetSessionTagsData, type GetSessionTagsError, type GetSessionTagsErrors, type GetSessionTagsResponse, type GetSessionTagsResponses, type GetToolData, type GetToolError, type GetToolErrors, type GetToolResponse, type GetToolResponses, 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 GetUserResponse, type GetUserResponses, type GetWebhookData, type GetWebhookDeliveryData, type GetWebhookDeliveryErrors, type GetWebhookDeliveryResponse, type GetWebhookDeliveryResponses, type GetWebhookErrors, type GetWebhookResponse, type GetWebhookResponses, type GetWebhookSecretData, type GetWebhookSecretErrors, type GetWebhookSecretResponse, type GetWebhookSecretResponses, type HumanInputRequest, Knowledge, type KnowledgeResult, type ListActorsData, type ListActorsError, type ListActorsErrors, type ListActorsResponse, type ListActorsResponses, 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 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 ListFormationEventsData, type ListFormationEventsErrors, type ListFormationEventsResponse, type ListFormationEventsResponses, type ListFormationsData, type ListFormationsErrors, type ListFormationsResponse, type ListFormationsResponses, type ListGenerationsData, type ListGenerationsError, type ListGenerationsErrors, type ListGenerationsResponse, type ListGenerationsResponses, type ListMemoriesData, type ListMemoriesErrors, type ListMemoriesResponse, type ListMemoriesResponses, type ListMemoryEntriesData, type ListMemoryEntriesErrors, type ListMemoryEntriesResponse, type ListMemoryEntriesResponses, type ListOrchestrationRunsData, type ListOrchestrationRunsErrors, type ListOrchestrationRunsResponse, type ListOrchestrationRunsResponses, type ListOrchestrationsData, type ListOrchestrationsErrors, type ListOrchestrationsResponse, type ListOrchestrationsResponses, type ListPoliciesData, type ListPoliciesErrors, type ListPoliciesResponse, type ListPoliciesResponses, type ListProjectsData, type ListProjectsErrors, type ListProjectsResponse, type ListProjectsResponses, type ListSecretsData, type ListSecretsErrors, type ListSecretsResponse, type ListSecretsResponses, type ListSessionsData, type ListSessionsError, type ListSessionsErrors, type ListSessionsResponse, type ListSessionsResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, 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 MemoryEntryResourceProperties, type MemoryEntryWriteResult, type MemoryKnowledgeResult, type MemoryResourceProperties, 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 Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, 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 RequiredAction, type ResourceDeclaration, type ResumeOrchestrationRunData, type ResumeOrchestrationRunErrors, type ResumeOrchestrationRunResponse, type ResumeOrchestrationRunResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type SearchKnowledgeData, type SearchKnowledgeError, type SearchKnowledgeErrors, type SearchKnowledgeResponse, type SearchKnowledgeResponses, type SecretResourceProperties, Secrets, type SendSessionMessageResponse, type SessionId, type SessionRecord, type SessionResourceProperties, Sessions, SoatClient, type SoatClientOptions, type StartOrchestrationRunData, type StartOrchestrationRunErrors, type StartOrchestrationRunResponse, type StartOrchestrationRunResponses, type StartRunRequest, type SubmitAgentToolOutputsData, type SubmitAgentToolOutputsError, type SubmitAgentToolOutputsErrors, type SubmitAgentToolOutputsResponse, type SubmitAgentToolOutputsResponses, type SubmitHumanInputData, type SubmitHumanInputErrors, type SubmitHumanInputResponse, type SubmitHumanInputResponses, type SubmitSessionToolOutputsData, type SubmitSessionToolOutputsError, type SubmitSessionToolOutputsErrors, type SubmitSessionToolOutputsRequest, type SubmitSessionToolOutputsResponse, type SubmitSessionToolOutputsResponses, type SubmitToolOutputsRequest, type Tool, type ToolOutputMessageContent, type ToolResourceProperties, Tools, 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 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 UpdateFormationData, type UpdateFormationErrors, type UpdateFormationResponse, type UpdateFormationResponses, type UpdateMemoryData, type UpdateMemoryEntryData, type UpdateMemoryEntryErrors, type UpdateMemoryEntryResponse, type UpdateMemoryEntryResponses, type UpdateMemoryErrors, type UpdateMemoryResponse, type UpdateMemoryResponses, type UpdateOrchestrationData, type UpdateOrchestrationErrors, type UpdateOrchestrationRequest, type UpdateOrchestrationResponse, type UpdateOrchestrationResponses, 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 UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, 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 ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };