@symbioticsec/sdk 0.0.1 → 0.0.6
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/v2/gen/sdk.gen.d.ts +25 -25
- package/dist/v2/gen/sdk.gen.js +25 -25
- package/dist/v2/gen/types.gen.d.ts +6 -1
- package/package.json +1332 -9
package/dist/v2/gen/sdk.gen.d.ts
CHANGED
|
@@ -29,13 +29,13 @@ export declare class Config extends HeyApiClient {
|
|
|
29
29
|
/**
|
|
30
30
|
* Get global configuration
|
|
31
31
|
*
|
|
32
|
-
* Retrieve the current global
|
|
32
|
+
* Retrieve the current global Symbiotic Code configuration settings and preferences.
|
|
33
33
|
*/
|
|
34
34
|
get<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<GlobalConfigGetResponses, unknown, ThrowOnError, "fields">;
|
|
35
35
|
/**
|
|
36
36
|
* Update global configuration
|
|
37
37
|
*
|
|
38
|
-
* Update global
|
|
38
|
+
* Update global Symbiotic Code configuration settings and preferences.
|
|
39
39
|
*/
|
|
40
40
|
update<ThrowOnError extends boolean = false>(parameters?: {
|
|
41
41
|
config?: Config3;
|
|
@@ -45,19 +45,19 @@ export declare class Global extends HeyApiClient {
|
|
|
45
45
|
/**
|
|
46
46
|
* Get health
|
|
47
47
|
*
|
|
48
|
-
* Get health information about the
|
|
48
|
+
* Get health information about the Symbiotic Code server.
|
|
49
49
|
*/
|
|
50
50
|
health<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<GlobalHealthResponses, unknown, ThrowOnError, "fields">;
|
|
51
51
|
/**
|
|
52
52
|
* Get global events
|
|
53
53
|
*
|
|
54
|
-
* Subscribe to global events from the
|
|
54
|
+
* Subscribe to global events from the Symbiotic Code system using server-sent events.
|
|
55
55
|
*/
|
|
56
56
|
event<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): Promise<import("./core/serverSentEvents.gen.js").ServerSentEventsResult<GlobalEventResponses, unknown>>;
|
|
57
57
|
/**
|
|
58
58
|
* Dispose instance
|
|
59
59
|
*
|
|
60
|
-
* Clean up and dispose all
|
|
60
|
+
* Clean up and dispose all Symbiotic Code instances, releasing all resources.
|
|
61
61
|
*/
|
|
62
62
|
dispose<ThrowOnError extends boolean = false>(options?: Options<never, ThrowOnError>): import("./client/types.gen.js").RequestResult<GlobalDisposeResponses, unknown, ThrowOnError, "fields">;
|
|
63
63
|
private _config?;
|
|
@@ -86,7 +86,7 @@ export declare class Project extends HeyApiClient {
|
|
|
86
86
|
/**
|
|
87
87
|
* List all projects
|
|
88
88
|
*
|
|
89
|
-
* Get a list of projects that have been opened with
|
|
89
|
+
* Get a list of projects that have been opened with Symbiotic Code.
|
|
90
90
|
*/
|
|
91
91
|
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
92
92
|
directory?: string;
|
|
@@ -95,7 +95,7 @@ export declare class Project extends HeyApiClient {
|
|
|
95
95
|
/**
|
|
96
96
|
* Get current project
|
|
97
97
|
*
|
|
98
|
-
* Retrieve the currently active project that
|
|
98
|
+
* Retrieve the currently active project that Symbiotic Code is working with.
|
|
99
99
|
*/
|
|
100
100
|
current<ThrowOnError extends boolean = false>(parameters?: {
|
|
101
101
|
directory?: string;
|
|
@@ -137,7 +137,7 @@ export declare class Pty extends HeyApiClient {
|
|
|
137
137
|
/**
|
|
138
138
|
* List PTY sessions
|
|
139
139
|
*
|
|
140
|
-
* Get a list of all active pseudo-terminal (PTY) sessions managed by
|
|
140
|
+
* Get a list of all active pseudo-terminal (PTY) sessions managed by Symbiotic Code.
|
|
141
141
|
*/
|
|
142
142
|
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
143
143
|
directory?: string;
|
|
@@ -146,7 +146,7 @@ export declare class Pty extends HeyApiClient {
|
|
|
146
146
|
/**
|
|
147
147
|
* Create PTY session
|
|
148
148
|
*
|
|
149
|
-
* Create a new pseudo-terminal (PTY) session for running shell commands and processes in
|
|
149
|
+
* Create a new pseudo-terminal (PTY) session for running shell commands and processes in Symbiotic Code.
|
|
150
150
|
*/
|
|
151
151
|
create<ThrowOnError extends boolean = false>(parameters?: {
|
|
152
152
|
directory?: string;
|
|
@@ -209,7 +209,7 @@ export declare class Config2 extends HeyApiClient {
|
|
|
209
209
|
/**
|
|
210
210
|
* Get configuration
|
|
211
211
|
*
|
|
212
|
-
* Retrieve the current
|
|
212
|
+
* Retrieve the current Symbiotic Code configuration settings and preferences.
|
|
213
213
|
*/
|
|
214
214
|
get<ThrowOnError extends boolean = false>(parameters?: {
|
|
215
215
|
directory?: string;
|
|
@@ -218,7 +218,7 @@ export declare class Config2 extends HeyApiClient {
|
|
|
218
218
|
/**
|
|
219
219
|
* Update configuration
|
|
220
220
|
*
|
|
221
|
-
* Update
|
|
221
|
+
* Update Symbiotic Code configuration settings and preferences.
|
|
222
222
|
*/
|
|
223
223
|
update<ThrowOnError extends boolean = false>(parameters?: {
|
|
224
224
|
directory?: string;
|
|
@@ -228,7 +228,7 @@ export declare class Config2 extends HeyApiClient {
|
|
|
228
228
|
/**
|
|
229
229
|
* List config providers
|
|
230
230
|
*
|
|
231
|
-
* Get a list of all configured AI providers and their default models in the
|
|
231
|
+
* Get a list of all configured AI providers and their default models in the Symbiotic Code system.
|
|
232
232
|
*/
|
|
233
233
|
providers<ThrowOnError extends boolean = false>(parameters?: {
|
|
234
234
|
directory?: string;
|
|
@@ -295,7 +295,7 @@ export declare class Session extends HeyApiClient {
|
|
|
295
295
|
/**
|
|
296
296
|
* List sessions
|
|
297
297
|
*
|
|
298
|
-
* Get a list of all
|
|
298
|
+
* Get a list of all Symbiotic Code sessions across projects, sorted by most recently updated. Archived sessions are excluded by default.
|
|
299
299
|
*/
|
|
300
300
|
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
301
301
|
directory?: string;
|
|
@@ -372,7 +372,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
372
372
|
/**
|
|
373
373
|
* List sessions
|
|
374
374
|
*
|
|
375
|
-
* Get a list of all
|
|
375
|
+
* Get a list of all Symbiotic Code sessions, sorted by most recently updated.
|
|
376
376
|
*/
|
|
377
377
|
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
378
378
|
directory?: string;
|
|
@@ -385,7 +385,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
385
385
|
/**
|
|
386
386
|
* Create session
|
|
387
387
|
*
|
|
388
|
-
* Create a new
|
|
388
|
+
* Create a new Symbiotic Code session for interacting with AI assistants and managing conversations.
|
|
389
389
|
*/
|
|
390
390
|
create<ThrowOnError extends boolean = false>(parameters?: {
|
|
391
391
|
directory?: string;
|
|
@@ -407,7 +407,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
407
407
|
/**
|
|
408
408
|
* Delete session
|
|
409
409
|
*
|
|
410
|
-
* Delete a
|
|
410
|
+
* Delete a Symbiotic Code session and permanently remove all associated data, including messages and history.
|
|
411
411
|
*/
|
|
412
412
|
delete<ThrowOnError extends boolean = false>(parameters: {
|
|
413
413
|
sessionID: string;
|
|
@@ -417,7 +417,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
417
417
|
/**
|
|
418
418
|
* Get session
|
|
419
419
|
*
|
|
420
|
-
* Retrieve detailed information about a specific
|
|
420
|
+
* Retrieve detailed information about a specific Symbiotic Code session.
|
|
421
421
|
*/
|
|
422
422
|
get<ThrowOnError extends boolean = false>(parameters: {
|
|
423
423
|
sessionID: string;
|
|
@@ -427,7 +427,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
427
427
|
/**
|
|
428
428
|
* Update session
|
|
429
429
|
*
|
|
430
|
-
* Update properties of an existing
|
|
430
|
+
* Update properties of an existing Symbiotic Code session, such as title or other metadata.
|
|
431
431
|
*/
|
|
432
432
|
update<ThrowOnError extends boolean = false>(parameters: {
|
|
433
433
|
sessionID: string;
|
|
@@ -441,7 +441,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
441
441
|
/**
|
|
442
442
|
* Get session children
|
|
443
443
|
*
|
|
444
|
-
* Retrieve all child sessions that were forked from the specified parent session in
|
|
444
|
+
* Retrieve all child sessions that were forked from the specified parent session in Symbiotic Code.
|
|
445
445
|
*/
|
|
446
446
|
children<ThrowOnError extends boolean = false>(parameters: {
|
|
447
447
|
sessionID: string;
|
|
@@ -451,7 +451,7 @@ export declare class Session2 extends HeyApiClient {
|
|
|
451
451
|
/**
|
|
452
452
|
* Get session todos
|
|
453
453
|
*
|
|
454
|
-
* Retrieve the todo list associated with a specific
|
|
454
|
+
* Retrieve the todo list associated with a specific Symbiotic Code session, showing tasks and action items.
|
|
455
455
|
*/
|
|
456
456
|
todo<ThrowOnError extends boolean = false>(parameters: {
|
|
457
457
|
sessionID: string;
|
|
@@ -1137,7 +1137,7 @@ export declare class Instance extends HeyApiClient {
|
|
|
1137
1137
|
/**
|
|
1138
1138
|
* Dispose instance
|
|
1139
1139
|
*
|
|
1140
|
-
* Clean up and dispose the current
|
|
1140
|
+
* Clean up and dispose the current Symbiotic Code instance, releasing all resources.
|
|
1141
1141
|
*/
|
|
1142
1142
|
dispose<ThrowOnError extends boolean = false>(parameters?: {
|
|
1143
1143
|
directory?: string;
|
|
@@ -1148,7 +1148,7 @@ export declare class Path extends HeyApiClient {
|
|
|
1148
1148
|
/**
|
|
1149
1149
|
* Get paths
|
|
1150
1150
|
*
|
|
1151
|
-
* Retrieve the current working directory and related path information for the
|
|
1151
|
+
* Retrieve the current working directory and related path information for the Symbiotic Code instance.
|
|
1152
1152
|
*/
|
|
1153
1153
|
get<ThrowOnError extends boolean = false>(parameters?: {
|
|
1154
1154
|
directory?: string;
|
|
@@ -1170,7 +1170,7 @@ export declare class Command extends HeyApiClient {
|
|
|
1170
1170
|
/**
|
|
1171
1171
|
* List commands
|
|
1172
1172
|
*
|
|
1173
|
-
* Get a list of all available commands in the
|
|
1173
|
+
* Get a list of all available commands in the Symbiotic Code system.
|
|
1174
1174
|
*/
|
|
1175
1175
|
list<ThrowOnError extends boolean = false>(parameters?: {
|
|
1176
1176
|
directory?: string;
|
|
@@ -1196,7 +1196,7 @@ export declare class App extends HeyApiClient {
|
|
|
1196
1196
|
/**
|
|
1197
1197
|
* List agents
|
|
1198
1198
|
*
|
|
1199
|
-
* Get a list of all available AI agents in the
|
|
1199
|
+
* Get a list of all available AI agents in the Symbiotic Code system.
|
|
1200
1200
|
*/
|
|
1201
1201
|
agents<ThrowOnError extends boolean = false>(parameters?: {
|
|
1202
1202
|
directory?: string;
|
|
@@ -1205,7 +1205,7 @@ export declare class App extends HeyApiClient {
|
|
|
1205
1205
|
/**
|
|
1206
1206
|
* List skills
|
|
1207
1207
|
*
|
|
1208
|
-
* Get a list of all available skills in the
|
|
1208
|
+
* Get a list of all available skills in the Symbiotic Code system.
|
|
1209
1209
|
*/
|
|
1210
1210
|
skills<ThrowOnError extends boolean = false>(parameters?: {
|
|
1211
1211
|
directory?: string;
|
package/dist/v2/gen/sdk.gen.js
CHANGED
|
@@ -25,7 +25,7 @@ export class Config extends HeyApiClient {
|
|
|
25
25
|
/**
|
|
26
26
|
* Get global configuration
|
|
27
27
|
*
|
|
28
|
-
* Retrieve the current global
|
|
28
|
+
* Retrieve the current global Symbiotic Code configuration settings and preferences.
|
|
29
29
|
*/
|
|
30
30
|
get(options) {
|
|
31
31
|
return (options?.client ?? this.client).get({
|
|
@@ -36,7 +36,7 @@ export class Config extends HeyApiClient {
|
|
|
36
36
|
/**
|
|
37
37
|
* Update global configuration
|
|
38
38
|
*
|
|
39
|
-
* Update global
|
|
39
|
+
* Update global Symbiotic Code configuration settings and preferences.
|
|
40
40
|
*/
|
|
41
41
|
update(parameters, options) {
|
|
42
42
|
const params = buildClientParams([parameters], [{ args: [{ key: "config", map: "body" }] }]);
|
|
@@ -56,7 +56,7 @@ export class Global extends HeyApiClient {
|
|
|
56
56
|
/**
|
|
57
57
|
* Get health
|
|
58
58
|
*
|
|
59
|
-
* Get health information about the
|
|
59
|
+
* Get health information about the Symbiotic Code server.
|
|
60
60
|
*/
|
|
61
61
|
health(options) {
|
|
62
62
|
return (options?.client ?? this.client).get({
|
|
@@ -67,7 +67,7 @@ export class Global extends HeyApiClient {
|
|
|
67
67
|
/**
|
|
68
68
|
* Get global events
|
|
69
69
|
*
|
|
70
|
-
* Subscribe to global events from the
|
|
70
|
+
* Subscribe to global events from the Symbiotic Code system using server-sent events.
|
|
71
71
|
*/
|
|
72
72
|
event(options) {
|
|
73
73
|
return (options?.client ?? this.client).sse.get({
|
|
@@ -78,7 +78,7 @@ export class Global extends HeyApiClient {
|
|
|
78
78
|
/**
|
|
79
79
|
* Dispose instance
|
|
80
80
|
*
|
|
81
|
-
* Clean up and dispose all
|
|
81
|
+
* Clean up and dispose all Symbiotic Code instances, releasing all resources.
|
|
82
82
|
*/
|
|
83
83
|
dispose(options) {
|
|
84
84
|
return (options?.client ?? this.client).post({
|
|
@@ -135,7 +135,7 @@ export class Project extends HeyApiClient {
|
|
|
135
135
|
/**
|
|
136
136
|
* List all projects
|
|
137
137
|
*
|
|
138
|
-
* Get a list of projects that have been opened with
|
|
138
|
+
* Get a list of projects that have been opened with Symbiotic Code.
|
|
139
139
|
*/
|
|
140
140
|
list(parameters, options) {
|
|
141
141
|
const params = buildClientParams([parameters], [
|
|
@@ -155,7 +155,7 @@ export class Project extends HeyApiClient {
|
|
|
155
155
|
/**
|
|
156
156
|
* Get current project
|
|
157
157
|
*
|
|
158
|
-
* Retrieve the currently active project that
|
|
158
|
+
* Retrieve the currently active project that Symbiotic Code is working with.
|
|
159
159
|
*/
|
|
160
160
|
current(parameters, options) {
|
|
161
161
|
const params = buildClientParams([parameters], [
|
|
@@ -226,7 +226,7 @@ export class Pty extends HeyApiClient {
|
|
|
226
226
|
/**
|
|
227
227
|
* List PTY sessions
|
|
228
228
|
*
|
|
229
|
-
* Get a list of all active pseudo-terminal (PTY) sessions managed by
|
|
229
|
+
* Get a list of all active pseudo-terminal (PTY) sessions managed by Symbiotic Code.
|
|
230
230
|
*/
|
|
231
231
|
list(parameters, options) {
|
|
232
232
|
const params = buildClientParams([parameters], [
|
|
@@ -246,7 +246,7 @@ export class Pty extends HeyApiClient {
|
|
|
246
246
|
/**
|
|
247
247
|
* Create PTY session
|
|
248
248
|
*
|
|
249
|
-
* Create a new pseudo-terminal (PTY) session for running shell commands and processes in
|
|
249
|
+
* Create a new pseudo-terminal (PTY) session for running shell commands and processes in Symbiotic Code.
|
|
250
250
|
*/
|
|
251
251
|
create(parameters, options) {
|
|
252
252
|
const params = buildClientParams([parameters], [
|
|
@@ -369,7 +369,7 @@ export class Config2 extends HeyApiClient {
|
|
|
369
369
|
/**
|
|
370
370
|
* Get configuration
|
|
371
371
|
*
|
|
372
|
-
* Retrieve the current
|
|
372
|
+
* Retrieve the current Symbiotic Code configuration settings and preferences.
|
|
373
373
|
*/
|
|
374
374
|
get(parameters, options) {
|
|
375
375
|
const params = buildClientParams([parameters], [
|
|
@@ -389,7 +389,7 @@ export class Config2 extends HeyApiClient {
|
|
|
389
389
|
/**
|
|
390
390
|
* Update configuration
|
|
391
391
|
*
|
|
392
|
-
* Update
|
|
392
|
+
* Update Symbiotic Code configuration settings and preferences.
|
|
393
393
|
*/
|
|
394
394
|
update(parameters, options) {
|
|
395
395
|
const params = buildClientParams([parameters], [
|
|
@@ -415,7 +415,7 @@ export class Config2 extends HeyApiClient {
|
|
|
415
415
|
/**
|
|
416
416
|
* List config providers
|
|
417
417
|
*
|
|
418
|
-
* Get a list of all configured AI providers and their default models in the
|
|
418
|
+
* Get a list of all configured AI providers and their default models in the Symbiotic Code system.
|
|
419
419
|
*/
|
|
420
420
|
providers(parameters, options) {
|
|
421
421
|
const params = buildClientParams([parameters], [
|
|
@@ -553,7 +553,7 @@ export class Session extends HeyApiClient {
|
|
|
553
553
|
/**
|
|
554
554
|
* List sessions
|
|
555
555
|
*
|
|
556
|
-
* Get a list of all
|
|
556
|
+
* Get a list of all Symbiotic Code sessions across projects, sorted by most recently updated. Archived sessions are excluded by default.
|
|
557
557
|
*/
|
|
558
558
|
list(parameters, options) {
|
|
559
559
|
const params = buildClientParams([parameters], [
|
|
@@ -717,7 +717,7 @@ export class Session2 extends HeyApiClient {
|
|
|
717
717
|
/**
|
|
718
718
|
* List sessions
|
|
719
719
|
*
|
|
720
|
-
* Get a list of all
|
|
720
|
+
* Get a list of all Symbiotic Code sessions, sorted by most recently updated.
|
|
721
721
|
*/
|
|
722
722
|
list(parameters, options) {
|
|
723
723
|
const params = buildClientParams([parameters], [
|
|
@@ -741,7 +741,7 @@ export class Session2 extends HeyApiClient {
|
|
|
741
741
|
/**
|
|
742
742
|
* Create session
|
|
743
743
|
*
|
|
744
|
-
* Create a new
|
|
744
|
+
* Create a new Symbiotic Code session for interacting with AI assistants and managing conversations.
|
|
745
745
|
*/
|
|
746
746
|
create(parameters, options) {
|
|
747
747
|
const params = buildClientParams([parameters], [
|
|
@@ -790,7 +790,7 @@ export class Session2 extends HeyApiClient {
|
|
|
790
790
|
/**
|
|
791
791
|
* Delete session
|
|
792
792
|
*
|
|
793
|
-
* Delete a
|
|
793
|
+
* Delete a Symbiotic Code session and permanently remove all associated data, including messages and history.
|
|
794
794
|
*/
|
|
795
795
|
delete(parameters, options) {
|
|
796
796
|
const params = buildClientParams([parameters], [
|
|
@@ -811,7 +811,7 @@ export class Session2 extends HeyApiClient {
|
|
|
811
811
|
/**
|
|
812
812
|
* Get session
|
|
813
813
|
*
|
|
814
|
-
* Retrieve detailed information about a specific
|
|
814
|
+
* Retrieve detailed information about a specific Symbiotic Code session.
|
|
815
815
|
*/
|
|
816
816
|
get(parameters, options) {
|
|
817
817
|
const params = buildClientParams([parameters], [
|
|
@@ -832,7 +832,7 @@ export class Session2 extends HeyApiClient {
|
|
|
832
832
|
/**
|
|
833
833
|
* Update session
|
|
834
834
|
*
|
|
835
|
-
* Update properties of an existing
|
|
835
|
+
* Update properties of an existing Symbiotic Code session, such as title or other metadata.
|
|
836
836
|
*/
|
|
837
837
|
update(parameters, options) {
|
|
838
838
|
const params = buildClientParams([parameters], [
|
|
@@ -860,7 +860,7 @@ export class Session2 extends HeyApiClient {
|
|
|
860
860
|
/**
|
|
861
861
|
* Get session children
|
|
862
862
|
*
|
|
863
|
-
* Retrieve all child sessions that were forked from the specified parent session in
|
|
863
|
+
* Retrieve all child sessions that were forked from the specified parent session in Symbiotic Code.
|
|
864
864
|
*/
|
|
865
865
|
children(parameters, options) {
|
|
866
866
|
const params = buildClientParams([parameters], [
|
|
@@ -881,7 +881,7 @@ export class Session2 extends HeyApiClient {
|
|
|
881
881
|
/**
|
|
882
882
|
* Get session todos
|
|
883
883
|
*
|
|
884
|
-
* Retrieve the todo list associated with a specific
|
|
884
|
+
* Retrieve the todo list associated with a specific Symbiotic Code session, showing tasks and action items.
|
|
885
885
|
*/
|
|
886
886
|
todo(parameters, options) {
|
|
887
887
|
const params = buildClientParams([parameters], [
|
|
@@ -2310,7 +2310,7 @@ export class Instance extends HeyApiClient {
|
|
|
2310
2310
|
/**
|
|
2311
2311
|
* Dispose instance
|
|
2312
2312
|
*
|
|
2313
|
-
* Clean up and dispose the current
|
|
2313
|
+
* Clean up and dispose the current Symbiotic Code instance, releasing all resources.
|
|
2314
2314
|
*/
|
|
2315
2315
|
dispose(parameters, options) {
|
|
2316
2316
|
const params = buildClientParams([parameters], [
|
|
@@ -2332,7 +2332,7 @@ export class Path extends HeyApiClient {
|
|
|
2332
2332
|
/**
|
|
2333
2333
|
* Get paths
|
|
2334
2334
|
*
|
|
2335
|
-
* Retrieve the current working directory and related path information for the
|
|
2335
|
+
* Retrieve the current working directory and related path information for the Symbiotic Code instance.
|
|
2336
2336
|
*/
|
|
2337
2337
|
get(parameters, options) {
|
|
2338
2338
|
const params = buildClientParams([parameters], [
|
|
@@ -2376,7 +2376,7 @@ export class Command extends HeyApiClient {
|
|
|
2376
2376
|
/**
|
|
2377
2377
|
* List commands
|
|
2378
2378
|
*
|
|
2379
|
-
* Get a list of all available commands in the
|
|
2379
|
+
* Get a list of all available commands in the Symbiotic Code system.
|
|
2380
2380
|
*/
|
|
2381
2381
|
list(parameters, options) {
|
|
2382
2382
|
const params = buildClientParams([parameters], [
|
|
@@ -2427,7 +2427,7 @@ export class App extends HeyApiClient {
|
|
|
2427
2427
|
/**
|
|
2428
2428
|
* List agents
|
|
2429
2429
|
*
|
|
2430
|
-
* Get a list of all available AI agents in the
|
|
2430
|
+
* Get a list of all available AI agents in the Symbiotic Code system.
|
|
2431
2431
|
*/
|
|
2432
2432
|
agents(parameters, options) {
|
|
2433
2433
|
const params = buildClientParams([parameters], [
|
|
@@ -2447,7 +2447,7 @@ export class App extends HeyApiClient {
|
|
|
2447
2447
|
/**
|
|
2448
2448
|
* List skills
|
|
2449
2449
|
*
|
|
2450
|
-
* Get a list of all available skills in the
|
|
2450
|
+
* Get a list of all available skills in the Symbiotic Code system.
|
|
2451
2451
|
*/
|
|
2452
2452
|
skills(parameters, options) {
|
|
2453
2453
|
const params = buildClientParams([parameters], [
|
|
@@ -1120,7 +1120,12 @@ export type Config = {
|
|
|
1120
1120
|
watcher?: {
|
|
1121
1121
|
ignore?: Array<string>;
|
|
1122
1122
|
};
|
|
1123
|
-
plugin?: Array<string
|
|
1123
|
+
plugin?: Array<string | [
|
|
1124
|
+
string,
|
|
1125
|
+
{
|
|
1126
|
+
[key: string]: unknown;
|
|
1127
|
+
}
|
|
1128
|
+
]>;
|
|
1124
1129
|
/**
|
|
1125
1130
|
* Enable or disable snapshot tracking. When false, filesystem snapshots are not recorded and undoing or reverting will not undo/redo file changes. Defaults to true.
|
|
1126
1131
|
*/
|