@soat/sdk 0.15.7 → 0.15.9
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.cjs +159 -1
- package/dist/index.d.cts +572 -2
- package/dist/index.d.mts +572 -2
- package/dist/index.mjs +158 -2
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -3587,6 +3587,64 @@ type SubmitSessionToolOutputsRequest = {
|
|
|
3587
3587
|
output: unknown;
|
|
3588
3588
|
}>;
|
|
3589
3589
|
};
|
|
3590
|
+
type Task = {
|
|
3591
|
+
id?: string;
|
|
3592
|
+
project_id?: string;
|
|
3593
|
+
workflow_id?: string;
|
|
3594
|
+
title?: string;
|
|
3595
|
+
state?: string;
|
|
3596
|
+
status?: 'open' | 'closed';
|
|
3597
|
+
payload?: {
|
|
3598
|
+
[key: string]: unknown;
|
|
3599
|
+
};
|
|
3600
|
+
assignee?: string | null;
|
|
3601
|
+
/**
|
|
3602
|
+
* { kind, id, status } of the current state's dispatch, if any.
|
|
3603
|
+
*/
|
|
3604
|
+
active_dispatch?: {
|
|
3605
|
+
[key: string]: unknown;
|
|
3606
|
+
} | null;
|
|
3607
|
+
automation_status?: 'running' | 'completed' | 'failed' | 'unrouted';
|
|
3608
|
+
entered_state_at?: Date;
|
|
3609
|
+
created_at?: Date;
|
|
3610
|
+
updated_at?: Date;
|
|
3611
|
+
};
|
|
3612
|
+
type TaskTransition = {
|
|
3613
|
+
id?: string;
|
|
3614
|
+
task_id?: string;
|
|
3615
|
+
from_state?: string | null;
|
|
3616
|
+
to_state?: string;
|
|
3617
|
+
transition?: string | null;
|
|
3618
|
+
actor_kind?: 'user' | 'api_key' | 'automation' | 'approval';
|
|
3619
|
+
actor_id?: string | null;
|
|
3620
|
+
generation_id?: string | null;
|
|
3621
|
+
run_id?: string | null;
|
|
3622
|
+
note?: string | null;
|
|
3623
|
+
created_at?: Date;
|
|
3624
|
+
};
|
|
3625
|
+
type CreateTaskRequest = {
|
|
3626
|
+
project_id?: string;
|
|
3627
|
+
workflow_id: string;
|
|
3628
|
+
title: string;
|
|
3629
|
+
payload?: {
|
|
3630
|
+
[key: string]: unknown;
|
|
3631
|
+
};
|
|
3632
|
+
assignee?: string | null;
|
|
3633
|
+
};
|
|
3634
|
+
type UpdateTaskRequest = {
|
|
3635
|
+
title?: string;
|
|
3636
|
+
/**
|
|
3637
|
+
* Partial payload, shallow-merged over the existing payload. Omitted keys are preserved; provided keys overwrite. The merged result must satisfy the workflow's payload_schema.
|
|
3638
|
+
*/
|
|
3639
|
+
payload?: {
|
|
3640
|
+
[key: string]: unknown;
|
|
3641
|
+
};
|
|
3642
|
+
assignee?: string | null;
|
|
3643
|
+
};
|
|
3644
|
+
type TransitionTaskRequest = {
|
|
3645
|
+
transition: string;
|
|
3646
|
+
note?: string | null;
|
|
3647
|
+
};
|
|
3590
3648
|
type Tool = {
|
|
3591
3649
|
/**
|
|
3592
3650
|
* Public ID of the tool
|
|
@@ -4383,6 +4441,74 @@ type DeliveryListResponse = {
|
|
|
4383
4441
|
limit?: number;
|
|
4384
4442
|
offset?: number;
|
|
4385
4443
|
};
|
|
4444
|
+
/**
|
|
4445
|
+
* A named state. Exactly one state must be `initial: true`; any number may be `terminal: true`. A `kind: human` state never dispatches — the task parks until a transition fires. `on_enter` (§5) dispatches one agent generation or orchestration run on entry.
|
|
4446
|
+
*/
|
|
4447
|
+
type WorkflowState = {
|
|
4448
|
+
name: string;
|
|
4449
|
+
initial?: boolean;
|
|
4450
|
+
terminal?: boolean;
|
|
4451
|
+
/**
|
|
4452
|
+
* Reserved: `human` for a human-in-the-loop parking state.
|
|
4453
|
+
*/
|
|
4454
|
+
kind?: string;
|
|
4455
|
+
/**
|
|
4456
|
+
* Reserved (Phase 3): seconds parked before a `tasks.stalled` event.
|
|
4457
|
+
*/
|
|
4458
|
+
stalled_after?: number | null;
|
|
4459
|
+
on_enter?: {
|
|
4460
|
+
[key: string]: unknown;
|
|
4461
|
+
} | null;
|
|
4462
|
+
[key: string]: unknown;
|
|
4463
|
+
};
|
|
4464
|
+
/**
|
|
4465
|
+
* A named, directional move. `from` is a list of source states; `to` is one target state. `guard` is a JSON Logic expression over `{task, transition, actor}` that must be truthy for the move to apply.
|
|
4466
|
+
*/
|
|
4467
|
+
type WorkflowTransition = {
|
|
4468
|
+
name: string;
|
|
4469
|
+
from: Array<string>;
|
|
4470
|
+
to: string;
|
|
4471
|
+
guard?: {
|
|
4472
|
+
[key: string]: unknown;
|
|
4473
|
+
} | null;
|
|
4474
|
+
/**
|
|
4475
|
+
* Reserved (Phase 3): gate the transition behind an approval. Not enforced yet — setting this to `true` is rejected at validation with `WORKFLOW_VALIDATION_FAILED` until approval-gated transitions ship.
|
|
4476
|
+
*/
|
|
4477
|
+
requires_approval?: boolean;
|
|
4478
|
+
[key: string]: unknown;
|
|
4479
|
+
};
|
|
4480
|
+
type Workflow = {
|
|
4481
|
+
id?: string;
|
|
4482
|
+
project_id?: string;
|
|
4483
|
+
name?: string;
|
|
4484
|
+
description?: string | null;
|
|
4485
|
+
states?: Array<WorkflowState>;
|
|
4486
|
+
transitions?: Array<WorkflowTransition>;
|
|
4487
|
+
payload_schema?: {
|
|
4488
|
+
[key: string]: unknown;
|
|
4489
|
+
} | null;
|
|
4490
|
+
created_at?: Date;
|
|
4491
|
+
updated_at?: Date;
|
|
4492
|
+
};
|
|
4493
|
+
type CreateWorkflowRequest = {
|
|
4494
|
+
project_id?: string;
|
|
4495
|
+
name: string;
|
|
4496
|
+
description?: string | null;
|
|
4497
|
+
states: Array<WorkflowState>;
|
|
4498
|
+
transitions: Array<WorkflowTransition>;
|
|
4499
|
+
payload_schema?: {
|
|
4500
|
+
[key: string]: unknown;
|
|
4501
|
+
} | null;
|
|
4502
|
+
};
|
|
4503
|
+
type UpdateWorkflowRequest = {
|
|
4504
|
+
name?: string;
|
|
4505
|
+
description?: string | null;
|
|
4506
|
+
states?: Array<WorkflowState>;
|
|
4507
|
+
transitions?: Array<WorkflowTransition>;
|
|
4508
|
+
payload_schema?: {
|
|
4509
|
+
[key: string]: unknown;
|
|
4510
|
+
} | null;
|
|
4511
|
+
};
|
|
4386
4512
|
/**
|
|
4387
4513
|
* Stored file metadata
|
|
4388
4514
|
*/
|
|
@@ -10372,6 +10498,223 @@ type ReplaceSessionTagsResponses = {
|
|
|
10372
10498
|
};
|
|
10373
10499
|
};
|
|
10374
10500
|
type ReplaceSessionTagsResponse = ReplaceSessionTagsResponses[keyof ReplaceSessionTagsResponses];
|
|
10501
|
+
type ListTasksData = {
|
|
10502
|
+
body?: never;
|
|
10503
|
+
path?: never;
|
|
10504
|
+
query?: {
|
|
10505
|
+
project_id?: string;
|
|
10506
|
+
workflow_id?: string;
|
|
10507
|
+
state?: string;
|
|
10508
|
+
status?: 'open' | 'closed';
|
|
10509
|
+
assignee?: string;
|
|
10510
|
+
};
|
|
10511
|
+
url: '/api/v1/tasks';
|
|
10512
|
+
};
|
|
10513
|
+
type ListTasksErrors = {
|
|
10514
|
+
/**
|
|
10515
|
+
* Unauthorized
|
|
10516
|
+
*/
|
|
10517
|
+
401: unknown;
|
|
10518
|
+
/**
|
|
10519
|
+
* Forbidden
|
|
10520
|
+
*/
|
|
10521
|
+
403: unknown;
|
|
10522
|
+
};
|
|
10523
|
+
type ListTasksResponses = {
|
|
10524
|
+
/**
|
|
10525
|
+
* A list of tasks
|
|
10526
|
+
*/
|
|
10527
|
+
200: Array<Task>;
|
|
10528
|
+
};
|
|
10529
|
+
type ListTasksResponse = ListTasksResponses[keyof ListTasksResponses];
|
|
10530
|
+
type CreateTaskData = {
|
|
10531
|
+
body: CreateTaskRequest;
|
|
10532
|
+
path?: never;
|
|
10533
|
+
query?: never;
|
|
10534
|
+
url: '/api/v1/tasks';
|
|
10535
|
+
};
|
|
10536
|
+
type CreateTaskErrors = {
|
|
10537
|
+
/**
|
|
10538
|
+
* Bad request (invalid payload)
|
|
10539
|
+
*/
|
|
10540
|
+
400: unknown;
|
|
10541
|
+
/**
|
|
10542
|
+
* Unauthorized
|
|
10543
|
+
*/
|
|
10544
|
+
401: unknown;
|
|
10545
|
+
/**
|
|
10546
|
+
* Forbidden
|
|
10547
|
+
*/
|
|
10548
|
+
403: unknown;
|
|
10549
|
+
/**
|
|
10550
|
+
* Workflow not found
|
|
10551
|
+
*/
|
|
10552
|
+
404: unknown;
|
|
10553
|
+
};
|
|
10554
|
+
type CreateTaskResponses = {
|
|
10555
|
+
/**
|
|
10556
|
+
* Task created
|
|
10557
|
+
*/
|
|
10558
|
+
201: Task;
|
|
10559
|
+
};
|
|
10560
|
+
type CreateTaskResponse = CreateTaskResponses[keyof CreateTaskResponses];
|
|
10561
|
+
type DeleteTaskData = {
|
|
10562
|
+
body?: never;
|
|
10563
|
+
path: {
|
|
10564
|
+
task_id: string;
|
|
10565
|
+
};
|
|
10566
|
+
query?: never;
|
|
10567
|
+
url: '/api/v1/tasks/{task_id}';
|
|
10568
|
+
};
|
|
10569
|
+
type DeleteTaskErrors = {
|
|
10570
|
+
/**
|
|
10571
|
+
* Unauthorized
|
|
10572
|
+
*/
|
|
10573
|
+
401: unknown;
|
|
10574
|
+
/**
|
|
10575
|
+
* Forbidden
|
|
10576
|
+
*/
|
|
10577
|
+
403: unknown;
|
|
10578
|
+
/**
|
|
10579
|
+
* Task not found
|
|
10580
|
+
*/
|
|
10581
|
+
404: unknown;
|
|
10582
|
+
};
|
|
10583
|
+
type DeleteTaskResponses = {
|
|
10584
|
+
/**
|
|
10585
|
+
* Task deleted
|
|
10586
|
+
*/
|
|
10587
|
+
204: void;
|
|
10588
|
+
};
|
|
10589
|
+
type DeleteTaskResponse = DeleteTaskResponses[keyof DeleteTaskResponses];
|
|
10590
|
+
type GetTaskData = {
|
|
10591
|
+
body?: never;
|
|
10592
|
+
path: {
|
|
10593
|
+
task_id: string;
|
|
10594
|
+
};
|
|
10595
|
+
query?: never;
|
|
10596
|
+
url: '/api/v1/tasks/{task_id}';
|
|
10597
|
+
};
|
|
10598
|
+
type GetTaskErrors = {
|
|
10599
|
+
/**
|
|
10600
|
+
* Unauthorized
|
|
10601
|
+
*/
|
|
10602
|
+
401: unknown;
|
|
10603
|
+
/**
|
|
10604
|
+
* Forbidden
|
|
10605
|
+
*/
|
|
10606
|
+
403: unknown;
|
|
10607
|
+
/**
|
|
10608
|
+
* Task not found
|
|
10609
|
+
*/
|
|
10610
|
+
404: unknown;
|
|
10611
|
+
};
|
|
10612
|
+
type GetTaskResponses = {
|
|
10613
|
+
/**
|
|
10614
|
+
* Task details
|
|
10615
|
+
*/
|
|
10616
|
+
200: Task;
|
|
10617
|
+
};
|
|
10618
|
+
type GetTaskResponse = GetTaskResponses[keyof GetTaskResponses];
|
|
10619
|
+
type UpdateTaskData = {
|
|
10620
|
+
body: UpdateTaskRequest;
|
|
10621
|
+
path: {
|
|
10622
|
+
task_id: string;
|
|
10623
|
+
};
|
|
10624
|
+
query?: never;
|
|
10625
|
+
url: '/api/v1/tasks/{task_id}';
|
|
10626
|
+
};
|
|
10627
|
+
type UpdateTaskErrors = {
|
|
10628
|
+
/**
|
|
10629
|
+
* Bad request (invalid payload)
|
|
10630
|
+
*/
|
|
10631
|
+
400: unknown;
|
|
10632
|
+
/**
|
|
10633
|
+
* Unauthorized
|
|
10634
|
+
*/
|
|
10635
|
+
401: unknown;
|
|
10636
|
+
/**
|
|
10637
|
+
* Forbidden
|
|
10638
|
+
*/
|
|
10639
|
+
403: unknown;
|
|
10640
|
+
/**
|
|
10641
|
+
* Task not found
|
|
10642
|
+
*/
|
|
10643
|
+
404: unknown;
|
|
10644
|
+
};
|
|
10645
|
+
type UpdateTaskResponses = {
|
|
10646
|
+
/**
|
|
10647
|
+
* Task updated
|
|
10648
|
+
*/
|
|
10649
|
+
200: Task;
|
|
10650
|
+
};
|
|
10651
|
+
type UpdateTaskResponse = UpdateTaskResponses[keyof UpdateTaskResponses];
|
|
10652
|
+
type TransitionTaskData = {
|
|
10653
|
+
body: TransitionTaskRequest;
|
|
10654
|
+
path: {
|
|
10655
|
+
task_id: string;
|
|
10656
|
+
};
|
|
10657
|
+
query?: never;
|
|
10658
|
+
url: '/api/v1/tasks/{task_id}/transitions';
|
|
10659
|
+
};
|
|
10660
|
+
type TransitionTaskErrors = {
|
|
10661
|
+
/**
|
|
10662
|
+
* The transition does not exist, is not valid, or its guard rejected the move
|
|
10663
|
+
*/
|
|
10664
|
+
400: unknown;
|
|
10665
|
+
/**
|
|
10666
|
+
* Unauthorized
|
|
10667
|
+
*/
|
|
10668
|
+
401: unknown;
|
|
10669
|
+
/**
|
|
10670
|
+
* Forbidden
|
|
10671
|
+
*/
|
|
10672
|
+
403: unknown;
|
|
10673
|
+
/**
|
|
10674
|
+
* Task not found
|
|
10675
|
+
*/
|
|
10676
|
+
404: unknown;
|
|
10677
|
+
/**
|
|
10678
|
+
* A concurrent transition made this one invalid, or the task is closed
|
|
10679
|
+
*/
|
|
10680
|
+
409: unknown;
|
|
10681
|
+
};
|
|
10682
|
+
type TransitionTaskResponses = {
|
|
10683
|
+
/**
|
|
10684
|
+
* The task after the transition
|
|
10685
|
+
*/
|
|
10686
|
+
200: Task;
|
|
10687
|
+
};
|
|
10688
|
+
type TransitionTaskResponse = TransitionTaskResponses[keyof TransitionTaskResponses];
|
|
10689
|
+
type GetTaskHistoryData = {
|
|
10690
|
+
body?: never;
|
|
10691
|
+
path: {
|
|
10692
|
+
task_id: string;
|
|
10693
|
+
};
|
|
10694
|
+
query?: never;
|
|
10695
|
+
url: '/api/v1/tasks/{task_id}/history';
|
|
10696
|
+
};
|
|
10697
|
+
type GetTaskHistoryErrors = {
|
|
10698
|
+
/**
|
|
10699
|
+
* Unauthorized
|
|
10700
|
+
*/
|
|
10701
|
+
401: unknown;
|
|
10702
|
+
/**
|
|
10703
|
+
* Forbidden
|
|
10704
|
+
*/
|
|
10705
|
+
403: unknown;
|
|
10706
|
+
/**
|
|
10707
|
+
* Task not found
|
|
10708
|
+
*/
|
|
10709
|
+
404: unknown;
|
|
10710
|
+
};
|
|
10711
|
+
type GetTaskHistoryResponses = {
|
|
10712
|
+
/**
|
|
10713
|
+
* The task's transition history, oldest first
|
|
10714
|
+
*/
|
|
10715
|
+
200: Array<TaskTransition>;
|
|
10716
|
+
};
|
|
10717
|
+
type GetTaskHistoryResponse = GetTaskHistoryResponses[keyof GetTaskHistoryResponses];
|
|
10375
10718
|
type ListToolsData = {
|
|
10376
10719
|
body?: never;
|
|
10377
10720
|
path?: never;
|
|
@@ -11757,6 +12100,157 @@ type RotateWebhookSecretResponses = {
|
|
|
11757
12100
|
200: WebhookWithSecret;
|
|
11758
12101
|
};
|
|
11759
12102
|
type RotateWebhookSecretResponse = RotateWebhookSecretResponses[keyof RotateWebhookSecretResponses];
|
|
12103
|
+
type ListWorkflowsData = {
|
|
12104
|
+
body?: never;
|
|
12105
|
+
path?: never;
|
|
12106
|
+
query?: {
|
|
12107
|
+
project_id?: string;
|
|
12108
|
+
};
|
|
12109
|
+
url: '/api/v1/workflows';
|
|
12110
|
+
};
|
|
12111
|
+
type ListWorkflowsErrors = {
|
|
12112
|
+
/**
|
|
12113
|
+
* Unauthorized
|
|
12114
|
+
*/
|
|
12115
|
+
401: unknown;
|
|
12116
|
+
/**
|
|
12117
|
+
* Forbidden
|
|
12118
|
+
*/
|
|
12119
|
+
403: unknown;
|
|
12120
|
+
};
|
|
12121
|
+
type ListWorkflowsResponses = {
|
|
12122
|
+
/**
|
|
12123
|
+
* A list of workflows
|
|
12124
|
+
*/
|
|
12125
|
+
200: Array<Workflow>;
|
|
12126
|
+
};
|
|
12127
|
+
type ListWorkflowsResponse = ListWorkflowsResponses[keyof ListWorkflowsResponses];
|
|
12128
|
+
type CreateWorkflowData = {
|
|
12129
|
+
body: CreateWorkflowRequest;
|
|
12130
|
+
path?: never;
|
|
12131
|
+
query?: never;
|
|
12132
|
+
url: '/api/v1/workflows';
|
|
12133
|
+
};
|
|
12134
|
+
type CreateWorkflowErrors = {
|
|
12135
|
+
/**
|
|
12136
|
+
* Bad request (invalid definition)
|
|
12137
|
+
*/
|
|
12138
|
+
400: unknown;
|
|
12139
|
+
/**
|
|
12140
|
+
* Unauthorized
|
|
12141
|
+
*/
|
|
12142
|
+
401: unknown;
|
|
12143
|
+
/**
|
|
12144
|
+
* Forbidden
|
|
12145
|
+
*/
|
|
12146
|
+
403: unknown;
|
|
12147
|
+
/**
|
|
12148
|
+
* A workflow with this name already exists
|
|
12149
|
+
*/
|
|
12150
|
+
409: unknown;
|
|
12151
|
+
};
|
|
12152
|
+
type CreateWorkflowResponses = {
|
|
12153
|
+
/**
|
|
12154
|
+
* Workflow created
|
|
12155
|
+
*/
|
|
12156
|
+
201: Workflow;
|
|
12157
|
+
};
|
|
12158
|
+
type CreateWorkflowResponse = CreateWorkflowResponses[keyof CreateWorkflowResponses];
|
|
12159
|
+
type DeleteWorkflowData = {
|
|
12160
|
+
body?: never;
|
|
12161
|
+
path: {
|
|
12162
|
+
workflow_id: string;
|
|
12163
|
+
};
|
|
12164
|
+
query?: never;
|
|
12165
|
+
url: '/api/v1/workflows/{workflow_id}';
|
|
12166
|
+
};
|
|
12167
|
+
type DeleteWorkflowErrors = {
|
|
12168
|
+
/**
|
|
12169
|
+
* Unauthorized
|
|
12170
|
+
*/
|
|
12171
|
+
401: unknown;
|
|
12172
|
+
/**
|
|
12173
|
+
* Forbidden
|
|
12174
|
+
*/
|
|
12175
|
+
403: unknown;
|
|
12176
|
+
/**
|
|
12177
|
+
* Workflow not found
|
|
12178
|
+
*/
|
|
12179
|
+
404: unknown;
|
|
12180
|
+
/**
|
|
12181
|
+
* The workflow has open tasks and cannot be deleted
|
|
12182
|
+
*/
|
|
12183
|
+
409: unknown;
|
|
12184
|
+
};
|
|
12185
|
+
type DeleteWorkflowResponses = {
|
|
12186
|
+
/**
|
|
12187
|
+
* Workflow deleted
|
|
12188
|
+
*/
|
|
12189
|
+
204: void;
|
|
12190
|
+
};
|
|
12191
|
+
type DeleteWorkflowResponse = DeleteWorkflowResponses[keyof DeleteWorkflowResponses];
|
|
12192
|
+
type GetWorkflowData = {
|
|
12193
|
+
body?: never;
|
|
12194
|
+
path: {
|
|
12195
|
+
workflow_id: string;
|
|
12196
|
+
};
|
|
12197
|
+
query?: never;
|
|
12198
|
+
url: '/api/v1/workflows/{workflow_id}';
|
|
12199
|
+
};
|
|
12200
|
+
type GetWorkflowErrors = {
|
|
12201
|
+
/**
|
|
12202
|
+
* Unauthorized
|
|
12203
|
+
*/
|
|
12204
|
+
401: unknown;
|
|
12205
|
+
/**
|
|
12206
|
+
* Forbidden
|
|
12207
|
+
*/
|
|
12208
|
+
403: unknown;
|
|
12209
|
+
/**
|
|
12210
|
+
* Workflow not found
|
|
12211
|
+
*/
|
|
12212
|
+
404: unknown;
|
|
12213
|
+
};
|
|
12214
|
+
type GetWorkflowResponses = {
|
|
12215
|
+
/**
|
|
12216
|
+
* Workflow details
|
|
12217
|
+
*/
|
|
12218
|
+
200: Workflow;
|
|
12219
|
+
};
|
|
12220
|
+
type GetWorkflowResponse = GetWorkflowResponses[keyof GetWorkflowResponses];
|
|
12221
|
+
type UpdateWorkflowData = {
|
|
12222
|
+
body: UpdateWorkflowRequest;
|
|
12223
|
+
path: {
|
|
12224
|
+
workflow_id: string;
|
|
12225
|
+
};
|
|
12226
|
+
query?: never;
|
|
12227
|
+
url: '/api/v1/workflows/{workflow_id}';
|
|
12228
|
+
};
|
|
12229
|
+
type UpdateWorkflowErrors = {
|
|
12230
|
+
/**
|
|
12231
|
+
* Bad request (invalid definition)
|
|
12232
|
+
*/
|
|
12233
|
+
400: unknown;
|
|
12234
|
+
/**
|
|
12235
|
+
* Unauthorized
|
|
12236
|
+
*/
|
|
12237
|
+
401: unknown;
|
|
12238
|
+
/**
|
|
12239
|
+
* Forbidden
|
|
12240
|
+
*/
|
|
12241
|
+
403: unknown;
|
|
12242
|
+
/**
|
|
12243
|
+
* Workflow not found
|
|
12244
|
+
*/
|
|
12245
|
+
404: unknown;
|
|
12246
|
+
};
|
|
12247
|
+
type UpdateWorkflowResponses = {
|
|
12248
|
+
/**
|
|
12249
|
+
* Workflow updated
|
|
12250
|
+
*/
|
|
12251
|
+
200: Workflow;
|
|
12252
|
+
};
|
|
12253
|
+
type UpdateWorkflowResponse = UpdateWorkflowResponses[keyof UpdateWorkflowResponses];
|
|
11760
12254
|
//#endregion
|
|
11761
12255
|
//#region src/generated/sdk.gen.d.ts
|
|
11762
12256
|
type Options<TData extends TDataShape = TDataShape, ThrowOnError extends boolean = boolean, TResponse = unknown> = Options$1<TData, ThrowOnError, TResponse> & {
|
|
@@ -12540,7 +13034,7 @@ declare class Orchestrations {
|
|
|
12540
13034
|
/**
|
|
12541
13035
|
* Create an orchestration
|
|
12542
13036
|
*
|
|
12543
|
-
* Creates a new orchestration
|
|
13037
|
+
* Creates a new orchestration (pipeline) definition in the project.
|
|
12544
13038
|
*/
|
|
12545
13039
|
static createOrchestration<ThrowOnError extends boolean = false>(options: Options<CreateOrchestrationData, ThrowOnError>): RequestResult<CreateOrchestrationResponses, CreateOrchestrationErrors, ThrowOnError>;
|
|
12546
13040
|
/**
|
|
@@ -12791,6 +13285,50 @@ declare class Sessions {
|
|
|
12791
13285
|
*/
|
|
12792
13286
|
static replaceSessionTags<ThrowOnError extends boolean = false>(options: Options<ReplaceSessionTagsData, ThrowOnError>): RequestResult<ReplaceSessionTagsResponses, ReplaceSessionTagsErrors, ThrowOnError>;
|
|
12793
13287
|
}
|
|
13288
|
+
declare class Tasks {
|
|
13289
|
+
/**
|
|
13290
|
+
* List tasks
|
|
13291
|
+
*
|
|
13292
|
+
* Lists tasks (the board query). Filter by workflow, state, status, or assignee — `GET /tasks?workflow_id=...&state=...` is one board column.
|
|
13293
|
+
*/
|
|
13294
|
+
static listTasks<ThrowOnError extends boolean = false>(options?: Options<ListTasksData, ThrowOnError>): RequestResult<ListTasksResponses, ListTasksErrors, ThrowOnError>;
|
|
13295
|
+
/**
|
|
13296
|
+
* Create a task
|
|
13297
|
+
*
|
|
13298
|
+
* Creates a task bound to a workflow. The task is placed in the workflow's initial state and that state's `on_enter` automation fires.
|
|
13299
|
+
*/
|
|
13300
|
+
static createTask<ThrowOnError extends boolean = false>(options: Options<CreateTaskData, ThrowOnError>): RequestResult<CreateTaskResponses, CreateTaskErrors, ThrowOnError>;
|
|
13301
|
+
/**
|
|
13302
|
+
* Delete a task
|
|
13303
|
+
*
|
|
13304
|
+
* Deletes a task. Its transition history cascades.
|
|
13305
|
+
*/
|
|
13306
|
+
static deleteTask<ThrowOnError extends boolean = false>(options: Options<DeleteTaskData, ThrowOnError>): RequestResult<DeleteTaskResponses, DeleteTaskErrors, ThrowOnError>;
|
|
13307
|
+
/**
|
|
13308
|
+
* Get a task
|
|
13309
|
+
*
|
|
13310
|
+
* Retrieves a task, including its active dispatch and automation status.
|
|
13311
|
+
*/
|
|
13312
|
+
static getTask<ThrowOnError extends boolean = false>(options: Options<GetTaskData, ThrowOnError>): RequestResult<GetTaskResponses, GetTaskErrors, ThrowOnError>;
|
|
13313
|
+
/**
|
|
13314
|
+
* Update a task
|
|
13315
|
+
*
|
|
13316
|
+
* Updates a task's payload, title, or assignee. `state` is never directly writable — move it with a transition. `payload` is shallow-merged over the existing payload (PATCH semantics): keys the request omits are preserved, so setting one field never discards values an on_enter automation wrote (e.g. `last_result`). The merged payload is validated against the workflow's `payload_schema`.
|
|
13317
|
+
*/
|
|
13318
|
+
static updateTask<ThrowOnError extends boolean = false>(options: Options<UpdateTaskData, ThrowOnError>): RequestResult<UpdateTaskResponses, UpdateTaskErrors, ThrowOnError>;
|
|
13319
|
+
/**
|
|
13320
|
+
* Transition a task
|
|
13321
|
+
*
|
|
13322
|
+
* Fires a named transition on a task. The transition must exist in the workflow and be valid from the task's current state; its guard must pass. This is the single path every state change routes through.
|
|
13323
|
+
*/
|
|
13324
|
+
static transitionTask<ThrowOnError extends boolean = false>(options: Options<TransitionTaskData, ThrowOnError>): RequestResult<TransitionTaskResponses, TransitionTaskErrors, ThrowOnError>;
|
|
13325
|
+
/**
|
|
13326
|
+
* Get task history
|
|
13327
|
+
*
|
|
13328
|
+
* Returns the append-only transition history of a task.
|
|
13329
|
+
*/
|
|
13330
|
+
static getTaskHistory<ThrowOnError extends boolean = false>(options: Options<GetTaskHistoryData, ThrowOnError>): RequestResult<GetTaskHistoryResponses, GetTaskHistoryErrors, ThrowOnError>;
|
|
13331
|
+
}
|
|
12794
13332
|
declare class Tools {
|
|
12795
13333
|
/**
|
|
12796
13334
|
* List tools
|
|
@@ -13079,6 +13617,38 @@ declare class Webhooks {
|
|
|
13079
13617
|
*/
|
|
13080
13618
|
static rotateWebhookSecret<ThrowOnError extends boolean = false>(options: Options<RotateWebhookSecretData, ThrowOnError>): RequestResult<RotateWebhookSecretResponses, RotateWebhookSecretErrors, ThrowOnError>;
|
|
13081
13619
|
}
|
|
13620
|
+
declare class Workflows {
|
|
13621
|
+
/**
|
|
13622
|
+
* List workflows
|
|
13623
|
+
*
|
|
13624
|
+
* Lists workflow definitions in a project.
|
|
13625
|
+
*/
|
|
13626
|
+
static listWorkflows<ThrowOnError extends boolean = false>(options?: Options<ListWorkflowsData, ThrowOnError>): RequestResult<ListWorkflowsResponses, ListWorkflowsErrors, ThrowOnError>;
|
|
13627
|
+
/**
|
|
13628
|
+
* Create a workflow
|
|
13629
|
+
*
|
|
13630
|
+
* Creates a new workflow definition. The definition is statically validated.
|
|
13631
|
+
*/
|
|
13632
|
+
static createWorkflow<ThrowOnError extends boolean = false>(options: Options<CreateWorkflowData, ThrowOnError>): RequestResult<CreateWorkflowResponses, CreateWorkflowErrors, ThrowOnError>;
|
|
13633
|
+
/**
|
|
13634
|
+
* Delete a workflow
|
|
13635
|
+
*
|
|
13636
|
+
* Deletes a workflow. Rejected while open tasks exist.
|
|
13637
|
+
*/
|
|
13638
|
+
static deleteWorkflow<ThrowOnError extends boolean = false>(options: Options<DeleteWorkflowData, ThrowOnError>): RequestResult<DeleteWorkflowResponses, DeleteWorkflowErrors, ThrowOnError>;
|
|
13639
|
+
/**
|
|
13640
|
+
* Get a workflow
|
|
13641
|
+
*
|
|
13642
|
+
* Retrieves a workflow definition.
|
|
13643
|
+
*/
|
|
13644
|
+
static getWorkflow<ThrowOnError extends boolean = false>(options: Options<GetWorkflowData, ThrowOnError>): RequestResult<GetWorkflowResponses, GetWorkflowErrors, ThrowOnError>;
|
|
13645
|
+
/**
|
|
13646
|
+
* Update a workflow
|
|
13647
|
+
*
|
|
13648
|
+
* Updates a workflow definition. Structural changes (states/transitions) are re-validated. Existing tasks in a removed state stay put but can only leave via transitions valid in the new definition.
|
|
13649
|
+
*/
|
|
13650
|
+
static updateWorkflow<ThrowOnError extends boolean = false>(options: Options<UpdateWorkflowData, ThrowOnError>): RequestResult<UpdateWorkflowResponses, UpdateWorkflowErrors, ThrowOnError>;
|
|
13651
|
+
}
|
|
13082
13652
|
//#endregion
|
|
13083
13653
|
//#region src/soatClient.d.ts
|
|
13084
13654
|
interface SoatClientOptions {
|
|
@@ -13148,4 +13718,4 @@ declare class SoatClient {
|
|
|
13148
13718
|
constructor({ baseUrl, token, headers }?: SoatClientOptions);
|
|
13149
13719
|
}
|
|
13150
13720
|
//#endregion
|
|
13151
|
-
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 AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type ApprovalId, type ApprovalItem, Approvals, type ApproveApprovalData, type ApproveApprovalErrors, type ApproveApprovalResponse, type ApproveApprovalResponses, 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 CompleteIngestionCallbackData, type CompleteIngestionCallbackError, type CompleteIngestionCallbackErrors, type CompleteIngestionCallbackResponse, type CompleteIngestionCallbackResponses, 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 CreateDiscussionData, type CreateDiscussionError, type CreateDiscussionErrors, type CreateDiscussionResponse, type CreateDiscussionResponses, type CreateDiscussionRunData, type CreateDiscussionRunError, type CreateDiscussionRunErrors, type CreateDiscussionRunResponse, type CreateDiscussionRunResponses, 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 CreateIngestionRuleData, type CreateIngestionRuleErrors, type CreateIngestionRuleResponse, type CreateIngestionRuleResponses, 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 CreatePresignedUrlData, type CreatePresignedUrlError, type CreatePresignedUrlErrors, type CreatePresignedUrlResponse, type CreatePresignedUrlResponses, 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 CreateTriggerData, type CreateTriggerErrors, type CreateTriggerRequest, type CreateTriggerResponse, type CreateTriggerResponses, type CreateUsageThresholdData, type CreateUsageThresholdError, type CreateUsageThresholdErrors, type CreateUsageThresholdRequest, type CreateUsageThresholdResponse, type CreateUsageThresholdResponses, 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 DeleteDiscussionData, type DeleteDiscussionError, type DeleteDiscussionErrors, type DeleteDiscussionResponse, type DeleteDiscussionResponses, 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 DeleteIngestionRuleData, type DeleteIngestionRuleErrors, type DeleteIngestionRuleResponse, type DeleteIngestionRuleResponses, 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 DeleteProjectError, 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 DeleteTriggerData, type DeleteTriggerErrors, type DeleteTriggerResponse, type DeleteTriggerResponses, type DeleteUsageThresholdData, type DeleteUsageThresholdError, type DeleteUsageThresholdErrors, type DeleteUsageThresholdResponse, type DeleteUsageThresholdResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type Delivery, type DeliveryListResponse, type DiscussionRecord, type DiscussionResourceProperties, type DiscussionRunRecord, Discussions, type DocumentKnowledgeResult, type DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, type DocumentStatusRecord, 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 FileRecordWritable, type FileResourceProperties, Files, type FireTriggerData, type FireTriggerErrors, type FireTriggerRequest, type FireTriggerResponse, type FireTriggerResponses, 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 GetAiProviderPricesData, type GetAiProviderPricesErrors, type GetAiProviderPricesResponse, type GetAiProviderPricesResponses, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetApprovalData, type GetApprovalErrors, type GetApprovalResponse, type GetApprovalResponses, 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 GetDiscussionData, type GetDiscussionError, type GetDiscussionErrors, type GetDiscussionResponse, type GetDiscussionResponses, type GetDiscussionRunData, type GetDiscussionRunError, type GetDiscussionRunErrors, type GetDiscussionRunResponse, type GetDiscussionRunResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentStatusData, type GetDocumentStatusError, type GetDocumentStatusErrors, type GetDocumentStatusResponse, type GetDocumentStatusResponses, 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 GetIngestionRuleData, type GetIngestionRuleErrors, type GetIngestionRuleResponse, type GetIngestionRuleResponses, 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 GetPriceBookData, type GetPriceBookError, type GetPriceBookErrors, type GetPriceBookResponse, type GetPriceBookResponses, type GetProjectData, type GetProjectErrors, type GetProjectPricesData, type GetProjectPricesErrors, type GetProjectPricesResponse, type GetProjectPricesResponses, 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 GetTriggerData, type GetTriggerErrors, type GetTriggerFiringData, type GetTriggerFiringErrors, type GetTriggerFiringResponse, type GetTriggerFiringResponses, type GetTriggerResponse, type GetTriggerResponses, type GetTriggerSecretData, type GetTriggerSecretErrors, type GetTriggerSecretResponse, type GetTriggerSecretResponses, type GetUsageData, type GetUsageError, type GetUsageErrors, type GetUsageReceiptData, type GetUsageReceiptError, type GetUsageReceiptErrors, type GetUsageReceiptResponse, type GetUsageReceiptResponses, type GetUsageResponse, type GetUsageResponses, 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, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, type IngestionRule, type IngestionRuleResourceProperties, IngestionRules, 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 ListApprovalsData, type ListApprovalsErrors, type ListApprovalsResponse, type ListApprovalsResponses, 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 ListDiscussionRunsData, type ListDiscussionRunsError, type ListDiscussionRunsErrors, type ListDiscussionRunsResponse, type ListDiscussionRunsResponses, type ListDiscussionsData, type ListDiscussionsError, type ListDiscussionsErrors, type ListDiscussionsResponse, type ListDiscussionsResponses, 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 ListIngestionRulesData, type ListIngestionRulesErrors, type ListIngestionRulesResponse, type ListIngestionRulesResponses, 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 ListTriggerFiringsData, type ListTriggerFiringsErrors, type ListTriggerFiringsResponse, type ListTriggerFiringsResponses, type ListTriggersData, type ListTriggersErrors, type ListTriggersResponse, type ListTriggersResponses, type ListUsageMetersData, type ListUsageMetersError, type ListUsageMetersErrors, type ListUsageMetersResponse, type ListUsageMetersResponses, type ListUsageThresholdsData, type ListUsageThresholdsError, type ListUsageThresholdsErrors, type ListUsageThresholdsResponse, type ListUsageThresholdsResponses, 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 NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationResourceProperties, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type ParticipantInput, type ParticipantRecord, type PatchAgentData, type PatchAgentError, type PatchAgentErrors, type PatchAgentResponse, type PatchAgentResponses, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type PresignedUrlRequest, type PresignedUrlResponse, type Price, type PriceBookResponse, type ProjectPrice, type ProjectPriceResourceProperties, type ProjectPricesResponse, type ProjectRecord, Projects, type ProviderPrice, type ProviderPricesResponse, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RejectApprovalData, type RejectApprovalErrors, type RejectApprovalResponse, type RejectApprovalResponses, 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 RotateTriggerSecretData, type RotateTriggerSecretErrors, type RotateTriggerSecretResponse, type RotateTriggerSecretResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type RunUsageTotals, 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 SynthesisConfig, type Tool, type ToolApprovalPolicy, type ToolBinding, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type Trigger, type TriggerFiring, type TriggerFiringListResponse, type TriggerResourceProperties, type TriggerSecretResponse, type TriggerWithSecret, Triggers, 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 UpdateAiProviderPricesData, type UpdateAiProviderPricesErrors, type UpdateAiProviderPricesResponse, type UpdateAiProviderPricesResponses, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDiscussionData, type UpdateDiscussionError, type UpdateDiscussionErrors, type UpdateDiscussionResponse, type UpdateDiscussionResponses, 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 UpdateGenerationData, type UpdateGenerationError, type UpdateGenerationErrors, type UpdateGenerationRequest, type UpdateGenerationResponse, type UpdateGenerationResponses, type UpdateIngestionRuleData, type UpdateIngestionRuleErrors, type UpdateIngestionRuleResponse, type UpdateIngestionRuleResponses, 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 UpdateProjectData, type UpdateProjectErrors, type UpdateProjectPricesData, type UpdateProjectPricesErrors, type UpdateProjectPricesResponse, type UpdateProjectPricesResponses, type UpdateProjectResponse, type UpdateProjectResponses, 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 UpdateTriggerData, type UpdateTriggerErrors, type UpdateTriggerRequest, type UpdateTriggerResponse, type UpdateTriggerResponses, 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 UploadFileWithTokenData, type UploadFileWithTokenError, type UploadFileWithTokenErrors, type UploadFileWithTokenRequest, type UploadFileWithTokenResponse, type UploadFileWithTokenResponses, type UpsertPriceBookData, type UpsertPriceBookError, type UpsertPriceBookErrors, type UpsertPriceBookResponse, type UpsertPriceBookResponses, type UpsertPricesRequest, type UpsertProjectPricesRequest, type UpsertProviderPricesRequest, Usage, type UsageAggregate, type UsageAggregateTotals, type UsageComponent, type UsageEvent, type UsageReceipt, type UsageThreshold, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidateOrchestrationData, type ValidateOrchestrationErrors, type ValidateOrchestrationRequest, type ValidateOrchestrationResponse, type ValidateOrchestrationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, createClient, createConfig };
|
|
13721
|
+
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 AgentResourceProperties, Agents, type AiProviderResourceProperties, AiProviders, type ApiKeyCreated, type ApiKeyRecord, type ApiKeyResourceProperties, ApiKeys, type ApprovalId, type ApprovalItem, Approvals, type ApproveApprovalData, type ApproveApprovalErrors, type ApproveApprovalResponse, type ApproveApprovalResponses, 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 CompleteIngestionCallbackData, type CompleteIngestionCallbackError, type CompleteIngestionCallbackErrors, type CompleteIngestionCallbackResponse, type CompleteIngestionCallbackResponses, 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 CreateDiscussionData, type CreateDiscussionError, type CreateDiscussionErrors, type CreateDiscussionResponse, type CreateDiscussionResponses, type CreateDiscussionRunData, type CreateDiscussionRunError, type CreateDiscussionRunErrors, type CreateDiscussionRunResponse, type CreateDiscussionRunResponses, 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 CreateIngestionRuleData, type CreateIngestionRuleErrors, type CreateIngestionRuleResponse, type CreateIngestionRuleResponses, 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 CreatePresignedUrlData, type CreatePresignedUrlError, type CreatePresignedUrlErrors, type CreatePresignedUrlResponse, type CreatePresignedUrlResponses, 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 CreateTaskData, type CreateTaskErrors, type CreateTaskRequest, type CreateTaskResponse, type CreateTaskResponses, type CreateToolData, type CreateToolError, type CreateToolErrors, type CreateToolRequest, type CreateToolResponse, type CreateToolResponses, type CreateTriggerData, type CreateTriggerErrors, type CreateTriggerRequest, type CreateTriggerResponse, type CreateTriggerResponses, type CreateUsageThresholdData, type CreateUsageThresholdError, type CreateUsageThresholdErrors, type CreateUsageThresholdRequest, type CreateUsageThresholdResponse, type CreateUsageThresholdResponses, type CreateUserData, type CreateUserError, type CreateUserErrors, type CreateUserResponse, type CreateUserResponses, type CreateWebhookData, type CreateWebhookErrors, type CreateWebhookRequest, type CreateWebhookResponse, type CreateWebhookResponses, type CreateWorkflowData, type CreateWorkflowErrors, type CreateWorkflowRequest, type CreateWorkflowResponse, type CreateWorkflowResponses, 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 DeleteDiscussionData, type DeleteDiscussionError, type DeleteDiscussionErrors, type DeleteDiscussionResponse, type DeleteDiscussionResponses, 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 DeleteIngestionRuleData, type DeleteIngestionRuleErrors, type DeleteIngestionRuleResponse, type DeleteIngestionRuleResponses, 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 DeleteProjectError, type DeleteProjectErrors, type DeleteProjectResponse, type DeleteProjectResponses, type DeleteSecretData, type DeleteSecretErrors, type DeleteSecretResponses, type DeleteSessionData, type DeleteSessionError, type DeleteSessionErrors, type DeleteSessionResponse, type DeleteSessionResponses, type DeleteTaskData, type DeleteTaskErrors, type DeleteTaskResponse, type DeleteTaskResponses, type DeleteToolData, type DeleteToolError, type DeleteToolErrors, type DeleteToolResponse, type DeleteToolResponses, type DeleteTriggerData, type DeleteTriggerErrors, type DeleteTriggerResponse, type DeleteTriggerResponses, type DeleteUsageThresholdData, type DeleteUsageThresholdError, type DeleteUsageThresholdErrors, type DeleteUsageThresholdResponse, type DeleteUsageThresholdResponses, type DeleteUserData, type DeleteUserError, type DeleteUserErrors, type DeleteUserResponse, type DeleteUserResponses, type DeleteWebhookData, type DeleteWebhookErrors, type DeleteWebhookResponse, type DeleteWebhookResponses, type DeleteWorkflowData, type DeleteWorkflowErrors, type DeleteWorkflowResponse, type DeleteWorkflowResponses, type Delivery, type DeliveryListResponse, type DiscussionRecord, type DiscussionResourceProperties, type DiscussionRunRecord, Discussions, type DocumentKnowledgeResult, type DocumentMessageContent, type DocumentRecord, type DocumentResourceProperties, type DocumentStatusRecord, 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 FileRecordWritable, type FileResourceProperties, Files, type FireTriggerData, type FireTriggerErrors, type FireTriggerRequest, type FireTriggerResponse, type FireTriggerResponses, 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 GetAiProviderPricesData, type GetAiProviderPricesErrors, type GetAiProviderPricesResponse, type GetAiProviderPricesResponses, type GetAiProviderResponse, type GetAiProviderResponses, type GetApiKeyData, type GetApiKeyErrors, type GetApiKeyResponse, type GetApiKeyResponses, type GetApprovalData, type GetApprovalErrors, type GetApprovalResponse, type GetApprovalResponses, 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 GetDiscussionData, type GetDiscussionError, type GetDiscussionErrors, type GetDiscussionResponse, type GetDiscussionResponses, type GetDiscussionRunData, type GetDiscussionRunError, type GetDiscussionRunErrors, type GetDiscussionRunResponse, type GetDiscussionRunResponses, type GetDocumentData, type GetDocumentError, type GetDocumentErrors, type GetDocumentResponse, type GetDocumentResponses, type GetDocumentStatusData, type GetDocumentStatusError, type GetDocumentStatusErrors, type GetDocumentStatusResponse, type GetDocumentStatusResponses, 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 GetIngestionRuleData, type GetIngestionRuleErrors, type GetIngestionRuleResponse, type GetIngestionRuleResponses, 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 GetPriceBookData, type GetPriceBookError, type GetPriceBookErrors, type GetPriceBookResponse, type GetPriceBookResponses, type GetProjectData, type GetProjectErrors, type GetProjectPricesData, type GetProjectPricesErrors, type GetProjectPricesResponse, type GetProjectPricesResponses, 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 GetTaskData, type GetTaskErrors, type GetTaskHistoryData, type GetTaskHistoryErrors, type GetTaskHistoryResponse, type GetTaskHistoryResponses, type GetTaskResponse, type GetTaskResponses, 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 GetTriggerData, type GetTriggerErrors, type GetTriggerFiringData, type GetTriggerFiringErrors, type GetTriggerFiringResponse, type GetTriggerFiringResponses, type GetTriggerResponse, type GetTriggerResponses, type GetTriggerSecretData, type GetTriggerSecretErrors, type GetTriggerSecretResponse, type GetTriggerSecretResponses, type GetUsageData, type GetUsageError, type GetUsageErrors, type GetUsageReceiptData, type GetUsageReceiptError, type GetUsageReceiptErrors, type GetUsageReceiptResponse, type GetUsageReceiptResponses, type GetUsageResponse, type GetUsageResponses, 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 GetWorkflowData, type GetWorkflowErrors, type GetWorkflowResponse, type GetWorkflowResponses, type HumanInputRequest, type IngestDocumentData, type IngestDocumentError, type IngestDocumentErrors, type IngestDocumentResponse, type IngestDocumentResponses, type IngestedDocumentRecord, type IngestionRule, type IngestionRuleResourceProperties, IngestionRules, 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 ListApprovalsData, type ListApprovalsErrors, type ListApprovalsResponse, type ListApprovalsResponses, 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 ListDiscussionRunsData, type ListDiscussionRunsError, type ListDiscussionRunsErrors, type ListDiscussionRunsResponse, type ListDiscussionRunsResponses, type ListDiscussionsData, type ListDiscussionsError, type ListDiscussionsErrors, type ListDiscussionsResponse, type ListDiscussionsResponses, 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 ListIngestionRulesData, type ListIngestionRulesErrors, type ListIngestionRulesResponse, type ListIngestionRulesResponses, 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 ListTasksData, type ListTasksErrors, type ListTasksResponse, type ListTasksResponses, type ListToolsData, type ListToolsError, type ListToolsErrors, type ListToolsResponse, type ListToolsResponses, type ListTracesData, type ListTracesError, type ListTracesErrors, type ListTracesResponse, type ListTracesResponses, type ListTriggerFiringsData, type ListTriggerFiringsErrors, type ListTriggerFiringsResponse, type ListTriggerFiringsResponses, type ListTriggersData, type ListTriggersErrors, type ListTriggersResponse, type ListTriggersResponses, type ListUsageMetersData, type ListUsageMetersError, type ListUsageMetersErrors, type ListUsageMetersResponse, type ListUsageMetersResponses, type ListUsageThresholdsData, type ListUsageThresholdsError, type ListUsageThresholdsErrors, type ListUsageThresholdsResponse, type ListUsageThresholdsResponses, 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 ListWorkflowsData, type ListWorkflowsErrors, type ListWorkflowsResponse, type ListWorkflowsResponses, 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 NodeExecution, type Options, type Orchestration, type OrchestrationEdge, type OrchestrationId, type OrchestrationNode, type OrchestrationResourceProperties, type OrchestrationRun, Orchestrations, type ParameterDeclaration, type ParticipantInput, type ParticipantRecord, type PatchAgentData, type PatchAgentError, type PatchAgentErrors, type PatchAgentResponse, type PatchAgentResponses, type PlanChange, type PlanFormationData, type PlanFormationErrors, type PlanFormationResponse, type PlanFormationResponses, type PlanResult, Policies, type PolicyDocument, type PolicyRecord, type PolicyResourceProperties, type PolicyStatement, type PresignedUrlRequest, type PresignedUrlResponse, type Price, type PriceBookResponse, type ProjectPrice, type ProjectPriceResourceProperties, type ProjectPricesResponse, type ProjectRecord, Projects, type ProviderPrice, type ProviderPricesResponse, type ReingestDocumentData, type ReingestDocumentError, type ReingestDocumentErrors, type ReingestDocumentResponse, type ReingestDocumentResponses, type RejectApprovalData, type RejectApprovalErrors, type RejectApprovalResponse, type RejectApprovalResponses, 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 RotateTriggerSecretData, type RotateTriggerSecretErrors, type RotateTriggerSecretResponse, type RotateTriggerSecretResponses, type RotateWebhookSecretData, type RotateWebhookSecretErrors, type RotateWebhookSecretResponse, type RotateWebhookSecretResponses, type RunId, type RunUsageTotals, 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 SynthesisConfig, type Task, type TaskTransition, Tasks, type Tool, type ToolApprovalPolicy, type ToolBinding, type ToolOutputMessageContent, type ToolResourceProperties, Tools, type Trace, type TraceTreeNode, Traces, type TransitionTaskData, type TransitionTaskErrors, type TransitionTaskRequest, type TransitionTaskResponse, type TransitionTaskResponses, type Trigger, type TriggerFiring, type TriggerFiringListResponse, type TriggerResourceProperties, type TriggerSecretResponse, type TriggerWithSecret, Triggers, 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 UpdateAiProviderPricesData, type UpdateAiProviderPricesErrors, type UpdateAiProviderPricesResponse, type UpdateAiProviderPricesResponses, type UpdateAiProviderResponses, type UpdateApiKeyData, type UpdateApiKeyError, type UpdateApiKeyErrors, type UpdateApiKeyResponse, type UpdateApiKeyResponses, type UpdateConversationData, type UpdateConversationError, type UpdateConversationErrors, type UpdateConversationResponse, type UpdateConversationResponses, type UpdateDiscussionData, type UpdateDiscussionError, type UpdateDiscussionErrors, type UpdateDiscussionResponse, type UpdateDiscussionResponses, 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 UpdateGenerationData, type UpdateGenerationError, type UpdateGenerationErrors, type UpdateGenerationRequest, type UpdateGenerationResponse, type UpdateGenerationResponses, type UpdateIngestionRuleData, type UpdateIngestionRuleErrors, type UpdateIngestionRuleResponse, type UpdateIngestionRuleResponses, 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 UpdateProjectData, type UpdateProjectErrors, type UpdateProjectPricesData, type UpdateProjectPricesErrors, type UpdateProjectPricesResponse, type UpdateProjectPricesResponses, type UpdateProjectResponse, type UpdateProjectResponses, type UpdateSecretData, type UpdateSecretErrors, type UpdateSecretResponses, type UpdateSessionData, type UpdateSessionError, type UpdateSessionErrors, type UpdateSessionRequest, type UpdateSessionResponse, type UpdateSessionResponses, type UpdateTaskData, type UpdateTaskErrors, type UpdateTaskRequest, type UpdateTaskResponse, type UpdateTaskResponses, type UpdateToolData, type UpdateToolError, type UpdateToolErrors, type UpdateToolRequest, type UpdateToolResponse, type UpdateToolResponses, type UpdateTriggerData, type UpdateTriggerErrors, type UpdateTriggerRequest, type UpdateTriggerResponse, type UpdateTriggerResponses, type UpdateWebhookData, type UpdateWebhookErrors, type UpdateWebhookRequest, type UpdateWebhookResponse, type UpdateWebhookResponses, type UpdateWorkflowData, type UpdateWorkflowErrors, type UpdateWorkflowRequest, type UpdateWorkflowResponse, type UpdateWorkflowResponses, type UploadFileBase64Data, type UploadFileBase64Error, type UploadFileBase64Errors, type UploadFileBase64Request, type UploadFileBase64Response, type UploadFileBase64Responses, type UploadFileData, type UploadFileError, type UploadFileErrors, type UploadFileResponse, type UploadFileResponses, type UploadFileWithTokenData, type UploadFileWithTokenError, type UploadFileWithTokenErrors, type UploadFileWithTokenRequest, type UploadFileWithTokenResponse, type UploadFileWithTokenResponses, type UpsertPriceBookData, type UpsertPriceBookError, type UpsertPriceBookErrors, type UpsertPriceBookResponse, type UpsertPriceBookResponses, type UpsertPricesRequest, type UpsertProjectPricesRequest, type UpsertProviderPricesRequest, Usage, type UsageAggregate, type UsageAggregateTotals, type UsageComponent, type UsageEvent, type UsageReceipt, type UsageThreshold, type UserRecord, Users, type ValidateFormationData, type ValidateFormationErrors, type ValidateFormationResponse, type ValidateFormationResponses, type ValidateOrchestrationData, type ValidateOrchestrationErrors, type ValidateOrchestrationRequest, type ValidateOrchestrationResponse, type ValidateOrchestrationResponses, type ValidationError, type ValidationResult, type Webhook, type WebhookResourceProperties, type WebhookSecretResponse, type WebhookWithSecret, Webhooks, type Workflow, type WorkflowState, type WorkflowTransition, Workflows, createClient, createConfig };
|