@lssm/example.agent-console 0.0.0-canary-20251225052113 → 0.0.0-canary-20251225071908

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.
@@ -1,88 +1,88 @@
1
- import * as _lssm_lib_schema117 from "@lssm/lib.schema";
1
+ import * as _lssm_lib_schema82 from "@lssm/lib.schema";
2
2
  import * as _lssm_lib_contracts3 from "@lssm/lib.contracts";
3
3
 
4
4
  //#region src/agent/agent.operation.d.ts
5
5
  /**
6
6
  * CreateAgentCommand - Creates a new agent configuration.
7
7
  */
8
- declare const CreateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema117.SchemaModel<{
8
+ declare const CreateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
9
9
  organizationId: {
10
- type: _lssm_lib_schema117.FieldType<string, string>;
10
+ type: _lssm_lib_schema82.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  name: {
14
- type: _lssm_lib_schema117.FieldType<string, string>;
14
+ type: _lssm_lib_schema82.FieldType<string, string>;
15
15
  isOptional: false;
16
16
  };
17
17
  slug: {
18
- type: _lssm_lib_schema117.FieldType<string, string>;
18
+ type: _lssm_lib_schema82.FieldType<string, string>;
19
19
  isOptional: false;
20
20
  };
21
21
  description: {
22
- type: _lssm_lib_schema117.FieldType<string, string>;
22
+ type: _lssm_lib_schema82.FieldType<string, string>;
23
23
  isOptional: true;
24
24
  };
25
25
  modelProvider: {
26
- type: _lssm_lib_schema117.EnumType<[string, string, string, string, string]>;
26
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
27
27
  isOptional: false;
28
28
  };
29
29
  modelName: {
30
- type: _lssm_lib_schema117.FieldType<string, string>;
30
+ type: _lssm_lib_schema82.FieldType<string, string>;
31
31
  isOptional: false;
32
32
  };
33
33
  modelConfig: {
34
- type: _lssm_lib_schema117.FieldType<Record<string, unknown>, Record<string, unknown>>;
34
+ type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
35
35
  isOptional: true;
36
36
  };
37
37
  systemPrompt: {
38
- type: _lssm_lib_schema117.FieldType<string, string>;
38
+ type: _lssm_lib_schema82.FieldType<string, string>;
39
39
  isOptional: false;
40
40
  };
41
41
  userPromptTemplate: {
42
- type: _lssm_lib_schema117.FieldType<string, string>;
42
+ type: _lssm_lib_schema82.FieldType<string, string>;
43
43
  isOptional: true;
44
44
  };
45
45
  toolIds: {
46
- type: _lssm_lib_schema117.FieldType<string, string>;
46
+ type: _lssm_lib_schema82.FieldType<string, string>;
47
47
  isArray: true;
48
48
  isOptional: true;
49
49
  };
50
50
  toolChoice: {
51
- type: _lssm_lib_schema117.EnumType<[string, string, string]>;
51
+ type: _lssm_lib_schema82.EnumType<[string, string, string]>;
52
52
  isOptional: true;
53
53
  };
54
54
  maxIterations: {
55
- type: _lssm_lib_schema117.FieldType<number, number>;
55
+ type: _lssm_lib_schema82.FieldType<number, number>;
56
56
  isOptional: true;
57
57
  };
58
58
  maxTokensPerRun: {
59
- type: _lssm_lib_schema117.FieldType<number, number>;
59
+ type: _lssm_lib_schema82.FieldType<number, number>;
60
60
  isOptional: true;
61
61
  };
62
62
  timeoutMs: {
63
- type: _lssm_lib_schema117.FieldType<number, number>;
63
+ type: _lssm_lib_schema82.FieldType<number, number>;
64
64
  isOptional: true;
65
65
  };
66
66
  tags: {
67
- type: _lssm_lib_schema117.FieldType<string, string>;
67
+ type: _lssm_lib_schema82.FieldType<string, string>;
68
68
  isArray: true;
69
69
  isOptional: true;
70
70
  };
71
- }>, _lssm_lib_schema117.SchemaModel<{
71
+ }>, _lssm_lib_schema82.SchemaModel<{
72
72
  id: {
73
- type: _lssm_lib_schema117.FieldType<string, string>;
73
+ type: _lssm_lib_schema82.FieldType<string, string>;
74
74
  isOptional: false;
75
75
  };
76
76
  name: {
77
- type: _lssm_lib_schema117.FieldType<string, string>;
77
+ type: _lssm_lib_schema82.FieldType<string, string>;
78
78
  isOptional: false;
79
79
  };
80
80
  slug: {
81
- type: _lssm_lib_schema117.FieldType<string, string>;
81
+ type: _lssm_lib_schema82.FieldType<string, string>;
82
82
  isOptional: false;
83
83
  };
84
84
  status: {
85
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
85
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
86
86
  isOptional: false;
87
87
  };
88
88
  }>, {
@@ -92,76 +92,76 @@ declare const CreateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_s
92
92
  /**
93
93
  * UpdateAgentCommand - Updates an existing agent.
94
94
  */
95
- declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema117.SchemaModel<{
95
+ declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
96
96
  agentId: {
97
- type: _lssm_lib_schema117.FieldType<string, string>;
97
+ type: _lssm_lib_schema82.FieldType<string, string>;
98
98
  isOptional: false;
99
99
  };
100
100
  name: {
101
- type: _lssm_lib_schema117.FieldType<string, string>;
101
+ type: _lssm_lib_schema82.FieldType<string, string>;
102
102
  isOptional: true;
103
103
  };
104
104
  description: {
105
- type: _lssm_lib_schema117.FieldType<string, string>;
105
+ type: _lssm_lib_schema82.FieldType<string, string>;
106
106
  isOptional: true;
107
107
  };
108
108
  status: {
109
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
109
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
110
110
  isOptional: true;
111
111
  };
112
112
  modelConfig: {
113
- type: _lssm_lib_schema117.FieldType<Record<string, unknown>, Record<string, unknown>>;
113
+ type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
114
114
  isOptional: true;
115
115
  };
116
116
  systemPrompt: {
117
- type: _lssm_lib_schema117.FieldType<string, string>;
117
+ type: _lssm_lib_schema82.FieldType<string, string>;
118
118
  isOptional: true;
119
119
  };
120
120
  userPromptTemplate: {
121
- type: _lssm_lib_schema117.FieldType<string, string>;
121
+ type: _lssm_lib_schema82.FieldType<string, string>;
122
122
  isOptional: true;
123
123
  };
124
124
  toolIds: {
125
- type: _lssm_lib_schema117.FieldType<string, string>;
125
+ type: _lssm_lib_schema82.FieldType<string, string>;
126
126
  isArray: true;
127
127
  isOptional: true;
128
128
  };
129
129
  toolChoice: {
130
- type: _lssm_lib_schema117.EnumType<[string, string, string]>;
130
+ type: _lssm_lib_schema82.EnumType<[string, string, string]>;
131
131
  isOptional: true;
132
132
  };
133
133
  maxIterations: {
134
- type: _lssm_lib_schema117.FieldType<number, number>;
134
+ type: _lssm_lib_schema82.FieldType<number, number>;
135
135
  isOptional: true;
136
136
  };
137
137
  maxTokensPerRun: {
138
- type: _lssm_lib_schema117.FieldType<number, number>;
138
+ type: _lssm_lib_schema82.FieldType<number, number>;
139
139
  isOptional: true;
140
140
  };
141
141
  timeoutMs: {
142
- type: _lssm_lib_schema117.FieldType<number, number>;
142
+ type: _lssm_lib_schema82.FieldType<number, number>;
143
143
  isOptional: true;
144
144
  };
145
145
  tags: {
146
- type: _lssm_lib_schema117.FieldType<string, string>;
146
+ type: _lssm_lib_schema82.FieldType<string, string>;
147
147
  isArray: true;
148
148
  isOptional: true;
149
149
  };
150
- }>, _lssm_lib_schema117.SchemaModel<{
150
+ }>, _lssm_lib_schema82.SchemaModel<{
151
151
  id: {
152
- type: _lssm_lib_schema117.FieldType<string, string>;
152
+ type: _lssm_lib_schema82.FieldType<string, string>;
153
153
  isOptional: false;
154
154
  };
155
155
  name: {
156
- type: _lssm_lib_schema117.FieldType<string, string>;
156
+ type: _lssm_lib_schema82.FieldType<string, string>;
157
157
  isOptional: false;
158
158
  };
159
159
  status: {
160
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
160
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
161
161
  isOptional: false;
162
162
  };
163
163
  updatedAt: {
164
- type: _lssm_lib_schema117.FieldType<Date, string>;
164
+ type: _lssm_lib_schema82.FieldType<Date, string>;
165
165
  isOptional: false;
166
166
  };
167
167
  }>, {
@@ -171,41 +171,41 @@ declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_s
171
171
  owners: "@agent-console-team"[];
172
172
  tags: string[];
173
173
  when: string;
174
- payload: _lssm_lib_schema117.SchemaModel<{
174
+ payload: _lssm_lib_schema82.SchemaModel<{
175
175
  id: {
176
- type: _lssm_lib_schema117.FieldType<string, string>;
176
+ type: _lssm_lib_schema82.FieldType<string, string>;
177
177
  isOptional: false;
178
178
  };
179
179
  name: {
180
- type: _lssm_lib_schema117.FieldType<string, string>;
180
+ type: _lssm_lib_schema82.FieldType<string, string>;
181
181
  isOptional: false;
182
182
  };
183
183
  slug: {
184
- type: _lssm_lib_schema117.FieldType<string, string>;
184
+ type: _lssm_lib_schema82.FieldType<string, string>;
185
185
  isOptional: false;
186
186
  };
187
187
  description: {
188
- type: _lssm_lib_schema117.FieldType<string, string>;
188
+ type: _lssm_lib_schema82.FieldType<string, string>;
189
189
  isOptional: true;
190
190
  };
191
191
  status: {
192
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
192
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
193
193
  isOptional: false;
194
194
  };
195
195
  modelProvider: {
196
- type: _lssm_lib_schema117.EnumType<[string, string, string, string, string]>;
196
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
197
197
  isOptional: false;
198
198
  };
199
199
  modelName: {
200
- type: _lssm_lib_schema117.FieldType<string, string>;
200
+ type: _lssm_lib_schema82.FieldType<string, string>;
201
201
  isOptional: false;
202
202
  };
203
203
  version: {
204
- type: _lssm_lib_schema117.FieldType<string, string>;
204
+ type: _lssm_lib_schema82.FieldType<string, string>;
205
205
  isOptional: false;
206
206
  };
207
207
  createdAt: {
208
- type: _lssm_lib_schema117.FieldType<Date, string>;
208
+ type: _lssm_lib_schema82.FieldType<Date, string>;
209
209
  isOptional: false;
210
210
  };
211
211
  }>;
@@ -213,118 +213,118 @@ declare const UpdateAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_s
213
213
  /**
214
214
  * GetAgentQuery - Retrieves an agent by ID.
215
215
  */
216
- declare const GetAgentQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema117.SchemaModel<{
216
+ declare const GetAgentQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
217
217
  agentId: {
218
- type: _lssm_lib_schema117.FieldType<string, string>;
218
+ type: _lssm_lib_schema82.FieldType<string, string>;
219
219
  isOptional: false;
220
220
  };
221
221
  includeTools: {
222
- type: _lssm_lib_schema117.FieldType<boolean, boolean>;
222
+ type: _lssm_lib_schema82.FieldType<boolean, boolean>;
223
223
  isOptional: true;
224
224
  };
225
- }>, _lssm_lib_schema117.SchemaModel<{
225
+ }>, _lssm_lib_schema82.SchemaModel<{
226
226
  id: {
227
- type: _lssm_lib_schema117.FieldType<string, string>;
227
+ type: _lssm_lib_schema82.FieldType<string, string>;
228
228
  isOptional: false;
229
229
  };
230
230
  organizationId: {
231
- type: _lssm_lib_schema117.FieldType<string, string>;
231
+ type: _lssm_lib_schema82.FieldType<string, string>;
232
232
  isOptional: false;
233
233
  };
234
234
  name: {
235
- type: _lssm_lib_schema117.FieldType<string, string>;
235
+ type: _lssm_lib_schema82.FieldType<string, string>;
236
236
  isOptional: false;
237
237
  };
238
238
  slug: {
239
- type: _lssm_lib_schema117.FieldType<string, string>;
239
+ type: _lssm_lib_schema82.FieldType<string, string>;
240
240
  isOptional: false;
241
241
  };
242
242
  description: {
243
- type: _lssm_lib_schema117.FieldType<string, string>;
243
+ type: _lssm_lib_schema82.FieldType<string, string>;
244
244
  isOptional: true;
245
245
  };
246
246
  status: {
247
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
247
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
248
248
  isOptional: false;
249
249
  };
250
250
  modelProvider: {
251
- type: _lssm_lib_schema117.EnumType<[string, string, string, string, string]>;
251
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
252
252
  isOptional: false;
253
253
  };
254
254
  modelName: {
255
- type: _lssm_lib_schema117.FieldType<string, string>;
255
+ type: _lssm_lib_schema82.FieldType<string, string>;
256
256
  isOptional: false;
257
257
  };
258
258
  modelConfig: {
259
- type: _lssm_lib_schema117.FieldType<Record<string, unknown>, Record<string, unknown>>;
259
+ type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
260
260
  isOptional: true;
261
261
  };
262
262
  systemPrompt: {
263
- type: _lssm_lib_schema117.FieldType<string, string>;
263
+ type: _lssm_lib_schema82.FieldType<string, string>;
264
264
  isOptional: false;
265
265
  };
266
266
  userPromptTemplate: {
267
- type: _lssm_lib_schema117.FieldType<string, string>;
267
+ type: _lssm_lib_schema82.FieldType<string, string>;
268
268
  isOptional: true;
269
269
  };
270
270
  toolIds: {
271
- type: _lssm_lib_schema117.FieldType<string, string>;
271
+ type: _lssm_lib_schema82.FieldType<string, string>;
272
272
  isArray: true;
273
273
  isOptional: true;
274
274
  };
275
275
  toolChoice: {
276
- type: _lssm_lib_schema117.EnumType<[string, string, string]>;
276
+ type: _lssm_lib_schema82.EnumType<[string, string, string]>;
277
277
  isOptional: false;
278
278
  };
279
279
  maxIterations: {
280
- type: _lssm_lib_schema117.FieldType<number, number>;
280
+ type: _lssm_lib_schema82.FieldType<number, number>;
281
281
  isOptional: false;
282
282
  };
283
283
  maxTokensPerRun: {
284
- type: _lssm_lib_schema117.FieldType<number, number>;
284
+ type: _lssm_lib_schema82.FieldType<number, number>;
285
285
  isOptional: true;
286
286
  };
287
287
  timeoutMs: {
288
- type: _lssm_lib_schema117.FieldType<number, number>;
288
+ type: _lssm_lib_schema82.FieldType<number, number>;
289
289
  isOptional: false;
290
290
  };
291
291
  version: {
292
- type: _lssm_lib_schema117.FieldType<string, string>;
292
+ type: _lssm_lib_schema82.FieldType<string, string>;
293
293
  isOptional: false;
294
294
  };
295
295
  tags: {
296
- type: _lssm_lib_schema117.FieldType<string, string>;
296
+ type: _lssm_lib_schema82.FieldType<string, string>;
297
297
  isArray: true;
298
298
  isOptional: true;
299
299
  };
300
300
  createdAt: {
301
- type: _lssm_lib_schema117.FieldType<Date, string>;
301
+ type: _lssm_lib_schema82.FieldType<Date, string>;
302
302
  isOptional: false;
303
303
  };
304
304
  updatedAt: {
305
- type: _lssm_lib_schema117.FieldType<Date, string>;
305
+ type: _lssm_lib_schema82.FieldType<Date, string>;
306
306
  isOptional: false;
307
307
  };
308
308
  tools: {
309
- type: _lssm_lib_schema117.SchemaModel<{
309
+ type: _lssm_lib_schema82.SchemaModel<{
310
310
  id: {
311
- type: _lssm_lib_schema117.FieldType<string, string>;
311
+ type: _lssm_lib_schema82.FieldType<string, string>;
312
312
  isOptional: false;
313
313
  };
314
314
  name: {
315
- type: _lssm_lib_schema117.FieldType<string, string>;
315
+ type: _lssm_lib_schema82.FieldType<string, string>;
316
316
  isOptional: false;
317
317
  };
318
318
  slug: {
319
- type: _lssm_lib_schema117.FieldType<string, string>;
319
+ type: _lssm_lib_schema82.FieldType<string, string>;
320
320
  isOptional: false;
321
321
  };
322
322
  description: {
323
- type: _lssm_lib_schema117.FieldType<string, string>;
323
+ type: _lssm_lib_schema82.FieldType<string, string>;
324
324
  isOptional: false;
325
325
  };
326
326
  category: {
327
- type: _lssm_lib_schema117.FieldType<string, string>;
327
+ type: _lssm_lib_schema82.FieldType<string, string>;
328
328
  isOptional: false;
329
329
  };
330
330
  }>;
@@ -335,70 +335,70 @@ declare const GetAgentQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema
335
335
  /**
336
336
  * ListAgentsQuery - Lists agents for an organization.
337
337
  */
338
- declare const ListAgentsQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema117.SchemaModel<{
338
+ declare const ListAgentsQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
339
339
  organizationId: {
340
- type: _lssm_lib_schema117.FieldType<string, string>;
340
+ type: _lssm_lib_schema82.FieldType<string, string>;
341
341
  isOptional: false;
342
342
  };
343
343
  status: {
344
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
344
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
345
345
  isOptional: true;
346
346
  };
347
347
  modelProvider: {
348
- type: _lssm_lib_schema117.EnumType<[string, string, string, string, string]>;
348
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
349
349
  isOptional: true;
350
350
  };
351
351
  search: {
352
- type: _lssm_lib_schema117.FieldType<string, string>;
352
+ type: _lssm_lib_schema82.FieldType<string, string>;
353
353
  isOptional: true;
354
354
  };
355
355
  limit: {
356
- type: _lssm_lib_schema117.FieldType<number, number>;
356
+ type: _lssm_lib_schema82.FieldType<number, number>;
357
357
  isOptional: true;
358
358
  defaultValue: number;
359
359
  };
360
360
  offset: {
361
- type: _lssm_lib_schema117.FieldType<number, number>;
361
+ type: _lssm_lib_schema82.FieldType<number, number>;
362
362
  isOptional: true;
363
363
  defaultValue: number;
364
364
  };
365
- }>, _lssm_lib_schema117.SchemaModel<{
365
+ }>, _lssm_lib_schema82.SchemaModel<{
366
366
  items: {
367
- type: _lssm_lib_schema117.SchemaModel<{
367
+ type: _lssm_lib_schema82.SchemaModel<{
368
368
  id: {
369
- type: _lssm_lib_schema117.FieldType<string, string>;
369
+ type: _lssm_lib_schema82.FieldType<string, string>;
370
370
  isOptional: false;
371
371
  };
372
372
  name: {
373
- type: _lssm_lib_schema117.FieldType<string, string>;
373
+ type: _lssm_lib_schema82.FieldType<string, string>;
374
374
  isOptional: false;
375
375
  };
376
376
  slug: {
377
- type: _lssm_lib_schema117.FieldType<string, string>;
377
+ type: _lssm_lib_schema82.FieldType<string, string>;
378
378
  isOptional: false;
379
379
  };
380
380
  description: {
381
- type: _lssm_lib_schema117.FieldType<string, string>;
381
+ type: _lssm_lib_schema82.FieldType<string, string>;
382
382
  isOptional: true;
383
383
  };
384
384
  status: {
385
- type: _lssm_lib_schema117.EnumType<[string, string, string, string]>;
385
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string]>;
386
386
  isOptional: false;
387
387
  };
388
388
  modelProvider: {
389
- type: _lssm_lib_schema117.EnumType<[string, string, string, string, string]>;
389
+ type: _lssm_lib_schema82.EnumType<[string, string, string, string, string]>;
390
390
  isOptional: false;
391
391
  };
392
392
  modelName: {
393
- type: _lssm_lib_schema117.FieldType<string, string>;
393
+ type: _lssm_lib_schema82.FieldType<string, string>;
394
394
  isOptional: false;
395
395
  };
396
396
  version: {
397
- type: _lssm_lib_schema117.FieldType<string, string>;
397
+ type: _lssm_lib_schema82.FieldType<string, string>;
398
398
  isOptional: false;
399
399
  };
400
400
  createdAt: {
401
- type: _lssm_lib_schema117.FieldType<Date, string>;
401
+ type: _lssm_lib_schema82.FieldType<Date, string>;
402
402
  isOptional: false;
403
403
  };
404
404
  }>;
@@ -406,63 +406,63 @@ declare const ListAgentsQuery: _lssm_lib_contracts3.OperationSpec<_lssm_lib_sche
406
406
  isOptional: false;
407
407
  };
408
408
  total: {
409
- type: _lssm_lib_schema117.FieldType<number, number>;
409
+ type: _lssm_lib_schema82.FieldType<number, number>;
410
410
  isOptional: false;
411
411
  };
412
412
  hasMore: {
413
- type: _lssm_lib_schema117.FieldType<boolean, boolean>;
413
+ type: _lssm_lib_schema82.FieldType<boolean, boolean>;
414
414
  isOptional: false;
415
415
  };
416
416
  }>, undefined>;
417
417
  /**
418
418
  * AssignToolToAgentCommand - Assigns a tool to an agent.
419
419
  */
420
- declare const AssignToolToAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema117.SchemaModel<{
420
+ declare const AssignToolToAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
421
421
  agentId: {
422
- type: _lssm_lib_schema117.FieldType<string, string>;
422
+ type: _lssm_lib_schema82.FieldType<string, string>;
423
423
  isOptional: false;
424
424
  };
425
425
  toolId: {
426
- type: _lssm_lib_schema117.FieldType<string, string>;
426
+ type: _lssm_lib_schema82.FieldType<string, string>;
427
427
  isOptional: false;
428
428
  };
429
429
  config: {
430
- type: _lssm_lib_schema117.FieldType<Record<string, unknown>, Record<string, unknown>>;
430
+ type: _lssm_lib_schema82.FieldType<Record<string, unknown>, Record<string, unknown>>;
431
431
  isOptional: true;
432
432
  };
433
433
  order: {
434
- type: _lssm_lib_schema117.FieldType<number, number>;
434
+ type: _lssm_lib_schema82.FieldType<number, number>;
435
435
  isOptional: true;
436
436
  };
437
- }>, _lssm_lib_schema117.SchemaModel<{
437
+ }>, _lssm_lib_schema82.SchemaModel<{
438
438
  agentToolId: {
439
- type: _lssm_lib_schema117.FieldType<string, string>;
439
+ type: _lssm_lib_schema82.FieldType<string, string>;
440
440
  isOptional: false;
441
441
  };
442
442
  agentId: {
443
- type: _lssm_lib_schema117.FieldType<string, string>;
443
+ type: _lssm_lib_schema82.FieldType<string, string>;
444
444
  isOptional: false;
445
445
  };
446
446
  toolId: {
447
- type: _lssm_lib_schema117.FieldType<string, string>;
447
+ type: _lssm_lib_schema82.FieldType<string, string>;
448
448
  isOptional: false;
449
449
  };
450
450
  }>, undefined>;
451
451
  /**
452
452
  * RemoveToolFromAgentCommand - Removes a tool from an agent.
453
453
  */
454
- declare const RemoveToolFromAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema117.SchemaModel<{
454
+ declare const RemoveToolFromAgentCommand: _lssm_lib_contracts3.OperationSpec<_lssm_lib_schema82.SchemaModel<{
455
455
  agentId: {
456
- type: _lssm_lib_schema117.FieldType<string, string>;
456
+ type: _lssm_lib_schema82.FieldType<string, string>;
457
457
  isOptional: false;
458
458
  };
459
459
  toolId: {
460
- type: _lssm_lib_schema117.FieldType<string, string>;
460
+ type: _lssm_lib_schema82.FieldType<string, string>;
461
461
  isOptional: false;
462
462
  };
463
- }>, _lssm_lib_schema117.SchemaModel<{
463
+ }>, _lssm_lib_schema82.SchemaModel<{
464
464
  success: {
465
- type: _lssm_lib_schema117.FieldType<boolean, boolean>;
465
+ type: _lssm_lib_schema82.FieldType<boolean, boolean>;
466
466
  isOptional: false;
467
467
  };
468
468
  }>, undefined>;
@@ -1 +1 @@
1
- {"version":3,"file":"agent.operation.d.ts","names":[],"sources":["../../src/agent/agent.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAgBa,yCAAkB,kCAAA;EAAlB,cAAA,EAAA;IAoEX,IAAA,EAAA,mBAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;;;;qBApE6B;EAAA,CAAA;;;;;;uCAAA,OAAA,CAAA,MAAA,EAAA,OAAA,CAAA,QAAA,CAAA,MAAA,EAAA,OAAA,CAAA,CAAA;IAAA,UAAA,EAAA,IAAA;EAyElB,CAAA;EAqEX,YAAA,EAAA;;;;;;;;;;;;;;;oBArE6B;EAAA,CAAA;;;;;;;;;;;;;;;;;;CAAA,CAAA,iCAAA,CAAA;EA0ElB,EAAA,EAAA;IAqDX,IAAA,EAxM6B,mBAAA,CAAA,SAwM7B,CAAA,MAAA,EAAA,MAAA,CAAA;;;EArDwB,IAAA,EAAA;;;;;;;;;;;;;;;;;;;cA1Eb,yCAAkB,kCAAA;;UAqE7B,mBAAA,CAAA;;;;;;;;;;;EAKwB,MAAA,EAAA;IA0Db,IAAA,8BAmEX,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;;;;;;IAnE0B,IAAA,+BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;oBAAA;EAAA,CAAA;EAwEf,aAAA,EAAA;IAkEX,IAAA,+BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;EAlEmC,SAAA,EAAA;;;;;IAAA,IAAA,+BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IAuExB,OAAA,EAAA,IAAA;IA6CX,UAAA,EAAA,IAAA;;mCA7CqC,CAAA;EAAA,EAAA,EAAA;UAnRR,mBAAA,CAAA;qBAmRQ;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAzM1B,oCAAa,kCAAA;;UAqDxB,mBAAA,CAAA;;;;;;;;;UArDwB,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA0Db,sCAAe,kCAAA;;UAmE1B,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAnE0B,mBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwEf,+CAAwB,kCAAA;;UAkEnC,mBAAA,CAAA;;;;;;;;;;;;;;;;;UAlEmC,mBAAA,CAAA;;;;;;;;;;;;;;;cAuExB,iDAA0B,kCAAA;;UA6CrC,mBAAA,CAAA;;;;;;;;;UA7CqC,mBAAA,CAAA"}
1
+ {"version":3,"file":"agent.operation.d.ts","names":[],"sources":["../../src/agent/agent.operation.ts"],"sourcesContent":[],"mappings":";;;;;;;cAgBa,yCAAkB,iCAAA;EAAlB,cAAA,EAAA;IAiFX,IAAA,EAAA,kBAAA,CAAA,SAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;;;;gBAjF6B,KAAA;EAAA,CAAA;;;;;;sCAAA,OAAA,CAAA,MAAA,EAAA,OAAA,CAAA,QAAA,CAAA,MAAA,EAAA,OAAA,CAAA,CAAA;IAAA,UAAA,EAAA,IAAA;EAsFlB,CAAA;EA8EX,YAAA,EAAA;;;;;;;;;;;;;;;gBA9E6B,IAAA;EAAA,CAAA;;;;;;;;;;;;;;;;;;CAAA,CAAA,gCAAA,CAAA;EAmFlB,EAAA,EAAA;IA0DX,IAAA,EAnO6B,kBAAA,CAAA,SAmO7B,CAAA,MAAA,EAAA,MAAA,CAAA;;;EA1DwB,IAAA,EAAA;;;;;;;;;;;;;;;;;;;cAnFb,yCAAkB,iCAAA;;UA8E7B,kBAAA,CAAA;;;;;;;;;;;EAKwB,MAAA,EAAA;IA+Db,IAAA,6BAmEX,CAAA,CAAA,MAAA,EAAA,MAAA,EAAA,MAAA,EAAA,MAAA,CAAA,CAAA;IAAA,UAAA,EAAA,IAAA;;;;;;;IAnE0B,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;;;;;;;;oBAAA;EAAA,CAAA;EAwEf,aAAA,EAAA;IAsEX,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;;;;;;;EAtEmC,SAAA,EAAA;;;;;IAAA,IAAA,8BAAA,CAAA,MAAA,EAAA,MAAA,CAAA;IA2ExB,OAAA,EAAA,IAAA;IA6CX,UAAA,EAAA,IAAA;;kCA7CqC,CAAA;EAAA,EAAA,EAAA;UArSR,kBAAA,CAAA;qBAqSQ;EAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAlN1B,oCAAa,iCAAA;;UA0DxB,kBAAA,CAAA;;;;;;;;;UA1DwB,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cA+Db,sCAAe,iCAAA;;UAmE1B,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAnE0B,kBAAA,CAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAwEf,+CAAwB,iCAAA;;UAsEnC,kBAAA,CAAA;;;;;;;;;;;;;;;;;UAtEmC,kBAAA,CAAA;;;;;;;;;;;;;;;cA2ExB,iDAA0B,iCAAA;;UA6CrC,kBAAA,CAAA;;;;;;;;;UA7CqC,kBAAA,CAAA"}