@easbot/sdk 0.1.7 → 0.1.13
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/LICENSE +21 -0
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +563 -265
- package/dist/index.d.ts +563 -265
- package/dist/index.mjs +6 -6
- package/package.json +20 -24
package/dist/index.d.ts
CHANGED
|
@@ -74,6 +74,18 @@ type EventFileEdited = {
|
|
|
74
74
|
file: string;
|
|
75
75
|
};
|
|
76
76
|
};
|
|
77
|
+
type OutputFormatText = {
|
|
78
|
+
type: 'text';
|
|
79
|
+
};
|
|
80
|
+
type JsonSchema = {
|
|
81
|
+
[key: string]: unknown;
|
|
82
|
+
};
|
|
83
|
+
type OutputFormatJsonSchema = {
|
|
84
|
+
type: 'json_schema';
|
|
85
|
+
schema: JsonSchema;
|
|
86
|
+
retryCount?: number;
|
|
87
|
+
};
|
|
88
|
+
type OutputFormat = OutputFormatText | OutputFormatJsonSchema;
|
|
77
89
|
type FileDiff = {
|
|
78
90
|
file: string;
|
|
79
91
|
before: string;
|
|
@@ -89,6 +101,7 @@ type UserMessage = {
|
|
|
89
101
|
time: {
|
|
90
102
|
created: number;
|
|
91
103
|
};
|
|
104
|
+
format?: OutputFormat;
|
|
92
105
|
summary?: {
|
|
93
106
|
title?: string;
|
|
94
107
|
body?: string;
|
|
@@ -130,6 +143,13 @@ type MessageAbortedError = {
|
|
|
130
143
|
message: string;
|
|
131
144
|
};
|
|
132
145
|
};
|
|
146
|
+
type StructuredOutputError = {
|
|
147
|
+
name: 'StructuredOutputError';
|
|
148
|
+
data: {
|
|
149
|
+
message: string;
|
|
150
|
+
retries: number;
|
|
151
|
+
};
|
|
152
|
+
};
|
|
133
153
|
type ContextOverflowError = {
|
|
134
154
|
name: 'ContextOverflowError';
|
|
135
155
|
data: {
|
|
@@ -160,7 +180,7 @@ type AssistantMessage = {
|
|
|
160
180
|
created: number;
|
|
161
181
|
completed?: number;
|
|
162
182
|
};
|
|
163
|
-
error?: ProviderAuthError | UnknownError | MessageOutputLengthError | MessageAbortedError | ContextOverflowError | ApiError;
|
|
183
|
+
error?: ProviderAuthError | UnknownError | MessageOutputLengthError | MessageAbortedError | StructuredOutputError | ContextOverflowError | ApiError;
|
|
164
184
|
parentID: string;
|
|
165
185
|
modelID: string;
|
|
166
186
|
providerID: string;
|
|
@@ -182,14 +202,15 @@ type AssistantMessage = {
|
|
|
182
202
|
write: number;
|
|
183
203
|
};
|
|
184
204
|
};
|
|
205
|
+
structured?: unknown;
|
|
185
206
|
variant?: string;
|
|
186
207
|
finish?: string;
|
|
187
208
|
};
|
|
188
|
-
type Message = UserMessage | AssistantMessage;
|
|
209
|
+
type Message$1 = UserMessage | AssistantMessage;
|
|
189
210
|
type EventMessageUpdated = {
|
|
190
211
|
type: 'message.updated';
|
|
191
212
|
properties: {
|
|
192
|
-
info: Message;
|
|
213
|
+
info: Message$1;
|
|
193
214
|
};
|
|
194
215
|
};
|
|
195
216
|
type EventMessageRemoved = {
|
|
@@ -422,6 +443,7 @@ type CompactionPart = {
|
|
|
422
443
|
messageID: string;
|
|
423
444
|
type: 'compaction';
|
|
424
445
|
auto: boolean;
|
|
446
|
+
overflow?: boolean;
|
|
425
447
|
};
|
|
426
448
|
type Part$1 = TextPart | SubtaskPart | ReasoningPart | FilePart | ToolPart | StepStartPart | StepFinishPart | SnapshotPart | PatchPart | AgentPart | RetryPart | CompactionPart;
|
|
427
449
|
type EventMessagePartUpdated = {
|
|
@@ -442,16 +464,25 @@ type EventMessagePartRemoved = {
|
|
|
442
464
|
type PermissionRequest = {
|
|
443
465
|
id: string;
|
|
444
466
|
sessionID: string;
|
|
445
|
-
|
|
446
|
-
|
|
467
|
+
messageID?: string;
|
|
468
|
+
callID?: string;
|
|
469
|
+
type?: string;
|
|
470
|
+
permission?: string;
|
|
471
|
+
pattern?: string | Array<string>;
|
|
472
|
+
patterns?: Array<string>;
|
|
473
|
+
message?: string;
|
|
447
474
|
metadata: {
|
|
448
475
|
[key: string]: unknown;
|
|
449
476
|
};
|
|
450
|
-
always
|
|
477
|
+
always?: Array<string>;
|
|
478
|
+
time?: {
|
|
479
|
+
created?: number;
|
|
480
|
+
};
|
|
451
481
|
tool?: {
|
|
452
482
|
messageID: string;
|
|
453
483
|
callID: string;
|
|
454
484
|
};
|
|
485
|
+
[key: string]: unknown;
|
|
455
486
|
};
|
|
456
487
|
type EventPermissionAsked = {
|
|
457
488
|
type: 'permission.asked';
|
|
@@ -614,6 +645,7 @@ type Session$1 = {
|
|
|
614
645
|
id: string;
|
|
615
646
|
slug: string;
|
|
616
647
|
projectID: string;
|
|
648
|
+
workspaceID?: string;
|
|
617
649
|
directory: string;
|
|
618
650
|
parentID?: string;
|
|
619
651
|
summary?: {
|
|
@@ -644,18 +676,21 @@ type Session$1 = {
|
|
|
644
676
|
type EventSessionCreated = {
|
|
645
677
|
type: 'session.created';
|
|
646
678
|
properties: {
|
|
679
|
+
sessionID: string;
|
|
647
680
|
info: Session$1;
|
|
648
681
|
};
|
|
649
682
|
};
|
|
650
683
|
type EventSessionUpdated = {
|
|
651
684
|
type: 'session.updated';
|
|
652
685
|
properties: {
|
|
686
|
+
sessionID: string;
|
|
653
687
|
info: Session$1;
|
|
654
688
|
};
|
|
655
689
|
};
|
|
656
690
|
type EventSessionDeleted = {
|
|
657
691
|
type: 'session.deleted';
|
|
658
692
|
properties: {
|
|
693
|
+
sessionID: string;
|
|
659
694
|
info: Session$1;
|
|
660
695
|
};
|
|
661
696
|
};
|
|
@@ -670,7 +705,7 @@ type EventSessionError = {
|
|
|
670
705
|
type: 'session.error';
|
|
671
706
|
properties: {
|
|
672
707
|
sessionID?: string;
|
|
673
|
-
error?: ProviderAuthError | UnknownError | MessageOutputLengthError | MessageAbortedError | ContextOverflowError | ApiError;
|
|
708
|
+
error?: ProviderAuthError | UnknownError | MessageOutputLengthError | MessageAbortedError | StructuredOutputError | ContextOverflowError | ApiError;
|
|
674
709
|
};
|
|
675
710
|
};
|
|
676
711
|
type EventVcsBranchUpdated = {
|
|
@@ -679,6 +714,18 @@ type EventVcsBranchUpdated = {
|
|
|
679
714
|
branch?: string;
|
|
680
715
|
};
|
|
681
716
|
};
|
|
717
|
+
type EventWorkspaceReady = {
|
|
718
|
+
type: 'workspace.ready';
|
|
719
|
+
properties: {
|
|
720
|
+
name: string;
|
|
721
|
+
};
|
|
722
|
+
};
|
|
723
|
+
type EventWorkspaceFailed = {
|
|
724
|
+
type: 'workspace.failed';
|
|
725
|
+
properties: {
|
|
726
|
+
message: string;
|
|
727
|
+
};
|
|
728
|
+
};
|
|
682
729
|
type Pty$1 = {
|
|
683
730
|
id: string;
|
|
684
731
|
title: string;
|
|
@@ -726,106 +773,26 @@ type EventWorktreeFailed = {
|
|
|
726
773
|
message: string;
|
|
727
774
|
};
|
|
728
775
|
};
|
|
729
|
-
type Event = EventInstallationUpdated | EventInstallationUpdateAvailable | EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventFileEdited | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventFileWatcherUpdated | EventTodoUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventVcsBranchUpdated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorktreeReady | EventWorktreeFailed;
|
|
776
|
+
type Event = EventInstallationUpdated | EventInstallationUpdateAvailable | EventProjectUpdated | EventServerInstanceDisposed | EventServerConnected | EventGlobalDisposed | EventLspClientDiagnostics | EventLspUpdated | EventFileEdited | EventMessageUpdated | EventMessageRemoved | EventMessagePartUpdated | EventMessagePartRemoved | EventPermissionAsked | EventPermissionReplied | EventSessionStatus | EventSessionIdle | EventQuestionAsked | EventQuestionReplied | EventQuestionRejected | EventSessionCompacted | EventFileWatcherUpdated | EventTodoUpdated | EventTuiPromptAppend | EventTuiCommandExecute | EventTuiToastShow | EventTuiSessionSelect | EventMcpToolsChanged | EventMcpBrowserOpenFailed | EventCommandExecuted | EventSessionCreated | EventSessionUpdated | EventSessionDeleted | EventSessionDiff | EventSessionError | EventVcsBranchUpdated | EventPtyCreated | EventPtyUpdated | EventPtyExited | EventPtyDeleted | EventWorktreeReady | EventWorktreeFailed | EventWorkspaceReady | EventWorkspaceFailed;
|
|
730
777
|
type GlobalEvent = {
|
|
731
778
|
directory: string;
|
|
732
779
|
payload: Event;
|
|
733
780
|
};
|
|
734
|
-
type
|
|
735
|
-
|
|
736
|
-
|
|
737
|
-
|
|
738
|
-
|
|
739
|
-
|
|
740
|
-
|
|
741
|
-
|
|
742
|
-
|
|
743
|
-
|
|
744
|
-
|
|
745
|
-
|
|
746
|
-
|
|
747
|
-
|
|
748
|
-
|
|
749
|
-
session_delete?: string;
|
|
750
|
-
stash_delete?: string;
|
|
751
|
-
model_provider_list?: string;
|
|
752
|
-
model_favorite_toggle?: string;
|
|
753
|
-
session_share?: string;
|
|
754
|
-
session_unshare?: string;
|
|
755
|
-
session_interrupt?: string;
|
|
756
|
-
session_compact?: string;
|
|
757
|
-
messages_page_up?: string;
|
|
758
|
-
messages_page_down?: string;
|
|
759
|
-
messages_line_up?: string;
|
|
760
|
-
messages_line_down?: string;
|
|
761
|
-
messages_half_page_up?: string;
|
|
762
|
-
messages_half_page_down?: string;
|
|
763
|
-
messages_first?: string;
|
|
764
|
-
messages_last?: string;
|
|
765
|
-
messages_next?: string;
|
|
766
|
-
messages_previous?: string;
|
|
767
|
-
messages_last_user?: string;
|
|
768
|
-
messages_copy?: string;
|
|
769
|
-
messages_undo?: string;
|
|
770
|
-
messages_redo?: string;
|
|
771
|
-
messages_toggle_conceal?: string;
|
|
772
|
-
tool_details?: string;
|
|
773
|
-
model_list?: string;
|
|
774
|
-
model_cycle_recent?: string;
|
|
775
|
-
model_cycle_recent_reverse?: string;
|
|
776
|
-
model_cycle_favorite?: string;
|
|
777
|
-
model_cycle_favorite_reverse?: string;
|
|
778
|
-
command_list?: string;
|
|
779
|
-
agent_list?: string;
|
|
780
|
-
agent_cycle?: string;
|
|
781
|
-
agent_cycle_reverse?: string;
|
|
782
|
-
variant_cycle?: string;
|
|
783
|
-
input_clear?: string;
|
|
784
|
-
input_paste?: string;
|
|
785
|
-
input_submit?: string;
|
|
786
|
-
input_newline?: string;
|
|
787
|
-
input_move_left?: string;
|
|
788
|
-
input_move_right?: string;
|
|
789
|
-
input_move_up?: string;
|
|
790
|
-
input_move_down?: string;
|
|
791
|
-
input_select_left?: string;
|
|
792
|
-
input_select_right?: string;
|
|
793
|
-
input_select_up?: string;
|
|
794
|
-
input_select_down?: string;
|
|
795
|
-
input_line_home?: string;
|
|
796
|
-
input_line_end?: string;
|
|
797
|
-
input_select_line_home?: string;
|
|
798
|
-
input_select_line_end?: string;
|
|
799
|
-
input_visual_line_home?: string;
|
|
800
|
-
input_visual_line_end?: string;
|
|
801
|
-
input_select_visual_line_home?: string;
|
|
802
|
-
input_select_visual_line_end?: string;
|
|
803
|
-
input_buffer_home?: string;
|
|
804
|
-
input_buffer_end?: string;
|
|
805
|
-
input_select_buffer_home?: string;
|
|
806
|
-
input_select_buffer_end?: string;
|
|
807
|
-
input_delete_line?: string;
|
|
808
|
-
input_delete_to_line_end?: string;
|
|
809
|
-
input_delete_to_line_start?: string;
|
|
810
|
-
input_backspace?: string;
|
|
811
|
-
input_delete?: string;
|
|
812
|
-
input_undo?: string;
|
|
813
|
-
input_redo?: string;
|
|
814
|
-
input_word_forward?: string;
|
|
815
|
-
input_word_backward?: string;
|
|
816
|
-
input_select_word_forward?: string;
|
|
817
|
-
input_select_word_backward?: string;
|
|
818
|
-
input_delete_word_forward?: string;
|
|
819
|
-
input_delete_word_backward?: string;
|
|
820
|
-
history_previous?: string;
|
|
821
|
-
history_next?: string;
|
|
822
|
-
session_child_cycle?: string;
|
|
823
|
-
session_child_cycle_reverse?: string;
|
|
824
|
-
session_parent?: string;
|
|
825
|
-
terminal_suspend?: string;
|
|
826
|
-
terminal_title_toggle?: string;
|
|
827
|
-
tips_toggle?: string;
|
|
828
|
-
display_thinking?: string;
|
|
781
|
+
type SessionEvent = {
|
|
782
|
+
sessionID: string;
|
|
783
|
+
directory?: string;
|
|
784
|
+
payload: Event;
|
|
785
|
+
};
|
|
786
|
+
type MessageEvent = {
|
|
787
|
+
sessionID: string;
|
|
788
|
+
messageID: string;
|
|
789
|
+
directory?: string;
|
|
790
|
+
payload: Event;
|
|
791
|
+
};
|
|
792
|
+
type AgentEvent = {
|
|
793
|
+
agentID: string;
|
|
794
|
+
directory?: string;
|
|
795
|
+
payload: Event;
|
|
829
796
|
};
|
|
830
797
|
type LogLevel = 'DEBUG' | 'INFO' | 'WARN' | 'ERROR';
|
|
831
798
|
type ServerConfig = {
|
|
@@ -932,7 +899,8 @@ type ProviderConfig = {
|
|
|
932
899
|
[key: string]: string;
|
|
933
900
|
};
|
|
934
901
|
provider?: {
|
|
935
|
-
npm
|
|
902
|
+
npm?: string;
|
|
903
|
+
api?: string;
|
|
936
904
|
};
|
|
937
905
|
variants?: {
|
|
938
906
|
[key: string]: {
|
|
@@ -950,6 +918,7 @@ type ProviderConfig = {
|
|
|
950
918
|
enterpriseUrl?: string;
|
|
951
919
|
setCacheKey?: boolean;
|
|
952
920
|
timeout?: number | false;
|
|
921
|
+
chunkTimeout?: number;
|
|
953
922
|
[key: string]: unknown;
|
|
954
923
|
};
|
|
955
924
|
};
|
|
@@ -980,20 +949,11 @@ type McpRemoteConfig = {
|
|
|
980
949
|
type LayoutConfig = 'auto' | 'stretch';
|
|
981
950
|
type Config$3 = {
|
|
982
951
|
$schema?: string;
|
|
983
|
-
theme?: string;
|
|
984
|
-
keybinds?: KeybindsConfig;
|
|
985
952
|
logLevel?: LogLevel;
|
|
986
|
-
tui?: {
|
|
987
|
-
scroll_speed?: number;
|
|
988
|
-
scroll_acceleration?: {
|
|
989
|
-
enabled: boolean;
|
|
990
|
-
};
|
|
991
|
-
diff_style?: 'auto' | 'stacked';
|
|
992
|
-
};
|
|
993
953
|
server?: ServerConfig;
|
|
994
954
|
command?: {
|
|
995
955
|
[key: string]: {
|
|
996
|
-
template
|
|
956
|
+
template?: string;
|
|
997
957
|
description?: string;
|
|
998
958
|
agent?: string;
|
|
999
959
|
model?: string;
|
|
@@ -1208,6 +1168,15 @@ type ToolListItem = {
|
|
|
1208
1168
|
parameters: unknown;
|
|
1209
1169
|
};
|
|
1210
1170
|
type ToolList = Array<ToolListItem>;
|
|
1171
|
+
type Workspace = {
|
|
1172
|
+
id: string;
|
|
1173
|
+
type: string;
|
|
1174
|
+
branch: string | null;
|
|
1175
|
+
name: string | null;
|
|
1176
|
+
directory: string | null;
|
|
1177
|
+
extra: unknown | null;
|
|
1178
|
+
projectID: string;
|
|
1179
|
+
};
|
|
1211
1180
|
type Worktree$1 = {
|
|
1212
1181
|
name: string;
|
|
1213
1182
|
branch: string;
|
|
@@ -1223,6 +1192,44 @@ type WorktreeRemoveInput = {
|
|
|
1223
1192
|
type WorktreeResetInput = {
|
|
1224
1193
|
directory: string;
|
|
1225
1194
|
};
|
|
1195
|
+
type ProjectSummary = {
|
|
1196
|
+
id: string;
|
|
1197
|
+
name?: string;
|
|
1198
|
+
worktree: string;
|
|
1199
|
+
};
|
|
1200
|
+
type GlobalSession = {
|
|
1201
|
+
id: string;
|
|
1202
|
+
slug: string;
|
|
1203
|
+
projectID: string;
|
|
1204
|
+
workspaceID?: string;
|
|
1205
|
+
directory: string;
|
|
1206
|
+
parentID?: string;
|
|
1207
|
+
summary?: {
|
|
1208
|
+
additions: number;
|
|
1209
|
+
deletions: number;
|
|
1210
|
+
files: number;
|
|
1211
|
+
diffs?: Array<FileDiff>;
|
|
1212
|
+
};
|
|
1213
|
+
share?: {
|
|
1214
|
+
url: string;
|
|
1215
|
+
};
|
|
1216
|
+
title: string;
|
|
1217
|
+
version: string;
|
|
1218
|
+
time: {
|
|
1219
|
+
created: number;
|
|
1220
|
+
updated: number;
|
|
1221
|
+
compacting?: number;
|
|
1222
|
+
archived?: number;
|
|
1223
|
+
};
|
|
1224
|
+
permission?: PermissionRuleset;
|
|
1225
|
+
revert?: {
|
|
1226
|
+
messageID: string;
|
|
1227
|
+
partID?: string;
|
|
1228
|
+
snapshot?: string;
|
|
1229
|
+
diff?: string;
|
|
1230
|
+
};
|
|
1231
|
+
project: ProjectSummary | null;
|
|
1232
|
+
};
|
|
1226
1233
|
type McpResource = {
|
|
1227
1234
|
name: string;
|
|
1228
1235
|
uri: string;
|
|
@@ -1274,9 +1281,44 @@ type SubtaskPartInput = {
|
|
|
1274
1281
|
};
|
|
1275
1282
|
command?: string;
|
|
1276
1283
|
};
|
|
1284
|
+
type ImagePartInput = {
|
|
1285
|
+
id?: string;
|
|
1286
|
+
type: 'image';
|
|
1287
|
+
image: string;
|
|
1288
|
+
};
|
|
1289
|
+
type ResourcePartInput = {
|
|
1290
|
+
id?: string;
|
|
1291
|
+
type: 'resource';
|
|
1292
|
+
resource: string;
|
|
1293
|
+
};
|
|
1277
1294
|
type ProviderAuthMethod = {
|
|
1278
1295
|
type: 'oauth' | 'api';
|
|
1279
1296
|
label: string;
|
|
1297
|
+
prompts?: Array<{
|
|
1298
|
+
type: 'text';
|
|
1299
|
+
key: string;
|
|
1300
|
+
message: string;
|
|
1301
|
+
placeholder?: string;
|
|
1302
|
+
when?: {
|
|
1303
|
+
key: string;
|
|
1304
|
+
op: 'eq' | 'neq';
|
|
1305
|
+
value: string;
|
|
1306
|
+
};
|
|
1307
|
+
} | {
|
|
1308
|
+
type: 'select';
|
|
1309
|
+
key: string;
|
|
1310
|
+
message: string;
|
|
1311
|
+
options: Array<{
|
|
1312
|
+
label: string;
|
|
1313
|
+
value: string;
|
|
1314
|
+
hint?: string;
|
|
1315
|
+
}>;
|
|
1316
|
+
when?: {
|
|
1317
|
+
key: string;
|
|
1318
|
+
op: 'eq' | 'neq';
|
|
1319
|
+
value: string;
|
|
1320
|
+
};
|
|
1321
|
+
}>;
|
|
1280
1322
|
};
|
|
1281
1323
|
type ProviderAuthAuthorization = {
|
|
1282
1324
|
url: string;
|
|
@@ -1351,7 +1393,7 @@ type Path$1 = {
|
|
|
1351
1393
|
directory: string;
|
|
1352
1394
|
};
|
|
1353
1395
|
type VcsInfo = {
|
|
1354
|
-
branch
|
|
1396
|
+
branch?: string;
|
|
1355
1397
|
};
|
|
1356
1398
|
type Command$1 = {
|
|
1357
1399
|
name: string;
|
|
@@ -1359,11 +1401,11 @@ type Command$1 = {
|
|
|
1359
1401
|
agent?: string;
|
|
1360
1402
|
model?: string;
|
|
1361
1403
|
source?: 'command' | 'mcp' | 'skill';
|
|
1362
|
-
template
|
|
1404
|
+
template?: string;
|
|
1363
1405
|
subtask?: boolean;
|
|
1364
|
-
hints
|
|
1406
|
+
hints?: Array<string>;
|
|
1365
1407
|
};
|
|
1366
|
-
type Agent = {
|
|
1408
|
+
type Agent$1 = {
|
|
1367
1409
|
name: string;
|
|
1368
1410
|
description?: string;
|
|
1369
1411
|
mode: 'subagent' | 'primary' | 'all';
|
|
@@ -1418,6 +1460,35 @@ type GlobalEventResponses = {
|
|
|
1418
1460
|
200: GlobalEvent;
|
|
1419
1461
|
};
|
|
1420
1462
|
type GlobalEventResponse = GlobalEventResponses[keyof GlobalEventResponses];
|
|
1463
|
+
type SessionEventData = {
|
|
1464
|
+
body?: never;
|
|
1465
|
+
path: {
|
|
1466
|
+
sessionID: string;
|
|
1467
|
+
};
|
|
1468
|
+
query?: {
|
|
1469
|
+
directory?: string;
|
|
1470
|
+
};
|
|
1471
|
+
url: '/session/{sessionID}/event';
|
|
1472
|
+
};
|
|
1473
|
+
type SessionEventResponses = {
|
|
1474
|
+
200: SessionEvent;
|
|
1475
|
+
};
|
|
1476
|
+
type SessionEventResponse = SessionEventResponses[keyof SessionEventResponses];
|
|
1477
|
+
type MessageEventData = {
|
|
1478
|
+
body?: never;
|
|
1479
|
+
path: {
|
|
1480
|
+
sessionID: string;
|
|
1481
|
+
messageID: string;
|
|
1482
|
+
};
|
|
1483
|
+
query?: {
|
|
1484
|
+
directory?: string;
|
|
1485
|
+
};
|
|
1486
|
+
url: '/session/{sessionID}/message/{messageID}/event';
|
|
1487
|
+
};
|
|
1488
|
+
type MessageEventResponses = {
|
|
1489
|
+
200: MessageEvent;
|
|
1490
|
+
};
|
|
1491
|
+
type MessageEventResponse = MessageEventResponses[keyof MessageEventResponses];
|
|
1421
1492
|
type GlobalConfigGetData = {
|
|
1422
1493
|
body?: never;
|
|
1423
1494
|
path?: never;
|
|
@@ -1508,6 +1579,19 @@ type ProjectCurrentResponses = {
|
|
|
1508
1579
|
200: Project$1;
|
|
1509
1580
|
};
|
|
1510
1581
|
type ProjectCurrentResponse = ProjectCurrentResponses[keyof ProjectCurrentResponses];
|
|
1582
|
+
type ProjectInitGitData = {
|
|
1583
|
+
body?: never;
|
|
1584
|
+
path?: never;
|
|
1585
|
+
query?: {
|
|
1586
|
+
directory?: string;
|
|
1587
|
+
workspace?: string;
|
|
1588
|
+
};
|
|
1589
|
+
url: '/project/git/init';
|
|
1590
|
+
};
|
|
1591
|
+
type ProjectInitGitResponses = {
|
|
1592
|
+
200: Project$1;
|
|
1593
|
+
};
|
|
1594
|
+
type ProjectInitGitResponse = ProjectInitGitResponses[keyof ProjectInitGitResponses];
|
|
1511
1595
|
type ProjectUpdateData = {
|
|
1512
1596
|
body?: {
|
|
1513
1597
|
name?: string;
|
|
@@ -1827,6 +1911,24 @@ type WorktreeResetResponses = {
|
|
|
1827
1911
|
200: boolean;
|
|
1828
1912
|
};
|
|
1829
1913
|
type WorktreeResetResponse = WorktreeResetResponses[keyof WorktreeResetResponses];
|
|
1914
|
+
type ExperimentalSessionListData = {
|
|
1915
|
+
body?: never;
|
|
1916
|
+
path?: never;
|
|
1917
|
+
query?: {
|
|
1918
|
+
directory?: string;
|
|
1919
|
+
roots?: boolean;
|
|
1920
|
+
start?: number;
|
|
1921
|
+
cursor?: number;
|
|
1922
|
+
search?: string;
|
|
1923
|
+
limit?: number;
|
|
1924
|
+
archived?: boolean;
|
|
1925
|
+
};
|
|
1926
|
+
url: '/experimental/session';
|
|
1927
|
+
};
|
|
1928
|
+
type ExperimentalSessionListResponses = {
|
|
1929
|
+
200: Array<GlobalSession>;
|
|
1930
|
+
};
|
|
1931
|
+
type ExperimentalSessionListResponse = ExperimentalSessionListResponses[keyof ExperimentalSessionListResponses];
|
|
1830
1932
|
type ExperimentalResourceListData = {
|
|
1831
1933
|
body?: never;
|
|
1832
1934
|
path?: never;
|
|
@@ -2147,7 +2249,7 @@ type SessionMessagesErrors = {
|
|
|
2147
2249
|
type SessionMessagesError = SessionMessagesErrors[keyof SessionMessagesErrors];
|
|
2148
2250
|
type SessionMessagesResponses = {
|
|
2149
2251
|
200: Array<{
|
|
2150
|
-
info: Message;
|
|
2252
|
+
info: Message$1;
|
|
2151
2253
|
parts: Array<Part$1>;
|
|
2152
2254
|
}>;
|
|
2153
2255
|
};
|
|
@@ -2164,6 +2266,7 @@ type SessionPromptData = {
|
|
|
2164
2266
|
tools?: {
|
|
2165
2267
|
[key: string]: boolean;
|
|
2166
2268
|
};
|
|
2269
|
+
format?: OutputFormat;
|
|
2167
2270
|
system?: string;
|
|
2168
2271
|
variant?: string;
|
|
2169
2272
|
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>;
|
|
@@ -2183,11 +2286,38 @@ type SessionPromptErrors = {
|
|
|
2183
2286
|
type SessionPromptError = SessionPromptErrors[keyof SessionPromptErrors];
|
|
2184
2287
|
type SessionPromptResponses = {
|
|
2185
2288
|
200: {
|
|
2186
|
-
info
|
|
2187
|
-
parts
|
|
2289
|
+
info?: AssistantMessage;
|
|
2290
|
+
parts?: Array<Part$1>;
|
|
2291
|
+
title: string;
|
|
2292
|
+
metadata: {
|
|
2293
|
+
[key: string]: unknown;
|
|
2294
|
+
};
|
|
2295
|
+
output: string;
|
|
2296
|
+
success: boolean;
|
|
2297
|
+
error?: string;
|
|
2188
2298
|
};
|
|
2189
2299
|
};
|
|
2190
2300
|
type SessionPromptResponse = SessionPromptResponses[keyof SessionPromptResponses];
|
|
2301
|
+
type SessionDeleteMessageData = {
|
|
2302
|
+
body?: never;
|
|
2303
|
+
path: {
|
|
2304
|
+
sessionID: string;
|
|
2305
|
+
messageID: string;
|
|
2306
|
+
};
|
|
2307
|
+
query?: {
|
|
2308
|
+
directory?: string;
|
|
2309
|
+
};
|
|
2310
|
+
url: '/session/{sessionID}/message/{messageID}';
|
|
2311
|
+
};
|
|
2312
|
+
type SessionDeleteMessageErrors = {
|
|
2313
|
+
400: BadRequestError;
|
|
2314
|
+
404: NotFoundError;
|
|
2315
|
+
};
|
|
2316
|
+
type SessionDeleteMessageError = SessionDeleteMessageErrors[keyof SessionDeleteMessageErrors];
|
|
2317
|
+
type SessionDeleteMessageResponses = {
|
|
2318
|
+
200: boolean;
|
|
2319
|
+
};
|
|
2320
|
+
type SessionDeleteMessageResponse = SessionDeleteMessageResponses[keyof SessionDeleteMessageResponses];
|
|
2191
2321
|
type SessionMessageData = {
|
|
2192
2322
|
body?: never;
|
|
2193
2323
|
path: {
|
|
@@ -2206,7 +2336,7 @@ type SessionMessageErrors = {
|
|
|
2206
2336
|
type SessionMessageError = SessionMessageErrors[keyof SessionMessageErrors];
|
|
2207
2337
|
type SessionMessageResponses = {
|
|
2208
2338
|
200: {
|
|
2209
|
-
info: Message;
|
|
2339
|
+
info: Message$1;
|
|
2210
2340
|
parts: Array<Part$1>;
|
|
2211
2341
|
};
|
|
2212
2342
|
};
|
|
@@ -2294,14 +2424,7 @@ type SessionCommandData = {
|
|
|
2294
2424
|
arguments: string;
|
|
2295
2425
|
command: string;
|
|
2296
2426
|
variant?: string;
|
|
2297
|
-
parts?: Array<
|
|
2298
|
-
id?: string;
|
|
2299
|
-
type: 'file';
|
|
2300
|
-
mime: string;
|
|
2301
|
-
filename?: string;
|
|
2302
|
-
url: string;
|
|
2303
|
-
source?: FilePartSource;
|
|
2304
|
-
}>;
|
|
2427
|
+
parts?: Array<TextPartInput | ImagePartInput | FilePartInput | ResourcePartInput>;
|
|
2305
2428
|
};
|
|
2306
2429
|
path: {
|
|
2307
2430
|
sessionID: string;
|
|
@@ -2318,8 +2441,15 @@ type SessionCommandErrors = {
|
|
|
2318
2441
|
type SessionCommandError = SessionCommandErrors[keyof SessionCommandErrors];
|
|
2319
2442
|
type SessionCommandResponses = {
|
|
2320
2443
|
200: {
|
|
2321
|
-
info
|
|
2322
|
-
parts
|
|
2444
|
+
info?: AssistantMessage;
|
|
2445
|
+
parts?: Array<Part$1>;
|
|
2446
|
+
title: string;
|
|
2447
|
+
metadata: {
|
|
2448
|
+
[key: string]: unknown;
|
|
2449
|
+
};
|
|
2450
|
+
output: string;
|
|
2451
|
+
success: boolean;
|
|
2452
|
+
error?: string;
|
|
2323
2453
|
};
|
|
2324
2454
|
};
|
|
2325
2455
|
type SessionCommandResponse = SessionCommandResponses[keyof SessionCommandResponses];
|
|
@@ -3136,9 +3266,94 @@ type AppAgentsData = {
|
|
|
3136
3266
|
url: '/agent';
|
|
3137
3267
|
};
|
|
3138
3268
|
type AppAgentsResponses = {
|
|
3139
|
-
200: Array<Agent>;
|
|
3269
|
+
200: Array<Agent$1>;
|
|
3140
3270
|
};
|
|
3141
3271
|
type AppAgentsResponse = AppAgentsResponses[keyof AppAgentsResponses];
|
|
3272
|
+
type AgentCreateData = {
|
|
3273
|
+
body: {
|
|
3274
|
+
name: string;
|
|
3275
|
+
mode?: 'subagent' | 'primary' | 'all';
|
|
3276
|
+
permission?: {
|
|
3277
|
+
[key: string]: unknown;
|
|
3278
|
+
};
|
|
3279
|
+
description?: string;
|
|
3280
|
+
prompt?: string;
|
|
3281
|
+
model?: {
|
|
3282
|
+
providerID?: string;
|
|
3283
|
+
modelID?: string;
|
|
3284
|
+
};
|
|
3285
|
+
temperature?: number;
|
|
3286
|
+
topP?: number;
|
|
3287
|
+
color?: string;
|
|
3288
|
+
hidden?: boolean;
|
|
3289
|
+
variant?: string;
|
|
3290
|
+
steps?: number;
|
|
3291
|
+
options?: {
|
|
3292
|
+
[key: string]: unknown;
|
|
3293
|
+
};
|
|
3294
|
+
};
|
|
3295
|
+
path?: never;
|
|
3296
|
+
query?: {
|
|
3297
|
+
directory?: string;
|
|
3298
|
+
};
|
|
3299
|
+
url: '/agent';
|
|
3300
|
+
};
|
|
3301
|
+
type AgentCreateErrors = {
|
|
3302
|
+
400: BadRequestError;
|
|
3303
|
+
};
|
|
3304
|
+
type AgentCreateError = AgentCreateErrors[keyof AgentCreateErrors];
|
|
3305
|
+
type AgentCreateResponses = {
|
|
3306
|
+
201: Agent$1;
|
|
3307
|
+
};
|
|
3308
|
+
type AgentCreateResponse = AgentCreateResponses[keyof AgentCreateResponses];
|
|
3309
|
+
type AgentGetData = {
|
|
3310
|
+
body?: never;
|
|
3311
|
+
path: {
|
|
3312
|
+
agentID: string;
|
|
3313
|
+
};
|
|
3314
|
+
query?: {
|
|
3315
|
+
directory?: string;
|
|
3316
|
+
};
|
|
3317
|
+
url: '/agent/{agentID}';
|
|
3318
|
+
};
|
|
3319
|
+
type AgentGetErrors = {
|
|
3320
|
+
404: NotFoundError;
|
|
3321
|
+
};
|
|
3322
|
+
type AgentGetError = AgentGetErrors[keyof AgentGetErrors];
|
|
3323
|
+
type AgentGetResponses = {
|
|
3324
|
+
200: Agent$1;
|
|
3325
|
+
};
|
|
3326
|
+
type AgentGetResponse = AgentGetResponses[keyof AgentGetResponses];
|
|
3327
|
+
type AgentEventData = {
|
|
3328
|
+
body?: never;
|
|
3329
|
+
path: {
|
|
3330
|
+
agentID: string;
|
|
3331
|
+
};
|
|
3332
|
+
query?: {
|
|
3333
|
+
directory?: string;
|
|
3334
|
+
};
|
|
3335
|
+
url: '/agent/{agentID}/event';
|
|
3336
|
+
};
|
|
3337
|
+
type AgentEventResponses = {
|
|
3338
|
+
200: AgentEvent;
|
|
3339
|
+
};
|
|
3340
|
+
type AgentEventResponse = AgentEventResponses[keyof AgentEventResponses];
|
|
3341
|
+
type AgentDefaultData = {
|
|
3342
|
+
body?: never;
|
|
3343
|
+
path?: never;
|
|
3344
|
+
query?: {
|
|
3345
|
+
directory?: string;
|
|
3346
|
+
};
|
|
3347
|
+
url: '/agent/default';
|
|
3348
|
+
};
|
|
3349
|
+
type AgentDefaultErrors = {
|
|
3350
|
+
404: NotFoundError;
|
|
3351
|
+
};
|
|
3352
|
+
type AgentDefaultError = AgentDefaultErrors[keyof AgentDefaultErrors];
|
|
3353
|
+
type AgentDefaultResponses = {
|
|
3354
|
+
200: Agent$1;
|
|
3355
|
+
};
|
|
3356
|
+
type AgentDefaultResponse = AgentDefaultResponses[keyof AgentDefaultResponses];
|
|
3142
3357
|
type AppSkillsData = {
|
|
3143
3358
|
body?: never;
|
|
3144
3359
|
path?: never;
|
|
@@ -3192,6 +3407,18 @@ type EventSubscribeResponses = {
|
|
|
3192
3407
|
200: Event;
|
|
3193
3408
|
};
|
|
3194
3409
|
type EventSubscribeResponse = EventSubscribeResponses[keyof EventSubscribeResponses];
|
|
3410
|
+
type EventPublishData = {
|
|
3411
|
+
body: Event;
|
|
3412
|
+
path?: never;
|
|
3413
|
+
query?: {
|
|
3414
|
+
directory?: string;
|
|
3415
|
+
};
|
|
3416
|
+
url: '/event';
|
|
3417
|
+
};
|
|
3418
|
+
type EventPublishResponses = {
|
|
3419
|
+
200: boolean;
|
|
3420
|
+
};
|
|
3421
|
+
type EventPublishResponse = EventPublishResponses[keyof EventPublishResponses];
|
|
3195
3422
|
|
|
3196
3423
|
type AuthToken = string | undefined;
|
|
3197
3424
|
interface Auth$1 {
|
|
@@ -3377,128 +3604,11 @@ declare class Global extends HeyApiClient {
|
|
|
3377
3604
|
private _config?;
|
|
3378
3605
|
get config(): Config;
|
|
3379
3606
|
}
|
|
3380
|
-
declare class Auth extends HeyApiClient {
|
|
3381
|
-
remove<ThrowOnError extends boolean = false>(parameters: {
|
|
3382
|
-
providerID: string;
|
|
3383
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<AuthRemoveResponses, AuthRemoveErrors, ThrowOnError, "fields">;
|
|
3384
|
-
set<ThrowOnError extends boolean = false>(parameters: {
|
|
3385
|
-
providerID: string;
|
|
3386
|
-
auth?: Auth$2;
|
|
3387
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<AuthSetResponses, AuthSetErrors, ThrowOnError, "fields">;
|
|
3388
|
-
}
|
|
3389
|
-
declare class Project extends HeyApiClient {
|
|
3390
|
-
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3391
|
-
directory?: string;
|
|
3392
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectListResponses, unknown, ThrowOnError, "fields">;
|
|
3393
|
-
current<ThrowOnError extends boolean = false>(parameters?: {
|
|
3394
|
-
directory?: string;
|
|
3395
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectCurrentResponses, unknown, ThrowOnError, "fields">;
|
|
3396
|
-
update<ThrowOnError extends boolean = false>(parameters: {
|
|
3397
|
-
projectID: string;
|
|
3398
|
-
directory?: string;
|
|
3399
|
-
name?: string;
|
|
3400
|
-
icon?: {
|
|
3401
|
-
url?: string;
|
|
3402
|
-
override?: string;
|
|
3403
|
-
color?: string;
|
|
3404
|
-
};
|
|
3405
|
-
commands?: {
|
|
3406
|
-
start?: string;
|
|
3407
|
-
};
|
|
3408
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectUpdateResponses, ProjectUpdateErrors, ThrowOnError, "fields">;
|
|
3409
|
-
}
|
|
3410
|
-
declare class Pty extends HeyApiClient {
|
|
3411
|
-
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3412
|
-
directory?: string;
|
|
3413
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<PtyListResponses, unknown, ThrowOnError, "fields">;
|
|
3414
|
-
create<ThrowOnError extends boolean = false>(parameters?: {
|
|
3415
|
-
directory?: string;
|
|
3416
|
-
command?: string;
|
|
3417
|
-
args?: Array<string>;
|
|
3418
|
-
cwd?: string;
|
|
3419
|
-
title?: string;
|
|
3420
|
-
env?: {
|
|
3421
|
-
[key: string]: string;
|
|
3422
|
-
};
|
|
3423
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<PtyCreateResponses, PtyCreateErrors, ThrowOnError, "fields">;
|
|
3424
|
-
remove<ThrowOnError extends boolean = false>(parameters: {
|
|
3425
|
-
ptyID: string;
|
|
3426
|
-
directory?: string;
|
|
3427
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<PtyRemoveResponses, PtyRemoveErrors, ThrowOnError, "fields">;
|
|
3428
|
-
get<ThrowOnError extends boolean = false>(parameters: {
|
|
3429
|
-
ptyID: string;
|
|
3430
|
-
directory?: string;
|
|
3431
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<PtyGetResponses, PtyGetErrors, ThrowOnError, "fields">;
|
|
3432
|
-
update<ThrowOnError extends boolean = false>(parameters: {
|
|
3433
|
-
ptyID: string;
|
|
3434
|
-
directory?: string;
|
|
3435
|
-
title?: string;
|
|
3436
|
-
size?: {
|
|
3437
|
-
rows: number;
|
|
3438
|
-
cols: number;
|
|
3439
|
-
};
|
|
3440
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<PtyUpdateResponses, PtyUpdateErrors, ThrowOnError, "fields">;
|
|
3441
|
-
connect<ThrowOnError extends boolean = false>(parameters: {
|
|
3442
|
-
ptyID: string;
|
|
3443
|
-
directory?: string;
|
|
3444
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<PtyConnectResponses, PtyConnectErrors, ThrowOnError, "fields">;
|
|
3445
|
-
}
|
|
3446
|
-
declare class Config2 extends HeyApiClient {
|
|
3447
|
-
get<ThrowOnError extends boolean = false>(parameters?: {
|
|
3448
|
-
directory?: string;
|
|
3449
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ConfigGetResponses, unknown, ThrowOnError, "fields">;
|
|
3450
|
-
update<ThrowOnError extends boolean = false>(parameters?: {
|
|
3451
|
-
directory?: string;
|
|
3452
|
-
config?: Config$3;
|
|
3453
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ConfigUpdateResponses, ConfigUpdateErrors, ThrowOnError, "fields">;
|
|
3454
|
-
providers<ThrowOnError extends boolean = false>(parameters?: {
|
|
3455
|
-
directory?: string;
|
|
3456
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ConfigProvidersResponses, unknown, ThrowOnError, "fields">;
|
|
3457
|
-
}
|
|
3458
|
-
declare class Model extends HeyApiClient {
|
|
3459
|
-
default<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): RequestResult<ModelDefaultResponses, ModelDefaultErrors, ThrowOnError, "fields">;
|
|
3460
|
-
parse<ThrowOnError extends boolean = false>(parameters: {
|
|
3461
|
-
model: string;
|
|
3462
|
-
directory?: string;
|
|
3463
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ModelParseResponses, ModelParseErrors, ThrowOnError, "fields">;
|
|
3464
|
-
}
|
|
3465
|
-
declare class Tool extends HeyApiClient {
|
|
3466
|
-
ids<ThrowOnError extends boolean = false>(parameters?: {
|
|
3467
|
-
directory?: string;
|
|
3468
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ToolIdsResponses, ToolIdsErrors, ThrowOnError, "fields">;
|
|
3469
|
-
list<ThrowOnError extends boolean = false>(parameters: {
|
|
3470
|
-
directory?: string;
|
|
3471
|
-
provider: string;
|
|
3472
|
-
model: string;
|
|
3473
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ToolListResponses, ToolListErrors, ThrowOnError, "fields">;
|
|
3474
|
-
}
|
|
3475
|
-
declare class Worktree extends HeyApiClient {
|
|
3476
|
-
remove<ThrowOnError extends boolean = false>(parameters?: {
|
|
3477
|
-
directory?: string;
|
|
3478
|
-
worktreeRemoveInput?: WorktreeRemoveInput;
|
|
3479
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeRemoveResponses, WorktreeRemoveErrors, ThrowOnError, "fields">;
|
|
3480
|
-
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3481
|
-
directory?: string;
|
|
3482
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeListResponses, unknown, ThrowOnError, "fields">;
|
|
3483
|
-
create<ThrowOnError extends boolean = false>(parameters?: {
|
|
3484
|
-
directory?: string;
|
|
3485
|
-
worktreeCreateInput?: WorktreeCreateInput;
|
|
3486
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeCreateResponses, WorktreeCreateErrors, ThrowOnError, "fields">;
|
|
3487
|
-
reset<ThrowOnError extends boolean = false>(parameters?: {
|
|
3488
|
-
directory?: string;
|
|
3489
|
-
worktreeResetInput?: WorktreeResetInput;
|
|
3490
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeResetResponses, WorktreeResetErrors, ThrowOnError, "fields">;
|
|
3491
|
-
}
|
|
3492
|
-
declare class Resource extends HeyApiClient {
|
|
3493
|
-
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3494
|
-
directory?: string;
|
|
3495
|
-
}, options?: Options<never, ThrowOnError>): RequestResult<ExperimentalResourceListResponses, unknown, ThrowOnError, "fields">;
|
|
3496
|
-
}
|
|
3497
|
-
declare class Experimental extends HeyApiClient {
|
|
3498
|
-
private _resource?;
|
|
3499
|
-
get resource(): Resource;
|
|
3500
|
-
}
|
|
3501
3607
|
declare class Session extends HeyApiClient {
|
|
3608
|
+
event<ThrowOnError extends boolean = false>(parameters: {
|
|
3609
|
+
sessionID: string;
|
|
3610
|
+
directory?: string;
|
|
3611
|
+
}, options?: Options<never, ThrowOnError>): Promise<ServerSentEventsResult<SessionEventResponses, unknown>>;
|
|
3502
3612
|
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3503
3613
|
directory?: string;
|
|
3504
3614
|
roots?: boolean;
|
|
@@ -3593,10 +3703,16 @@ declare class Session extends HeyApiClient {
|
|
|
3593
3703
|
tools?: {
|
|
3594
3704
|
[key: string]: boolean;
|
|
3595
3705
|
};
|
|
3706
|
+
format?: OutputFormat;
|
|
3596
3707
|
system?: string;
|
|
3597
3708
|
variant?: string;
|
|
3598
3709
|
parts: Array<TextPartInput | FilePartInput | AgentPartInput | SubtaskPartInput>;
|
|
3599
3710
|
}, options?: Options<never, ThrowOnError>): RequestResult<SessionPromptResponses, SessionPromptErrors, ThrowOnError, "fields">;
|
|
3711
|
+
deleteMessage<ThrowOnError extends boolean = false>(parameters: {
|
|
3712
|
+
sessionID: string;
|
|
3713
|
+
messageID: string;
|
|
3714
|
+
directory?: string;
|
|
3715
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<SessionDeleteMessageResponses, SessionDeleteMessageErrors, ThrowOnError, "fields">;
|
|
3600
3716
|
message<ThrowOnError extends boolean = false>(parameters: {
|
|
3601
3717
|
sessionID: string;
|
|
3602
3718
|
messageID: string;
|
|
@@ -3628,14 +3744,7 @@ declare class Session extends HeyApiClient {
|
|
|
3628
3744
|
arguments: string;
|
|
3629
3745
|
command: string;
|
|
3630
3746
|
variant?: string;
|
|
3631
|
-
parts?: Array<
|
|
3632
|
-
id?: string;
|
|
3633
|
-
type: 'file';
|
|
3634
|
-
mime: string;
|
|
3635
|
-
filename?: string;
|
|
3636
|
-
url: string;
|
|
3637
|
-
source?: FilePartSource;
|
|
3638
|
-
}>;
|
|
3747
|
+
parts?: Array<TextPartInput | ImagePartInput | FilePartInput | ResourcePartInput>;
|
|
3639
3748
|
}, options?: Options<never, ThrowOnError>): RequestResult<SessionCommandResponses, SessionCommandErrors, ThrowOnError, "fields">;
|
|
3640
3749
|
shell<ThrowOnError extends boolean = false>(parameters: {
|
|
3641
3750
|
sessionID: string;
|
|
@@ -3658,6 +3767,151 @@ declare class Session extends HeyApiClient {
|
|
|
3658
3767
|
directory?: string;
|
|
3659
3768
|
}, options?: Options<never, ThrowOnError>): RequestResult<SessionUnrevertResponses, SessionUnrevertErrors, ThrowOnError, "fields">;
|
|
3660
3769
|
}
|
|
3770
|
+
declare class Message extends HeyApiClient {
|
|
3771
|
+
event<ThrowOnError extends boolean = false>(parameters: {
|
|
3772
|
+
sessionID: string;
|
|
3773
|
+
messageID: string;
|
|
3774
|
+
directory?: string;
|
|
3775
|
+
}, options?: Options<never, ThrowOnError>): Promise<ServerSentEventsResult<MessageEventResponses, unknown>>;
|
|
3776
|
+
}
|
|
3777
|
+
declare class Auth extends HeyApiClient {
|
|
3778
|
+
remove<ThrowOnError extends boolean = false>(parameters: {
|
|
3779
|
+
providerID: string;
|
|
3780
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<AuthRemoveResponses, AuthRemoveErrors, ThrowOnError, "fields">;
|
|
3781
|
+
set<ThrowOnError extends boolean = false>(parameters: {
|
|
3782
|
+
providerID: string;
|
|
3783
|
+
auth?: Auth$2;
|
|
3784
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<AuthSetResponses, AuthSetErrors, ThrowOnError, "fields">;
|
|
3785
|
+
}
|
|
3786
|
+
declare class Project extends HeyApiClient {
|
|
3787
|
+
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3788
|
+
directory?: string;
|
|
3789
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectListResponses, unknown, ThrowOnError, "fields">;
|
|
3790
|
+
current<ThrowOnError extends boolean = false>(parameters?: {
|
|
3791
|
+
directory?: string;
|
|
3792
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectCurrentResponses, unknown, ThrowOnError, "fields">;
|
|
3793
|
+
initGit<ThrowOnError extends boolean = false>(parameters?: {
|
|
3794
|
+
directory?: string;
|
|
3795
|
+
workspace?: string;
|
|
3796
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectInitGitResponses, unknown, ThrowOnError, "fields">;
|
|
3797
|
+
update<ThrowOnError extends boolean = false>(parameters: {
|
|
3798
|
+
projectID: string;
|
|
3799
|
+
directory?: string;
|
|
3800
|
+
name?: string;
|
|
3801
|
+
icon?: {
|
|
3802
|
+
url?: string;
|
|
3803
|
+
override?: string;
|
|
3804
|
+
color?: string;
|
|
3805
|
+
};
|
|
3806
|
+
commands?: {
|
|
3807
|
+
start?: string;
|
|
3808
|
+
};
|
|
3809
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ProjectUpdateResponses, ProjectUpdateErrors, ThrowOnError, "fields">;
|
|
3810
|
+
}
|
|
3811
|
+
declare class Pty extends HeyApiClient {
|
|
3812
|
+
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3813
|
+
directory?: string;
|
|
3814
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<PtyListResponses, unknown, ThrowOnError, "fields">;
|
|
3815
|
+
create<ThrowOnError extends boolean = false>(parameters?: {
|
|
3816
|
+
directory?: string;
|
|
3817
|
+
command?: string;
|
|
3818
|
+
args?: Array<string>;
|
|
3819
|
+
cwd?: string;
|
|
3820
|
+
title?: string;
|
|
3821
|
+
env?: {
|
|
3822
|
+
[key: string]: string;
|
|
3823
|
+
};
|
|
3824
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<PtyCreateResponses, PtyCreateErrors, ThrowOnError, "fields">;
|
|
3825
|
+
remove<ThrowOnError extends boolean = false>(parameters: {
|
|
3826
|
+
ptyID: string;
|
|
3827
|
+
directory?: string;
|
|
3828
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<PtyRemoveResponses, PtyRemoveErrors, ThrowOnError, "fields">;
|
|
3829
|
+
get<ThrowOnError extends boolean = false>(parameters: {
|
|
3830
|
+
ptyID: string;
|
|
3831
|
+
directory?: string;
|
|
3832
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<PtyGetResponses, PtyGetErrors, ThrowOnError, "fields">;
|
|
3833
|
+
update<ThrowOnError extends boolean = false>(parameters: {
|
|
3834
|
+
ptyID: string;
|
|
3835
|
+
directory?: string;
|
|
3836
|
+
title?: string;
|
|
3837
|
+
size?: {
|
|
3838
|
+
rows: number;
|
|
3839
|
+
cols: number;
|
|
3840
|
+
};
|
|
3841
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<PtyUpdateResponses, PtyUpdateErrors, ThrowOnError, "fields">;
|
|
3842
|
+
connect<ThrowOnError extends boolean = false>(parameters: {
|
|
3843
|
+
ptyID: string;
|
|
3844
|
+
directory?: string;
|
|
3845
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<PtyConnectResponses, PtyConnectErrors, ThrowOnError, "fields">;
|
|
3846
|
+
}
|
|
3847
|
+
declare class Config2 extends HeyApiClient {
|
|
3848
|
+
get<ThrowOnError extends boolean = false>(parameters?: {
|
|
3849
|
+
directory?: string;
|
|
3850
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ConfigGetResponses, unknown, ThrowOnError, "fields">;
|
|
3851
|
+
update<ThrowOnError extends boolean = false>(parameters?: {
|
|
3852
|
+
directory?: string;
|
|
3853
|
+
config?: Config$3;
|
|
3854
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ConfigUpdateResponses, ConfigUpdateErrors, ThrowOnError, "fields">;
|
|
3855
|
+
providers<ThrowOnError extends boolean = false>(parameters?: {
|
|
3856
|
+
directory?: string;
|
|
3857
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ConfigProvidersResponses, unknown, ThrowOnError, "fields">;
|
|
3858
|
+
}
|
|
3859
|
+
declare class Model extends HeyApiClient {
|
|
3860
|
+
default<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): RequestResult<ModelDefaultResponses, ModelDefaultErrors, ThrowOnError, "fields">;
|
|
3861
|
+
parse<ThrowOnError extends boolean = false>(parameters: {
|
|
3862
|
+
model: string;
|
|
3863
|
+
directory?: string;
|
|
3864
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ModelParseResponses, ModelParseErrors, ThrowOnError, "fields">;
|
|
3865
|
+
}
|
|
3866
|
+
declare class Tool extends HeyApiClient {
|
|
3867
|
+
ids<ThrowOnError extends boolean = false>(parameters?: {
|
|
3868
|
+
directory?: string;
|
|
3869
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ToolIdsResponses, ToolIdsErrors, ThrowOnError, "fields">;
|
|
3870
|
+
list<ThrowOnError extends boolean = false>(parameters: {
|
|
3871
|
+
directory?: string;
|
|
3872
|
+
provider: string;
|
|
3873
|
+
model: string;
|
|
3874
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ToolListResponses, ToolListErrors, ThrowOnError, "fields">;
|
|
3875
|
+
}
|
|
3876
|
+
declare class Worktree extends HeyApiClient {
|
|
3877
|
+
remove<ThrowOnError extends boolean = false>(parameters?: {
|
|
3878
|
+
directory?: string;
|
|
3879
|
+
worktreeRemoveInput?: WorktreeRemoveInput;
|
|
3880
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeRemoveResponses, WorktreeRemoveErrors, ThrowOnError, "fields">;
|
|
3881
|
+
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3882
|
+
directory?: string;
|
|
3883
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeListResponses, unknown, ThrowOnError, "fields">;
|
|
3884
|
+
create<ThrowOnError extends boolean = false>(parameters?: {
|
|
3885
|
+
directory?: string;
|
|
3886
|
+
worktreeCreateInput?: WorktreeCreateInput;
|
|
3887
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeCreateResponses, WorktreeCreateErrors, ThrowOnError, "fields">;
|
|
3888
|
+
reset<ThrowOnError extends boolean = false>(parameters?: {
|
|
3889
|
+
directory?: string;
|
|
3890
|
+
worktreeResetInput?: WorktreeResetInput;
|
|
3891
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<WorktreeResetResponses, WorktreeResetErrors, ThrowOnError, "fields">;
|
|
3892
|
+
}
|
|
3893
|
+
declare class Session2 extends HeyApiClient {
|
|
3894
|
+
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3895
|
+
directory?: string;
|
|
3896
|
+
roots?: boolean;
|
|
3897
|
+
start?: number;
|
|
3898
|
+
cursor?: number;
|
|
3899
|
+
search?: string;
|
|
3900
|
+
limit?: number;
|
|
3901
|
+
archived?: boolean;
|
|
3902
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ExperimentalSessionListResponses, unknown, ThrowOnError, "fields">;
|
|
3903
|
+
}
|
|
3904
|
+
declare class Resource extends HeyApiClient {
|
|
3905
|
+
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
3906
|
+
directory?: string;
|
|
3907
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<ExperimentalResourceListResponses, unknown, ThrowOnError, "fields">;
|
|
3908
|
+
}
|
|
3909
|
+
declare class Experimental extends HeyApiClient {
|
|
3910
|
+
private _session?;
|
|
3911
|
+
get session(): Session2;
|
|
3912
|
+
private _resource?;
|
|
3913
|
+
get resource(): Resource;
|
|
3914
|
+
}
|
|
3661
3915
|
declare class Part extends HeyApiClient {
|
|
3662
3916
|
delete<ThrowOnError extends boolean = false>(parameters: {
|
|
3663
3917
|
sessionID: string;
|
|
@@ -3887,6 +4141,42 @@ declare class App extends HeyApiClient {
|
|
|
3887
4141
|
directory?: string;
|
|
3888
4142
|
}, options?: Options<never, ThrowOnError>): RequestResult<AppSkillsResponses, unknown, ThrowOnError, "fields">;
|
|
3889
4143
|
}
|
|
4144
|
+
declare class Agent extends HeyApiClient {
|
|
4145
|
+
create<ThrowOnError extends boolean = false>(parameters: {
|
|
4146
|
+
directory?: string;
|
|
4147
|
+
name: string;
|
|
4148
|
+
mode?: 'subagent' | 'primary' | 'all';
|
|
4149
|
+
permission?: {
|
|
4150
|
+
[key: string]: unknown;
|
|
4151
|
+
};
|
|
4152
|
+
description?: string;
|
|
4153
|
+
prompt?: string;
|
|
4154
|
+
model?: {
|
|
4155
|
+
providerID?: string;
|
|
4156
|
+
modelID?: string;
|
|
4157
|
+
};
|
|
4158
|
+
temperature?: number;
|
|
4159
|
+
topP?: number;
|
|
4160
|
+
color?: string;
|
|
4161
|
+
hidden?: boolean;
|
|
4162
|
+
variant?: string;
|
|
4163
|
+
steps?: number;
|
|
4164
|
+
options?: {
|
|
4165
|
+
[key: string]: unknown;
|
|
4166
|
+
};
|
|
4167
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<AgentCreateResponses, AgentCreateErrors, ThrowOnError, "fields">;
|
|
4168
|
+
get<ThrowOnError extends boolean = false>(parameters: {
|
|
4169
|
+
agentID: string;
|
|
4170
|
+
directory?: string;
|
|
4171
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<AgentGetResponses, AgentGetErrors, ThrowOnError, "fields">;
|
|
4172
|
+
event<ThrowOnError extends boolean = false>(parameters: {
|
|
4173
|
+
agentID: string;
|
|
4174
|
+
directory?: string;
|
|
4175
|
+
}, options?: Options<never, ThrowOnError>): Promise<ServerSentEventsResult<AgentEventResponses, unknown>>;
|
|
4176
|
+
default<ThrowOnError extends boolean = false>(parameters?: {
|
|
4177
|
+
directory?: string;
|
|
4178
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<AgentDefaultResponses, AgentDefaultErrors, ThrowOnError, "fields">;
|
|
4179
|
+
}
|
|
3890
4180
|
declare class Lsp extends HeyApiClient {
|
|
3891
4181
|
status<ThrowOnError extends boolean = false>(parameters?: {
|
|
3892
4182
|
directory?: string;
|
|
@@ -3901,6 +4191,10 @@ declare class Event_ extends HeyApiClient {
|
|
|
3901
4191
|
subscribe<ThrowOnError extends boolean = false>(parameters?: {
|
|
3902
4192
|
directory?: string;
|
|
3903
4193
|
}, options?: Options<never, ThrowOnError>): Promise<ServerSentEventsResult<EventSubscribeResponses, unknown>>;
|
|
4194
|
+
publish<ThrowOnError extends boolean = false>(parameters: {
|
|
4195
|
+
directory?: string;
|
|
4196
|
+
event: Event;
|
|
4197
|
+
}, options?: Options<never, ThrowOnError>): RequestResult<EventPublishResponses, unknown, ThrowOnError, "fields">;
|
|
3904
4198
|
}
|
|
3905
4199
|
declare class EasbotClient extends HeyApiClient {
|
|
3906
4200
|
static readonly __registry: HeyApiRegistry<EasbotClient>;
|
|
@@ -3910,6 +4204,10 @@ declare class EasbotClient extends HeyApiClient {
|
|
|
3910
4204
|
});
|
|
3911
4205
|
private _global?;
|
|
3912
4206
|
get global(): Global;
|
|
4207
|
+
private _session?;
|
|
4208
|
+
get session(): Session;
|
|
4209
|
+
private _message?;
|
|
4210
|
+
get message(): Message;
|
|
3913
4211
|
private _auth?;
|
|
3914
4212
|
get auth(): Auth;
|
|
3915
4213
|
private _project?;
|
|
@@ -3926,8 +4224,6 @@ declare class EasbotClient extends HeyApiClient {
|
|
|
3926
4224
|
get worktree(): Worktree;
|
|
3927
4225
|
private _experimental?;
|
|
3928
4226
|
get experimental(): Experimental;
|
|
3929
|
-
private _session?;
|
|
3930
|
-
get session(): Session;
|
|
3931
4227
|
private _part?;
|
|
3932
4228
|
get part(): Part;
|
|
3933
4229
|
private _permission?;
|
|
@@ -3954,6 +4250,8 @@ declare class EasbotClient extends HeyApiClient {
|
|
|
3954
4250
|
get command(): Command;
|
|
3955
4251
|
private _app?;
|
|
3956
4252
|
get app(): App;
|
|
4253
|
+
private _agent?;
|
|
4254
|
+
get agent(): Agent;
|
|
3957
4255
|
private _lsp?;
|
|
3958
4256
|
get lsp(): Lsp;
|
|
3959
4257
|
private _formatter?;
|
|
@@ -3997,4 +4295,4 @@ declare function createEascode(options?: ServerOptions): Promise<{
|
|
|
3997
4295
|
};
|
|
3998
4296
|
}>;
|
|
3999
4297
|
|
|
4000
|
-
export { type Agent, type AgentConfig, type AgentPart, type AgentPartInput, type ApiAuth, type ApiError, type AppAgentsData, type AppAgentsResponse, type AppAgentsResponses, type AppLogData, type AppLogError, type AppLogErrors, type AppLogResponse, type AppLogResponses, type AppSkillsData, type AppSkillsResponse, type AppSkillsResponses, type AssistantMessage, type Auth$2 as Auth, type AuthRemoveData, type AuthRemoveError, type AuthRemoveErrors, type AuthRemoveResponse, type AuthRemoveResponses, type AuthSetData, type AuthSetError, type AuthSetErrors, type AuthSetResponse, type AuthSetResponses, type BadRequestError, type ClientOptions$1 as ClientOptions, type Command$1 as Command, type CommandListData, type CommandListResponse, type CommandListResponses, type CompactionPart, type Config$3 as Config, type ConfigGetData, type ConfigGetResponse, type ConfigGetResponses, type ConfigProvidersData, type ConfigProvidersResponse, type ConfigProvidersResponses, type ConfigUpdateData, type ConfigUpdateError, type ConfigUpdateErrors, type ConfigUpdateResponse, type ConfigUpdateResponses, type ContextOverflowError, EasbotClient, type Config$1 as EasbotClientConfig, type Event, type EventCommandExecuted, type EventFileEdited, type EventFileWatcherUpdated, type EventGlobalDisposed, type EventInstallationUpdateAvailable, type EventInstallationUpdated, type EventLspClientDiagnostics, type EventLspUpdated, type EventMcpBrowserOpenFailed, type EventMcpToolsChanged, type EventMessagePartRemoved, type EventMessagePartUpdated, type EventMessageRemoved, type EventMessageUpdated, type EventPermissionAsked, type EventPermissionReplied, type EventProjectUpdated, type EventPtyCreated, type EventPtyDeleted, type EventPtyExited, type EventPtyUpdated, type EventQuestionAsked, type EventQuestionRejected, type EventQuestionReplied, type EventServerConnected, type EventServerInstanceDisposed, type EventSessionCompacted, type EventSessionCreated, type EventSessionDeleted, type EventSessionDiff, type EventSessionError, type EventSessionIdle, type EventSessionStatus, type EventSessionUpdated, type EventSubscribeData, type EventSubscribeResponse, type EventSubscribeResponses, type EventTodoUpdated, type EventTuiCommandExecute, type EventTuiPromptAppend, type EventTuiSessionSelect, type EventTuiToastShow, type EventVcsBranchUpdated, type EventWorktreeFailed, type EventWorktreeReady, type ExperimentalResourceListData, type ExperimentalResourceListResponse, type ExperimentalResourceListResponses, type File, type FileContent, type FileDiff, type FileListData, type FileListResponse, type FileListResponses, type FileNode, type FilePart, type FilePartInput, type FilePartSource, type FilePartSourceText, type FileReadData, type FileReadResponse, type FileReadResponses, type FileSource, type FileStatusData, type FileStatusResponse, type FileStatusResponses, type FindFilesData, type FindFilesResponse, type FindFilesResponses, type FindSymbolsData, type FindSymbolsResponse, type FindSymbolsResponses, type FindTextData, type FindTextResponse, type FindTextResponses, type FormatterStatus, type FormatterStatusData, type FormatterStatusResponse, type FormatterStatusResponses, type GlobalConfigGetData, type GlobalConfigGetResponse, type GlobalConfigGetResponses, type GlobalConfigUpdateData, type GlobalConfigUpdateError, type GlobalConfigUpdateErrors, type GlobalConfigUpdateResponse, type GlobalConfigUpdateResponses, type GlobalDisposeData, type GlobalDisposeResponse, type GlobalDisposeResponses, type GlobalEvent, type GlobalEventData, type GlobalEventResponse, type GlobalEventResponses, type GlobalHealthData, type GlobalHealthResponse, type GlobalHealthResponses, type InstanceDisposeData, type InstanceDisposeResponse, type InstanceDisposeResponses, type KeybindsConfig, type LayoutConfig, type LogLevel, type LspStatus, type LspStatusData, type LspStatusResponse, type LspStatusResponses, type McpAddData, type McpAddError, type McpAddErrors, type McpAddResponse, type McpAddResponses, type McpAuthAuthenticateData, type McpAuthAuthenticateError, type McpAuthAuthenticateErrors, type McpAuthAuthenticateResponse, type McpAuthAuthenticateResponses, type McpAuthCallbackData, type McpAuthCallbackError, type McpAuthCallbackErrors, type McpAuthCallbackResponse, type McpAuthCallbackResponses, type McpAuthRemoveData, type McpAuthRemoveError, type McpAuthRemoveErrors, type McpAuthRemoveResponse, type McpAuthRemoveResponses, type McpAuthStartData, type McpAuthStartError, type McpAuthStartErrors, type McpAuthStartResponse, type McpAuthStartResponses, type McpConnectData, type McpConnectResponse, type McpConnectResponses, type McpDisconnectData, type McpDisconnectResponse, type McpDisconnectResponses, type McpLocalConfig, type McpOAuthConfig, type McpRemoteConfig, type McpResource, type McpStatus, type McpStatusConnected, type McpStatusData, type McpStatusDisabled, type McpStatusFailed, type McpStatusNeedsAuth, type McpStatusNeedsClientRegistration, type McpStatusResponse, type McpStatusResponses, type Message, type MessageAbortedError, type MessageOutputLengthError, type Model$1 as Model, type ModelDefaultData, type ModelDefaultError, type ModelDefaultErrors, type ModelDefaultResponse, type ModelDefaultResponses, type ModelParseData, type ModelParseError, type ModelParseErrors, type ModelParseResponse, type ModelParseResponses, type NotFoundError, type OAuth, type Part$1 as Part, type PartDeleteData, type PartDeleteError, type PartDeleteErrors, type PartDeleteResponse, type PartDeleteResponses, type PartUpdateData, type PartUpdateError, type PartUpdateErrors, type PartUpdateResponse, type PartUpdateResponses, type PatchPart, type Path$1 as Path, type PathGetData, type PathGetResponse, type PathGetResponses, Permission, type PermissionAction, type PermissionActionConfig, type PermissionConfig, type PermissionListData, type PermissionListResponse, type PermissionListResponses, type PermissionObjectConfig, type PermissionReplyData, type PermissionReplyError, type PermissionReplyErrors, type PermissionReplyResponse, type PermissionReplyResponses, type PermissionRequest, type PermissionRespondData, type PermissionRespondError, type PermissionRespondErrors, type PermissionRespondResponse, type PermissionRespondResponses, type PermissionRule, type PermissionRuleConfig, type PermissionRuleset, type Project$1 as Project, type ProjectCurrentData, type ProjectCurrentResponse, type ProjectCurrentResponses, type ProjectListData, type ProjectListResponse, type ProjectListResponses, type ProjectUpdateData, type ProjectUpdateError, type ProjectUpdateErrors, type ProjectUpdateResponse, type ProjectUpdateResponses, type Provider$1 as Provider, type ProviderAuthAuthorization, type ProviderAuthData, type ProviderAuthError, type ProviderAuthMethod, type ProviderAuthResponse, type ProviderAuthResponses, type ProviderConfig, type ProviderListData, type ProviderListResponse, type ProviderListResponses, type ProviderOauthAuthorizeData, type ProviderOauthAuthorizeError, type ProviderOauthAuthorizeErrors, type ProviderOauthAuthorizeResponse, type ProviderOauthAuthorizeResponses, type ProviderOauthCallbackData, type ProviderOauthCallbackError, type ProviderOauthCallbackErrors, type ProviderOauthCallbackResponse, type ProviderOauthCallbackResponses, type Pty$1 as Pty, type PtyConnectData, type PtyConnectError, type PtyConnectErrors, type PtyConnectResponse, type PtyConnectResponses, type PtyCreateData, type PtyCreateError, type PtyCreateErrors, type PtyCreateResponse, type PtyCreateResponses, type PtyGetData, type PtyGetError, type PtyGetErrors, type PtyGetResponse, type PtyGetResponses, type PtyListData, type PtyListResponse, type PtyListResponses, type PtyRemoveData, type PtyRemoveError, type PtyRemoveErrors, type PtyRemoveResponse, type PtyRemoveResponses, type PtyUpdateData, type PtyUpdateError, type PtyUpdateErrors, type PtyUpdateResponse, type PtyUpdateResponses, type QuestionAnswer, type QuestionInfo, type QuestionListData, type QuestionListResponse, type QuestionListResponses, type QuestionOption, type QuestionRejectData, type QuestionRejectError, type QuestionRejectErrors, type QuestionRejectResponse, type QuestionRejectResponses, type QuestionReplyData, type QuestionReplyError, type QuestionReplyErrors, type QuestionReplyResponse, type QuestionReplyResponses, type QuestionRequest, type Range, type ReasoningPart, type ResourceSource, type RetryPart, type ServerConfig, type ServerOptions, type Session$1 as Session, type SessionAbortData, type SessionAbortError, type SessionAbortErrors, type SessionAbortResponse, type SessionAbortResponses, type SessionChildrenData, type SessionChildrenError, type SessionChildrenErrors, type SessionChildrenResponse, type SessionChildrenResponses, type SessionCommandData, type SessionCommandError, type SessionCommandErrors, type SessionCommandResponse, type SessionCommandResponses, type SessionCreateData, type SessionCreateError, type SessionCreateErrors, type SessionCreateResponse, type SessionCreateResponses, type SessionDeleteData, type SessionDeleteError, type SessionDeleteErrors, type SessionDeleteResponse, type SessionDeleteResponses, type SessionDiffData, type SessionDiffResponse, type SessionDiffResponses, type SessionForkData, type SessionForkResponse, type SessionForkResponses, type SessionGetData, type SessionGetError, type SessionGetErrors, type SessionGetResponse, type SessionGetResponses, type SessionInitData, type SessionInitError, type SessionInitErrors, type SessionInitResponse, type SessionInitResponses, type SessionListData, type SessionListResponse, type SessionListResponses, type SessionMessageData, type SessionMessageError, type SessionMessageErrors, type SessionMessageResponse, type SessionMessageResponses, type SessionMessagesData, type SessionMessagesError, type SessionMessagesErrors, type SessionMessagesResponse, type SessionMessagesResponses, type SessionPromptAsyncData, type SessionPromptAsyncError, type SessionPromptAsyncErrors, type SessionPromptAsyncResponse, type SessionPromptAsyncResponses, type SessionPromptData, type SessionPromptError, type SessionPromptErrors, type SessionPromptResponse, type SessionPromptResponses, type SessionRevertData, type SessionRevertError, type SessionRevertErrors, type SessionRevertResponse, type SessionRevertResponses, type SessionShareData, type SessionShareError, type SessionShareErrors, type SessionShareResponse, type SessionShareResponses, type SessionShellData, type SessionShellError, type SessionShellErrors, type SessionShellResponse, type SessionShellResponses, type SessionStatus, type SessionStatusData, type SessionStatusError, type SessionStatusErrors, type SessionStatusResponse, type SessionStatusResponses, type SessionSummarizeData, type SessionSummarizeError, type SessionSummarizeErrors, type SessionSummarizeResponse, type SessionSummarizeResponses, type SessionTodoData, type SessionTodoError, type SessionTodoErrors, type SessionTodoResponse, type SessionTodoResponses, type SessionUnrevertData, type SessionUnrevertError, type SessionUnrevertErrors, type SessionUnrevertResponse, type SessionUnrevertResponses, type SessionUnshareData, type SessionUnshareError, type SessionUnshareErrors, type SessionUnshareResponse, type SessionUnshareResponses, type SessionUpdateData, type SessionUpdateError, type SessionUpdateErrors, type SessionUpdateResponse, type SessionUpdateResponses, type SnapshotPart, type StepFinishPart, type StepStartPart, type SubtaskPart, type SubtaskPartInput, type Symbol, type SymbolSource, type TextPart, type TextPartInput, type Todo, type ToolIds, type ToolIdsData, type ToolIdsError, type ToolIdsErrors, type ToolIdsResponse, type ToolIdsResponses, type ToolList, type ToolListData, type ToolListError, type ToolListErrors, type ToolListItem, type ToolListResponse, type ToolListResponses, type ToolPart, type ToolState, type ToolStateCompleted, type ToolStateError, type ToolStatePending, type ToolStateRunning, type TuiAppendPromptData, type TuiAppendPromptError, type TuiAppendPromptErrors, type TuiAppendPromptResponse, type TuiAppendPromptResponses, type TuiClearPromptData, type TuiClearPromptResponse, type TuiClearPromptResponses, type TuiControlNextData, type TuiControlNextResponse, type TuiControlNextResponses, type TuiControlResponseData, type TuiControlResponseResponse, type TuiControlResponseResponses, type TuiExecuteCommandData, type TuiExecuteCommandError, type TuiExecuteCommandErrors, type TuiExecuteCommandResponse, type TuiExecuteCommandResponses, type TuiOpenHelpData, type TuiOpenHelpResponse, type TuiOpenHelpResponses, type TuiOpenModelsData, type TuiOpenModelsResponse, type TuiOpenModelsResponses, type TuiOpenSessionsData, type TuiOpenSessionsResponse, type TuiOpenSessionsResponses, type TuiOpenThemesData, type TuiOpenThemesResponse, type TuiOpenThemesResponses, type TuiOptions, type TuiPublishData, type TuiPublishError, type TuiPublishErrors, type TuiPublishResponse, type TuiPublishResponses, type TuiSelectSessionData, type TuiSelectSessionError, type TuiSelectSessionErrors, type TuiSelectSessionResponse, type TuiSelectSessionResponses, type TuiShowToastData, type TuiShowToastResponse, type TuiShowToastResponses, type TuiSubmitPromptData, type TuiSubmitPromptResponse, type TuiSubmitPromptResponses, type UnknownError, type UserMessage, type VcsGetData, type VcsGetResponse, type VcsGetResponses, type VcsInfo, type WellKnownAuth, type Worktree$1 as Worktree, type WorktreeCreateData, type WorktreeCreateError, type WorktreeCreateErrors, type WorktreeCreateInput, type WorktreeCreateResponse, type WorktreeCreateResponses, type WorktreeListData, type WorktreeListResponse, type WorktreeListResponses, type WorktreeRemoveData, type WorktreeRemoveError, type WorktreeRemoveErrors, type WorktreeRemoveInput, type WorktreeRemoveResponse, type WorktreeRemoveResponses, type WorktreeResetData, type WorktreeResetError, type WorktreeResetErrors, type WorktreeResetInput, type WorktreeResetResponse, type WorktreeResetResponses, createEasbotClient, createEasbotServer, createEascode, createEascodeTui };
|
|
4298
|
+
export { type Agent$1 as Agent, type AgentConfig, type AgentCreateData, type AgentCreateError, type AgentCreateErrors, type AgentCreateResponse, type AgentCreateResponses, type AgentDefaultData, type AgentDefaultError, type AgentDefaultErrors, type AgentDefaultResponse, type AgentDefaultResponses, type AgentEvent, type AgentEventData, type AgentEventResponse, type AgentEventResponses, type AgentGetData, type AgentGetError, type AgentGetErrors, type AgentGetResponse, type AgentGetResponses, type AgentPart, type AgentPartInput, type ApiAuth, type ApiError, type AppAgentsData, type AppAgentsResponse, type AppAgentsResponses, type AppLogData, type AppLogError, type AppLogErrors, type AppLogResponse, type AppLogResponses, type AppSkillsData, type AppSkillsResponse, type AppSkillsResponses, type AssistantMessage, type Auth$2 as Auth, type AuthRemoveData, type AuthRemoveError, type AuthRemoveErrors, type AuthRemoveResponse, type AuthRemoveResponses, type AuthSetData, type AuthSetError, type AuthSetErrors, type AuthSetResponse, type AuthSetResponses, type BadRequestError, type ClientOptions$1 as ClientOptions, type Command$1 as Command, type CommandListData, type CommandListResponse, type CommandListResponses, type CompactionPart, type Config$3 as Config, type ConfigGetData, type ConfigGetResponse, type ConfigGetResponses, type ConfigProvidersData, type ConfigProvidersResponse, type ConfigProvidersResponses, type ConfigUpdateData, type ConfigUpdateError, type ConfigUpdateErrors, type ConfigUpdateResponse, type ConfigUpdateResponses, type ContextOverflowError, EasbotClient, type Config$1 as EasbotClientConfig, type Event, type EventCommandExecuted, type EventFileEdited, type EventFileWatcherUpdated, type EventGlobalDisposed, type EventInstallationUpdateAvailable, type EventInstallationUpdated, type EventLspClientDiagnostics, type EventLspUpdated, type EventMcpBrowserOpenFailed, type EventMcpToolsChanged, type EventMessagePartRemoved, type EventMessagePartUpdated, type EventMessageRemoved, type EventMessageUpdated, type EventPermissionAsked, type EventPermissionReplied, type EventProjectUpdated, type EventPtyCreated, type EventPtyDeleted, type EventPtyExited, type EventPtyUpdated, type EventPublishData, type EventPublishResponse, type EventPublishResponses, type EventQuestionAsked, type EventQuestionRejected, type EventQuestionReplied, type EventServerConnected, type EventServerInstanceDisposed, type EventSessionCompacted, type EventSessionCreated, type EventSessionDeleted, type EventSessionDiff, type EventSessionError, type EventSessionIdle, type EventSessionStatus, type EventSessionUpdated, type EventSubscribeData, type EventSubscribeResponse, type EventSubscribeResponses, type EventTodoUpdated, type EventTuiCommandExecute, type EventTuiPromptAppend, type EventTuiSessionSelect, type EventTuiToastShow, type EventVcsBranchUpdated, type EventWorkspaceFailed, type EventWorkspaceReady, type EventWorktreeFailed, type EventWorktreeReady, type ExperimentalResourceListData, type ExperimentalResourceListResponse, type ExperimentalResourceListResponses, type ExperimentalSessionListData, type ExperimentalSessionListResponse, type ExperimentalSessionListResponses, type File, type FileContent, type FileDiff, type FileListData, type FileListResponse, type FileListResponses, type FileNode, type FilePart, type FilePartInput, type FilePartSource, type FilePartSourceText, type FileReadData, type FileReadResponse, type FileReadResponses, type FileSource, type FileStatusData, type FileStatusResponse, type FileStatusResponses, type FindFilesData, type FindFilesResponse, type FindFilesResponses, type FindSymbolsData, type FindSymbolsResponse, type FindSymbolsResponses, type FindTextData, type FindTextResponse, type FindTextResponses, type FormatterStatus, type FormatterStatusData, type FormatterStatusResponse, type FormatterStatusResponses, type GlobalConfigGetData, type GlobalConfigGetResponse, type GlobalConfigGetResponses, type GlobalConfigUpdateData, type GlobalConfigUpdateError, type GlobalConfigUpdateErrors, type GlobalConfigUpdateResponse, type GlobalConfigUpdateResponses, type GlobalDisposeData, type GlobalDisposeResponse, type GlobalDisposeResponses, type GlobalEvent, type GlobalEventData, type GlobalEventResponse, type GlobalEventResponses, type GlobalHealthData, type GlobalHealthResponse, type GlobalHealthResponses, type GlobalSession, type ImagePartInput, type InstanceDisposeData, type InstanceDisposeResponse, type InstanceDisposeResponses, type JsonSchema, type LayoutConfig, type LogLevel, type LspStatus, type LspStatusData, type LspStatusResponse, type LspStatusResponses, type McpAddData, type McpAddError, type McpAddErrors, type McpAddResponse, type McpAddResponses, type McpAuthAuthenticateData, type McpAuthAuthenticateError, type McpAuthAuthenticateErrors, type McpAuthAuthenticateResponse, type McpAuthAuthenticateResponses, type McpAuthCallbackData, type McpAuthCallbackError, type McpAuthCallbackErrors, type McpAuthCallbackResponse, type McpAuthCallbackResponses, type McpAuthRemoveData, type McpAuthRemoveError, type McpAuthRemoveErrors, type McpAuthRemoveResponse, type McpAuthRemoveResponses, type McpAuthStartData, type McpAuthStartError, type McpAuthStartErrors, type McpAuthStartResponse, type McpAuthStartResponses, type McpConnectData, type McpConnectResponse, type McpConnectResponses, type McpDisconnectData, type McpDisconnectResponse, type McpDisconnectResponses, type McpLocalConfig, type McpOAuthConfig, type McpRemoteConfig, type McpResource, type McpStatus, type McpStatusConnected, type McpStatusData, type McpStatusDisabled, type McpStatusFailed, type McpStatusNeedsAuth, type McpStatusNeedsClientRegistration, type McpStatusResponse, type McpStatusResponses, type Message$1 as Message, type MessageAbortedError, type MessageEvent, type MessageEventData, type MessageEventResponse, type MessageEventResponses, type MessageOutputLengthError, type Model$1 as Model, type ModelDefaultData, type ModelDefaultError, type ModelDefaultErrors, type ModelDefaultResponse, type ModelDefaultResponses, type ModelParseData, type ModelParseError, type ModelParseErrors, type ModelParseResponse, type ModelParseResponses, type NotFoundError, type OAuth, type OutputFormat, type OutputFormatJsonSchema, type OutputFormatText, type Part$1 as Part, type PartDeleteData, type PartDeleteError, type PartDeleteErrors, type PartDeleteResponse, type PartDeleteResponses, type PartUpdateData, type PartUpdateError, type PartUpdateErrors, type PartUpdateResponse, type PartUpdateResponses, type PatchPart, type Path$1 as Path, type PathGetData, type PathGetResponse, type PathGetResponses, Permission, type PermissionAction, type PermissionActionConfig, type PermissionConfig, type PermissionListData, type PermissionListResponse, type PermissionListResponses, type PermissionObjectConfig, type PermissionReplyData, type PermissionReplyError, type PermissionReplyErrors, type PermissionReplyResponse, type PermissionReplyResponses, type PermissionRequest, type PermissionRespondData, type PermissionRespondError, type PermissionRespondErrors, type PermissionRespondResponse, type PermissionRespondResponses, type PermissionRule, type PermissionRuleConfig, type PermissionRuleset, type Project$1 as Project, type ProjectCurrentData, type ProjectCurrentResponse, type ProjectCurrentResponses, type ProjectInitGitData, type ProjectInitGitResponse, type ProjectInitGitResponses, type ProjectListData, type ProjectListResponse, type ProjectListResponses, type ProjectSummary, type ProjectUpdateData, type ProjectUpdateError, type ProjectUpdateErrors, type ProjectUpdateResponse, type ProjectUpdateResponses, type Provider$1 as Provider, type ProviderAuthAuthorization, type ProviderAuthData, type ProviderAuthError, type ProviderAuthMethod, type ProviderAuthResponse, type ProviderAuthResponses, type ProviderConfig, type ProviderListData, type ProviderListResponse, type ProviderListResponses, type ProviderOauthAuthorizeData, type ProviderOauthAuthorizeError, type ProviderOauthAuthorizeErrors, type ProviderOauthAuthorizeResponse, type ProviderOauthAuthorizeResponses, type ProviderOauthCallbackData, type ProviderOauthCallbackError, type ProviderOauthCallbackErrors, type ProviderOauthCallbackResponse, type ProviderOauthCallbackResponses, type Pty$1 as Pty, type PtyConnectData, type PtyConnectError, type PtyConnectErrors, type PtyConnectResponse, type PtyConnectResponses, type PtyCreateData, type PtyCreateError, type PtyCreateErrors, type PtyCreateResponse, type PtyCreateResponses, type PtyGetData, type PtyGetError, type PtyGetErrors, type PtyGetResponse, type PtyGetResponses, type PtyListData, type PtyListResponse, type PtyListResponses, type PtyRemoveData, type PtyRemoveError, type PtyRemoveErrors, type PtyRemoveResponse, type PtyRemoveResponses, type PtyUpdateData, type PtyUpdateError, type PtyUpdateErrors, type PtyUpdateResponse, type PtyUpdateResponses, type QuestionAnswer, type QuestionInfo, type QuestionListData, type QuestionListResponse, type QuestionListResponses, type QuestionOption, type QuestionRejectData, type QuestionRejectError, type QuestionRejectErrors, type QuestionRejectResponse, type QuestionRejectResponses, type QuestionReplyData, type QuestionReplyError, type QuestionReplyErrors, type QuestionReplyResponse, type QuestionReplyResponses, type QuestionRequest, type Range, type ReasoningPart, type ResourcePartInput, type ResourceSource, type RetryPart, type ServerConfig, type ServerOptions, type Session$1 as Session, type SessionAbortData, type SessionAbortError, type SessionAbortErrors, type SessionAbortResponse, type SessionAbortResponses, type SessionChildrenData, type SessionChildrenError, type SessionChildrenErrors, type SessionChildrenResponse, type SessionChildrenResponses, type SessionCommandData, type SessionCommandError, type SessionCommandErrors, type SessionCommandResponse, type SessionCommandResponses, type SessionCreateData, type SessionCreateError, type SessionCreateErrors, type SessionCreateResponse, type SessionCreateResponses, type SessionDeleteData, type SessionDeleteError, type SessionDeleteErrors, type SessionDeleteMessageData, type SessionDeleteMessageError, type SessionDeleteMessageErrors, type SessionDeleteMessageResponse, type SessionDeleteMessageResponses, type SessionDeleteResponse, type SessionDeleteResponses, type SessionDiffData, type SessionDiffResponse, type SessionDiffResponses, type SessionEvent, type SessionEventData, type SessionEventResponse, type SessionEventResponses, type SessionForkData, type SessionForkResponse, type SessionForkResponses, type SessionGetData, type SessionGetError, type SessionGetErrors, type SessionGetResponse, type SessionGetResponses, type SessionInitData, type SessionInitError, type SessionInitErrors, type SessionInitResponse, type SessionInitResponses, type SessionListData, type SessionListResponse, type SessionListResponses, type SessionMessageData, type SessionMessageError, type SessionMessageErrors, type SessionMessageResponse, type SessionMessageResponses, type SessionMessagesData, type SessionMessagesError, type SessionMessagesErrors, type SessionMessagesResponse, type SessionMessagesResponses, type SessionPromptAsyncData, type SessionPromptAsyncError, type SessionPromptAsyncErrors, type SessionPromptAsyncResponse, type SessionPromptAsyncResponses, type SessionPromptData, type SessionPromptError, type SessionPromptErrors, type SessionPromptResponse, type SessionPromptResponses, type SessionRevertData, type SessionRevertError, type SessionRevertErrors, type SessionRevertResponse, type SessionRevertResponses, type SessionShareData, type SessionShareError, type SessionShareErrors, type SessionShareResponse, type SessionShareResponses, type SessionShellData, type SessionShellError, type SessionShellErrors, type SessionShellResponse, type SessionShellResponses, type SessionStatus, type SessionStatusData, type SessionStatusError, type SessionStatusErrors, type SessionStatusResponse, type SessionStatusResponses, type SessionSummarizeData, type SessionSummarizeError, type SessionSummarizeErrors, type SessionSummarizeResponse, type SessionSummarizeResponses, type SessionTodoData, type SessionTodoError, type SessionTodoErrors, type SessionTodoResponse, type SessionTodoResponses, type SessionUnrevertData, type SessionUnrevertError, type SessionUnrevertErrors, type SessionUnrevertResponse, type SessionUnrevertResponses, type SessionUnshareData, type SessionUnshareError, type SessionUnshareErrors, type SessionUnshareResponse, type SessionUnshareResponses, type SessionUpdateData, type SessionUpdateError, type SessionUpdateErrors, type SessionUpdateResponse, type SessionUpdateResponses, type SnapshotPart, type StepFinishPart, type StepStartPart, type StructuredOutputError, type SubtaskPart, type SubtaskPartInput, type Symbol, type SymbolSource, type TextPart, type TextPartInput, type Todo, type ToolIds, type ToolIdsData, type ToolIdsError, type ToolIdsErrors, type ToolIdsResponse, type ToolIdsResponses, type ToolList, type ToolListData, type ToolListError, type ToolListErrors, type ToolListItem, type ToolListResponse, type ToolListResponses, type ToolPart, type ToolState, type ToolStateCompleted, type ToolStateError, type ToolStatePending, type ToolStateRunning, type TuiAppendPromptData, type TuiAppendPromptError, type TuiAppendPromptErrors, type TuiAppendPromptResponse, type TuiAppendPromptResponses, type TuiClearPromptData, type TuiClearPromptResponse, type TuiClearPromptResponses, type TuiControlNextData, type TuiControlNextResponse, type TuiControlNextResponses, type TuiControlResponseData, type TuiControlResponseResponse, type TuiControlResponseResponses, type TuiExecuteCommandData, type TuiExecuteCommandError, type TuiExecuteCommandErrors, type TuiExecuteCommandResponse, type TuiExecuteCommandResponses, type TuiOpenHelpData, type TuiOpenHelpResponse, type TuiOpenHelpResponses, type TuiOpenModelsData, type TuiOpenModelsResponse, type TuiOpenModelsResponses, type TuiOpenSessionsData, type TuiOpenSessionsResponse, type TuiOpenSessionsResponses, type TuiOpenThemesData, type TuiOpenThemesResponse, type TuiOpenThemesResponses, type TuiOptions, type TuiPublishData, type TuiPublishError, type TuiPublishErrors, type TuiPublishResponse, type TuiPublishResponses, type TuiSelectSessionData, type TuiSelectSessionError, type TuiSelectSessionErrors, type TuiSelectSessionResponse, type TuiSelectSessionResponses, type TuiShowToastData, type TuiShowToastResponse, type TuiShowToastResponses, type TuiSubmitPromptData, type TuiSubmitPromptResponse, type TuiSubmitPromptResponses, type UnknownError, type UserMessage, type VcsGetData, type VcsGetResponse, type VcsGetResponses, type VcsInfo, type WellKnownAuth, type Workspace, type Worktree$1 as Worktree, type WorktreeCreateData, type WorktreeCreateError, type WorktreeCreateErrors, type WorktreeCreateInput, type WorktreeCreateResponse, type WorktreeCreateResponses, type WorktreeListData, type WorktreeListResponse, type WorktreeListResponses, type WorktreeRemoveData, type WorktreeRemoveError, type WorktreeRemoveErrors, type WorktreeRemoveInput, type WorktreeRemoveResponse, type WorktreeRemoveResponses, type WorktreeResetData, type WorktreeResetError, type WorktreeResetErrors, type WorktreeResetInput, type WorktreeResetResponse, type WorktreeResetResponses, createEasbotClient, createEasbotServer, createEascode, createEascodeTui };
|