@lssm/example.agent-console 0.0.0-canary-20251207012602 → 0.0.0-canary-20251207013726

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,260 +1,260 @@
1
- import * as _lssm_lib_schema517 from "@lssm/lib.schema";
2
- import * as _lssm_lib_contracts21 from "@lssm/lib.contracts";
1
+ import * as _lssm_lib_schema766 from "@lssm/lib.schema";
2
+ import * as _lssm_lib_contracts26 from "@lssm/lib.contracts";
3
3
 
4
4
  //#region src/contracts/agent.d.ts
5
- declare const AgentStatusEnum: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
6
- declare const ModelProviderEnum: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
7
- declare const ToolChoiceEnum: _lssm_lib_schema517.EnumType<[string, string, string]>;
8
- declare const AgentModel: _lssm_lib_schema517.SchemaModel<{
5
+ declare const AgentStatusEnum: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
6
+ declare const ModelProviderEnum: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
7
+ declare const ToolChoiceEnum: _lssm_lib_schema766.EnumType<[string, string, string]>;
8
+ declare const AgentModel: _lssm_lib_schema766.SchemaModel<{
9
9
  id: {
10
- type: _lssm_lib_schema517.FieldType<string, string>;
10
+ type: _lssm_lib_schema766.FieldType<string, string>;
11
11
  isOptional: false;
12
12
  };
13
13
  organizationId: {
14
- type: _lssm_lib_schema517.FieldType<string, string>;
14
+ type: _lssm_lib_schema766.FieldType<string, string>;
15
15
  isOptional: false;
16
16
  };
17
17
  name: {
18
- type: _lssm_lib_schema517.FieldType<string, string>;
18
+ type: _lssm_lib_schema766.FieldType<string, string>;
19
19
  isOptional: false;
20
20
  };
21
21
  slug: {
22
- type: _lssm_lib_schema517.FieldType<string, string>;
22
+ type: _lssm_lib_schema766.FieldType<string, string>;
23
23
  isOptional: false;
24
24
  };
25
25
  description: {
26
- type: _lssm_lib_schema517.FieldType<string, string>;
26
+ type: _lssm_lib_schema766.FieldType<string, string>;
27
27
  isOptional: true;
28
28
  };
29
29
  status: {
30
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
30
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
31
31
  isOptional: false;
32
32
  };
33
33
  modelProvider: {
34
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
34
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
35
35
  isOptional: false;
36
36
  };
37
37
  modelName: {
38
- type: _lssm_lib_schema517.FieldType<string, string>;
38
+ type: _lssm_lib_schema766.FieldType<string, string>;
39
39
  isOptional: false;
40
40
  };
41
41
  modelConfig: {
42
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
42
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
43
43
  isOptional: true;
44
44
  };
45
45
  systemPrompt: {
46
- type: _lssm_lib_schema517.FieldType<string, string>;
46
+ type: _lssm_lib_schema766.FieldType<string, string>;
47
47
  isOptional: false;
48
48
  };
49
49
  userPromptTemplate: {
50
- type: _lssm_lib_schema517.FieldType<string, string>;
50
+ type: _lssm_lib_schema766.FieldType<string, string>;
51
51
  isOptional: true;
52
52
  };
53
53
  toolIds: {
54
- type: _lssm_lib_schema517.FieldType<string, string>;
54
+ type: _lssm_lib_schema766.FieldType<string, string>;
55
55
  isArray: true;
56
56
  isOptional: true;
57
57
  };
58
58
  toolChoice: {
59
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
59
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
60
60
  isOptional: false;
61
61
  defaultValue: string;
62
62
  };
63
63
  maxIterations: {
64
- type: _lssm_lib_schema517.FieldType<number, number>;
64
+ type: _lssm_lib_schema766.FieldType<number, number>;
65
65
  isOptional: false;
66
66
  defaultValue: number;
67
67
  };
68
68
  maxTokensPerRun: {
69
- type: _lssm_lib_schema517.FieldType<number, number>;
69
+ type: _lssm_lib_schema766.FieldType<number, number>;
70
70
  isOptional: true;
71
71
  };
72
72
  timeoutMs: {
73
- type: _lssm_lib_schema517.FieldType<number, number>;
73
+ type: _lssm_lib_schema766.FieldType<number, number>;
74
74
  isOptional: false;
75
75
  defaultValue: number;
76
76
  };
77
77
  version: {
78
- type: _lssm_lib_schema517.FieldType<string, string>;
78
+ type: _lssm_lib_schema766.FieldType<string, string>;
79
79
  isOptional: false;
80
80
  };
81
81
  tags: {
82
- type: _lssm_lib_schema517.FieldType<string, string>;
82
+ type: _lssm_lib_schema766.FieldType<string, string>;
83
83
  isArray: true;
84
84
  isOptional: true;
85
85
  };
86
86
  createdAt: {
87
- type: _lssm_lib_schema517.FieldType<Date, string>;
87
+ type: _lssm_lib_schema766.FieldType<Date, string>;
88
88
  isOptional: false;
89
89
  };
90
90
  updatedAt: {
91
- type: _lssm_lib_schema517.FieldType<Date, string>;
91
+ type: _lssm_lib_schema766.FieldType<Date, string>;
92
92
  isOptional: false;
93
93
  };
94
94
  }>;
95
- declare const AgentSummaryModel: _lssm_lib_schema517.SchemaModel<{
95
+ declare const AgentSummaryModel: _lssm_lib_schema766.SchemaModel<{
96
96
  id: {
97
- type: _lssm_lib_schema517.FieldType<string, string>;
97
+ type: _lssm_lib_schema766.FieldType<string, string>;
98
98
  isOptional: false;
99
99
  };
100
100
  name: {
101
- type: _lssm_lib_schema517.FieldType<string, string>;
101
+ type: _lssm_lib_schema766.FieldType<string, string>;
102
102
  isOptional: false;
103
103
  };
104
104
  slug: {
105
- type: _lssm_lib_schema517.FieldType<string, string>;
105
+ type: _lssm_lib_schema766.FieldType<string, string>;
106
106
  isOptional: false;
107
107
  };
108
108
  description: {
109
- type: _lssm_lib_schema517.FieldType<string, string>;
109
+ type: _lssm_lib_schema766.FieldType<string, string>;
110
110
  isOptional: true;
111
111
  };
112
112
  status: {
113
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
113
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
114
114
  isOptional: false;
115
115
  };
116
116
  modelProvider: {
117
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
117
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
118
118
  isOptional: false;
119
119
  };
120
120
  modelName: {
121
- type: _lssm_lib_schema517.FieldType<string, string>;
121
+ type: _lssm_lib_schema766.FieldType<string, string>;
122
122
  isOptional: false;
123
123
  };
124
124
  version: {
125
- type: _lssm_lib_schema517.FieldType<string, string>;
125
+ type: _lssm_lib_schema766.FieldType<string, string>;
126
126
  isOptional: false;
127
127
  };
128
128
  createdAt: {
129
- type: _lssm_lib_schema517.FieldType<Date, string>;
129
+ type: _lssm_lib_schema766.FieldType<Date, string>;
130
130
  isOptional: false;
131
131
  };
132
132
  }>;
133
- declare const AgentToolRefModel: _lssm_lib_schema517.SchemaModel<{
133
+ declare const AgentToolRefModel: _lssm_lib_schema766.SchemaModel<{
134
134
  id: {
135
- type: _lssm_lib_schema517.FieldType<string, string>;
135
+ type: _lssm_lib_schema766.FieldType<string, string>;
136
136
  isOptional: false;
137
137
  };
138
138
  name: {
139
- type: _lssm_lib_schema517.FieldType<string, string>;
139
+ type: _lssm_lib_schema766.FieldType<string, string>;
140
140
  isOptional: false;
141
141
  };
142
142
  slug: {
143
- type: _lssm_lib_schema517.FieldType<string, string>;
143
+ type: _lssm_lib_schema766.FieldType<string, string>;
144
144
  isOptional: false;
145
145
  };
146
146
  description: {
147
- type: _lssm_lib_schema517.FieldType<string, string>;
147
+ type: _lssm_lib_schema766.FieldType<string, string>;
148
148
  isOptional: false;
149
149
  };
150
150
  category: {
151
- type: _lssm_lib_schema517.FieldType<string, string>;
151
+ type: _lssm_lib_schema766.FieldType<string, string>;
152
152
  isOptional: false;
153
153
  };
154
154
  }>;
155
- declare const AgentWithToolsModel: _lssm_lib_schema517.SchemaModel<{
155
+ declare const AgentWithToolsModel: _lssm_lib_schema766.SchemaModel<{
156
156
  id: {
157
- type: _lssm_lib_schema517.FieldType<string, string>;
157
+ type: _lssm_lib_schema766.FieldType<string, string>;
158
158
  isOptional: false;
159
159
  };
160
160
  organizationId: {
161
- type: _lssm_lib_schema517.FieldType<string, string>;
161
+ type: _lssm_lib_schema766.FieldType<string, string>;
162
162
  isOptional: false;
163
163
  };
164
164
  name: {
165
- type: _lssm_lib_schema517.FieldType<string, string>;
165
+ type: _lssm_lib_schema766.FieldType<string, string>;
166
166
  isOptional: false;
167
167
  };
168
168
  slug: {
169
- type: _lssm_lib_schema517.FieldType<string, string>;
169
+ type: _lssm_lib_schema766.FieldType<string, string>;
170
170
  isOptional: false;
171
171
  };
172
172
  description: {
173
- type: _lssm_lib_schema517.FieldType<string, string>;
173
+ type: _lssm_lib_schema766.FieldType<string, string>;
174
174
  isOptional: true;
175
175
  };
176
176
  status: {
177
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
177
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
178
178
  isOptional: false;
179
179
  };
180
180
  modelProvider: {
181
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
181
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
182
182
  isOptional: false;
183
183
  };
184
184
  modelName: {
185
- type: _lssm_lib_schema517.FieldType<string, string>;
185
+ type: _lssm_lib_schema766.FieldType<string, string>;
186
186
  isOptional: false;
187
187
  };
188
188
  modelConfig: {
189
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
189
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
190
190
  isOptional: true;
191
191
  };
192
192
  systemPrompt: {
193
- type: _lssm_lib_schema517.FieldType<string, string>;
193
+ type: _lssm_lib_schema766.FieldType<string, string>;
194
194
  isOptional: false;
195
195
  };
196
196
  userPromptTemplate: {
197
- type: _lssm_lib_schema517.FieldType<string, string>;
197
+ type: _lssm_lib_schema766.FieldType<string, string>;
198
198
  isOptional: true;
199
199
  };
200
200
  toolIds: {
201
- type: _lssm_lib_schema517.FieldType<string, string>;
201
+ type: _lssm_lib_schema766.FieldType<string, string>;
202
202
  isArray: true;
203
203
  isOptional: true;
204
204
  };
205
205
  toolChoice: {
206
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
206
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
207
207
  isOptional: false;
208
208
  };
209
209
  maxIterations: {
210
- type: _lssm_lib_schema517.FieldType<number, number>;
210
+ type: _lssm_lib_schema766.FieldType<number, number>;
211
211
  isOptional: false;
212
212
  };
213
213
  maxTokensPerRun: {
214
- type: _lssm_lib_schema517.FieldType<number, number>;
214
+ type: _lssm_lib_schema766.FieldType<number, number>;
215
215
  isOptional: true;
216
216
  };
217
217
  timeoutMs: {
218
- type: _lssm_lib_schema517.FieldType<number, number>;
218
+ type: _lssm_lib_schema766.FieldType<number, number>;
219
219
  isOptional: false;
220
220
  };
221
221
  version: {
222
- type: _lssm_lib_schema517.FieldType<string, string>;
222
+ type: _lssm_lib_schema766.FieldType<string, string>;
223
223
  isOptional: false;
224
224
  };
225
225
  tags: {
226
- type: _lssm_lib_schema517.FieldType<string, string>;
226
+ type: _lssm_lib_schema766.FieldType<string, string>;
227
227
  isArray: true;
228
228
  isOptional: true;
229
229
  };
230
230
  createdAt: {
231
- type: _lssm_lib_schema517.FieldType<Date, string>;
231
+ type: _lssm_lib_schema766.FieldType<Date, string>;
232
232
  isOptional: false;
233
233
  };
234
234
  updatedAt: {
235
- type: _lssm_lib_schema517.FieldType<Date, string>;
235
+ type: _lssm_lib_schema766.FieldType<Date, string>;
236
236
  isOptional: false;
237
237
  };
238
238
  tools: {
239
- type: _lssm_lib_schema517.SchemaModel<{
239
+ type: _lssm_lib_schema766.SchemaModel<{
240
240
  id: {
241
- type: _lssm_lib_schema517.FieldType<string, string>;
241
+ type: _lssm_lib_schema766.FieldType<string, string>;
242
242
  isOptional: false;
243
243
  };
244
244
  name: {
245
- type: _lssm_lib_schema517.FieldType<string, string>;
245
+ type: _lssm_lib_schema766.FieldType<string, string>;
246
246
  isOptional: false;
247
247
  };
248
248
  slug: {
249
- type: _lssm_lib_schema517.FieldType<string, string>;
249
+ type: _lssm_lib_schema766.FieldType<string, string>;
250
250
  isOptional: false;
251
251
  };
252
252
  description: {
253
- type: _lssm_lib_schema517.FieldType<string, string>;
253
+ type: _lssm_lib_schema766.FieldType<string, string>;
254
254
  isOptional: false;
255
255
  };
256
256
  category: {
257
- type: _lssm_lib_schema517.FieldType<string, string>;
257
+ type: _lssm_lib_schema766.FieldType<string, string>;
258
258
  isOptional: false;
259
259
  };
260
260
  }>;
@@ -262,122 +262,122 @@ declare const AgentWithToolsModel: _lssm_lib_schema517.SchemaModel<{
262
262
  isOptional: true;
263
263
  };
264
264
  }>;
265
- declare const CreateAgentInputModel: _lssm_lib_schema517.SchemaModel<{
265
+ declare const CreateAgentInputModel: _lssm_lib_schema766.SchemaModel<{
266
266
  organizationId: {
267
- type: _lssm_lib_schema517.FieldType<string, string>;
267
+ type: _lssm_lib_schema766.FieldType<string, string>;
268
268
  isOptional: false;
269
269
  };
270
270
  name: {
271
- type: _lssm_lib_schema517.FieldType<string, string>;
271
+ type: _lssm_lib_schema766.FieldType<string, string>;
272
272
  isOptional: false;
273
273
  };
274
274
  slug: {
275
- type: _lssm_lib_schema517.FieldType<string, string>;
275
+ type: _lssm_lib_schema766.FieldType<string, string>;
276
276
  isOptional: false;
277
277
  };
278
278
  description: {
279
- type: _lssm_lib_schema517.FieldType<string, string>;
279
+ type: _lssm_lib_schema766.FieldType<string, string>;
280
280
  isOptional: true;
281
281
  };
282
282
  modelProvider: {
283
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
283
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
284
284
  isOptional: false;
285
285
  };
286
286
  modelName: {
287
- type: _lssm_lib_schema517.FieldType<string, string>;
287
+ type: _lssm_lib_schema766.FieldType<string, string>;
288
288
  isOptional: false;
289
289
  };
290
290
  modelConfig: {
291
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
291
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
292
292
  isOptional: true;
293
293
  };
294
294
  systemPrompt: {
295
- type: _lssm_lib_schema517.FieldType<string, string>;
295
+ type: _lssm_lib_schema766.FieldType<string, string>;
296
296
  isOptional: false;
297
297
  };
298
298
  userPromptTemplate: {
299
- type: _lssm_lib_schema517.FieldType<string, string>;
299
+ type: _lssm_lib_schema766.FieldType<string, string>;
300
300
  isOptional: true;
301
301
  };
302
302
  toolIds: {
303
- type: _lssm_lib_schema517.FieldType<string, string>;
303
+ type: _lssm_lib_schema766.FieldType<string, string>;
304
304
  isArray: true;
305
305
  isOptional: true;
306
306
  };
307
307
  toolChoice: {
308
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
308
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
309
309
  isOptional: true;
310
310
  };
311
311
  maxIterations: {
312
- type: _lssm_lib_schema517.FieldType<number, number>;
312
+ type: _lssm_lib_schema766.FieldType<number, number>;
313
313
  isOptional: true;
314
314
  };
315
315
  maxTokensPerRun: {
316
- type: _lssm_lib_schema517.FieldType<number, number>;
316
+ type: _lssm_lib_schema766.FieldType<number, number>;
317
317
  isOptional: true;
318
318
  };
319
319
  timeoutMs: {
320
- type: _lssm_lib_schema517.FieldType<number, number>;
320
+ type: _lssm_lib_schema766.FieldType<number, number>;
321
321
  isOptional: true;
322
322
  };
323
323
  tags: {
324
- type: _lssm_lib_schema517.FieldType<string, string>;
324
+ type: _lssm_lib_schema766.FieldType<string, string>;
325
325
  isArray: true;
326
326
  isOptional: true;
327
327
  };
328
328
  }>;
329
- declare const UpdateAgentInputModel: _lssm_lib_schema517.SchemaModel<{
329
+ declare const UpdateAgentInputModel: _lssm_lib_schema766.SchemaModel<{
330
330
  agentId: {
331
- type: _lssm_lib_schema517.FieldType<string, string>;
331
+ type: _lssm_lib_schema766.FieldType<string, string>;
332
332
  isOptional: false;
333
333
  };
334
334
  name: {
335
- type: _lssm_lib_schema517.FieldType<string, string>;
335
+ type: _lssm_lib_schema766.FieldType<string, string>;
336
336
  isOptional: true;
337
337
  };
338
338
  description: {
339
- type: _lssm_lib_schema517.FieldType<string, string>;
339
+ type: _lssm_lib_schema766.FieldType<string, string>;
340
340
  isOptional: true;
341
341
  };
342
342
  status: {
343
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
343
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
344
344
  isOptional: true;
345
345
  };
346
346
  modelConfig: {
347
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
347
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
348
348
  isOptional: true;
349
349
  };
350
350
  systemPrompt: {
351
- type: _lssm_lib_schema517.FieldType<string, string>;
351
+ type: _lssm_lib_schema766.FieldType<string, string>;
352
352
  isOptional: true;
353
353
  };
354
354
  userPromptTemplate: {
355
- type: _lssm_lib_schema517.FieldType<string, string>;
355
+ type: _lssm_lib_schema766.FieldType<string, string>;
356
356
  isOptional: true;
357
357
  };
358
358
  toolIds: {
359
- type: _lssm_lib_schema517.FieldType<string, string>;
359
+ type: _lssm_lib_schema766.FieldType<string, string>;
360
360
  isArray: true;
361
361
  isOptional: true;
362
362
  };
363
363
  toolChoice: {
364
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
364
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
365
365
  isOptional: true;
366
366
  };
367
367
  maxIterations: {
368
- type: _lssm_lib_schema517.FieldType<number, number>;
368
+ type: _lssm_lib_schema766.FieldType<number, number>;
369
369
  isOptional: true;
370
370
  };
371
371
  maxTokensPerRun: {
372
- type: _lssm_lib_schema517.FieldType<number, number>;
372
+ type: _lssm_lib_schema766.FieldType<number, number>;
373
373
  isOptional: true;
374
374
  };
375
375
  timeoutMs: {
376
- type: _lssm_lib_schema517.FieldType<number, number>;
376
+ type: _lssm_lib_schema766.FieldType<number, number>;
377
377
  isOptional: true;
378
378
  };
379
379
  tags: {
380
- type: _lssm_lib_schema517.FieldType<string, string>;
380
+ type: _lssm_lib_schema766.FieldType<string, string>;
381
381
  isArray: true;
382
382
  isOptional: true;
383
383
  };
@@ -385,125 +385,125 @@ declare const UpdateAgentInputModel: _lssm_lib_schema517.SchemaModel<{
385
385
  /**
386
386
  * CreateAgentCommand - Creates a new agent configuration
387
387
  */
388
- declare const CreateAgentCommand: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema517.SchemaModel<{
388
+ declare const CreateAgentCommand: _lssm_lib_contracts26.ContractSpec<_lssm_lib_schema766.SchemaModel<{
389
389
  organizationId: {
390
- type: _lssm_lib_schema517.FieldType<string, string>;
390
+ type: _lssm_lib_schema766.FieldType<string, string>;
391
391
  isOptional: false;
392
392
  };
393
393
  name: {
394
- type: _lssm_lib_schema517.FieldType<string, string>;
394
+ type: _lssm_lib_schema766.FieldType<string, string>;
395
395
  isOptional: false;
396
396
  };
397
397
  slug: {
398
- type: _lssm_lib_schema517.FieldType<string, string>;
398
+ type: _lssm_lib_schema766.FieldType<string, string>;
399
399
  isOptional: false;
400
400
  };
401
401
  description: {
402
- type: _lssm_lib_schema517.FieldType<string, string>;
402
+ type: _lssm_lib_schema766.FieldType<string, string>;
403
403
  isOptional: true;
404
404
  };
405
405
  modelProvider: {
406
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
406
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
407
407
  isOptional: false;
408
408
  };
409
409
  modelName: {
410
- type: _lssm_lib_schema517.FieldType<string, string>;
410
+ type: _lssm_lib_schema766.FieldType<string, string>;
411
411
  isOptional: false;
412
412
  };
413
413
  modelConfig: {
414
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
414
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
415
415
  isOptional: true;
416
416
  };
417
417
  systemPrompt: {
418
- type: _lssm_lib_schema517.FieldType<string, string>;
418
+ type: _lssm_lib_schema766.FieldType<string, string>;
419
419
  isOptional: false;
420
420
  };
421
421
  userPromptTemplate: {
422
- type: _lssm_lib_schema517.FieldType<string, string>;
422
+ type: _lssm_lib_schema766.FieldType<string, string>;
423
423
  isOptional: true;
424
424
  };
425
425
  toolIds: {
426
- type: _lssm_lib_schema517.FieldType<string, string>;
426
+ type: _lssm_lib_schema766.FieldType<string, string>;
427
427
  isArray: true;
428
428
  isOptional: true;
429
429
  };
430
430
  toolChoice: {
431
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
431
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
432
432
  isOptional: true;
433
433
  };
434
434
  maxIterations: {
435
- type: _lssm_lib_schema517.FieldType<number, number>;
435
+ type: _lssm_lib_schema766.FieldType<number, number>;
436
436
  isOptional: true;
437
437
  };
438
438
  maxTokensPerRun: {
439
- type: _lssm_lib_schema517.FieldType<number, number>;
439
+ type: _lssm_lib_schema766.FieldType<number, number>;
440
440
  isOptional: true;
441
441
  };
442
442
  timeoutMs: {
443
- type: _lssm_lib_schema517.FieldType<number, number>;
443
+ type: _lssm_lib_schema766.FieldType<number, number>;
444
444
  isOptional: true;
445
445
  };
446
446
  tags: {
447
- type: _lssm_lib_schema517.FieldType<string, string>;
447
+ type: _lssm_lib_schema766.FieldType<string, string>;
448
448
  isArray: true;
449
449
  isOptional: true;
450
450
  };
451
- }>, _lssm_lib_schema517.SchemaModel<{
451
+ }>, _lssm_lib_schema766.SchemaModel<{
452
452
  id: {
453
- type: _lssm_lib_schema517.FieldType<string, string>;
453
+ type: _lssm_lib_schema766.FieldType<string, string>;
454
454
  isOptional: false;
455
455
  };
456
456
  name: {
457
- type: _lssm_lib_schema517.FieldType<string, string>;
457
+ type: _lssm_lib_schema766.FieldType<string, string>;
458
458
  isOptional: false;
459
459
  };
460
460
  slug: {
461
- type: _lssm_lib_schema517.FieldType<string, string>;
461
+ type: _lssm_lib_schema766.FieldType<string, string>;
462
462
  isOptional: false;
463
463
  };
464
464
  status: {
465
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
465
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
466
466
  isOptional: false;
467
467
  };
468
468
  }>, {
469
469
  name: string;
470
470
  version: number;
471
471
  when: string;
472
- payload: _lssm_lib_schema517.SchemaModel<{
472
+ payload: _lssm_lib_schema766.SchemaModel<{
473
473
  id: {
474
- type: _lssm_lib_schema517.FieldType<string, string>;
474
+ type: _lssm_lib_schema766.FieldType<string, string>;
475
475
  isOptional: false;
476
476
  };
477
477
  name: {
478
- type: _lssm_lib_schema517.FieldType<string, string>;
478
+ type: _lssm_lib_schema766.FieldType<string, string>;
479
479
  isOptional: false;
480
480
  };
481
481
  slug: {
482
- type: _lssm_lib_schema517.FieldType<string, string>;
482
+ type: _lssm_lib_schema766.FieldType<string, string>;
483
483
  isOptional: false;
484
484
  };
485
485
  description: {
486
- type: _lssm_lib_schema517.FieldType<string, string>;
486
+ type: _lssm_lib_schema766.FieldType<string, string>;
487
487
  isOptional: true;
488
488
  };
489
489
  status: {
490
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
490
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
491
491
  isOptional: false;
492
492
  };
493
493
  modelProvider: {
494
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
494
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
495
495
  isOptional: false;
496
496
  };
497
497
  modelName: {
498
- type: _lssm_lib_schema517.FieldType<string, string>;
498
+ type: _lssm_lib_schema766.FieldType<string, string>;
499
499
  isOptional: false;
500
500
  };
501
501
  version: {
502
- type: _lssm_lib_schema517.FieldType<string, string>;
502
+ type: _lssm_lib_schema766.FieldType<string, string>;
503
503
  isOptional: false;
504
504
  };
505
505
  createdAt: {
506
- type: _lssm_lib_schema517.FieldType<Date, string>;
506
+ type: _lssm_lib_schema766.FieldType<Date, string>;
507
507
  isOptional: false;
508
508
  };
509
509
  }>;
@@ -511,117 +511,117 @@ declare const CreateAgentCommand: _lssm_lib_contracts21.ContractSpec<_lssm_lib_s
511
511
  /**
512
512
  * UpdateAgentCommand - Updates an existing agent
513
513
  */
514
- declare const UpdateAgentCommand: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema517.SchemaModel<{
514
+ declare const UpdateAgentCommand: _lssm_lib_contracts26.ContractSpec<_lssm_lib_schema766.SchemaModel<{
515
515
  agentId: {
516
- type: _lssm_lib_schema517.FieldType<string, string>;
516
+ type: _lssm_lib_schema766.FieldType<string, string>;
517
517
  isOptional: false;
518
518
  };
519
519
  name: {
520
- type: _lssm_lib_schema517.FieldType<string, string>;
520
+ type: _lssm_lib_schema766.FieldType<string, string>;
521
521
  isOptional: true;
522
522
  };
523
523
  description: {
524
- type: _lssm_lib_schema517.FieldType<string, string>;
524
+ type: _lssm_lib_schema766.FieldType<string, string>;
525
525
  isOptional: true;
526
526
  };
527
527
  status: {
528
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
528
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
529
529
  isOptional: true;
530
530
  };
531
531
  modelConfig: {
532
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
532
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
533
533
  isOptional: true;
534
534
  };
535
535
  systemPrompt: {
536
- type: _lssm_lib_schema517.FieldType<string, string>;
536
+ type: _lssm_lib_schema766.FieldType<string, string>;
537
537
  isOptional: true;
538
538
  };
539
539
  userPromptTemplate: {
540
- type: _lssm_lib_schema517.FieldType<string, string>;
540
+ type: _lssm_lib_schema766.FieldType<string, string>;
541
541
  isOptional: true;
542
542
  };
543
543
  toolIds: {
544
- type: _lssm_lib_schema517.FieldType<string, string>;
544
+ type: _lssm_lib_schema766.FieldType<string, string>;
545
545
  isArray: true;
546
546
  isOptional: true;
547
547
  };
548
548
  toolChoice: {
549
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
549
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
550
550
  isOptional: true;
551
551
  };
552
552
  maxIterations: {
553
- type: _lssm_lib_schema517.FieldType<number, number>;
553
+ type: _lssm_lib_schema766.FieldType<number, number>;
554
554
  isOptional: true;
555
555
  };
556
556
  maxTokensPerRun: {
557
- type: _lssm_lib_schema517.FieldType<number, number>;
557
+ type: _lssm_lib_schema766.FieldType<number, number>;
558
558
  isOptional: true;
559
559
  };
560
560
  timeoutMs: {
561
- type: _lssm_lib_schema517.FieldType<number, number>;
561
+ type: _lssm_lib_schema766.FieldType<number, number>;
562
562
  isOptional: true;
563
563
  };
564
564
  tags: {
565
- type: _lssm_lib_schema517.FieldType<string, string>;
565
+ type: _lssm_lib_schema766.FieldType<string, string>;
566
566
  isArray: true;
567
567
  isOptional: true;
568
568
  };
569
- }>, _lssm_lib_schema517.SchemaModel<{
569
+ }>, _lssm_lib_schema766.SchemaModel<{
570
570
  id: {
571
- type: _lssm_lib_schema517.FieldType<string, string>;
571
+ type: _lssm_lib_schema766.FieldType<string, string>;
572
572
  isOptional: false;
573
573
  };
574
574
  name: {
575
- type: _lssm_lib_schema517.FieldType<string, string>;
575
+ type: _lssm_lib_schema766.FieldType<string, string>;
576
576
  isOptional: false;
577
577
  };
578
578
  status: {
579
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
579
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
580
580
  isOptional: false;
581
581
  };
582
582
  updatedAt: {
583
- type: _lssm_lib_schema517.FieldType<Date, string>;
583
+ type: _lssm_lib_schema766.FieldType<Date, string>;
584
584
  isOptional: false;
585
585
  };
586
586
  }>, {
587
587
  name: string;
588
588
  version: number;
589
589
  when: string;
590
- payload: _lssm_lib_schema517.SchemaModel<{
590
+ payload: _lssm_lib_schema766.SchemaModel<{
591
591
  id: {
592
- type: _lssm_lib_schema517.FieldType<string, string>;
592
+ type: _lssm_lib_schema766.FieldType<string, string>;
593
593
  isOptional: false;
594
594
  };
595
595
  name: {
596
- type: _lssm_lib_schema517.FieldType<string, string>;
596
+ type: _lssm_lib_schema766.FieldType<string, string>;
597
597
  isOptional: false;
598
598
  };
599
599
  slug: {
600
- type: _lssm_lib_schema517.FieldType<string, string>;
600
+ type: _lssm_lib_schema766.FieldType<string, string>;
601
601
  isOptional: false;
602
602
  };
603
603
  description: {
604
- type: _lssm_lib_schema517.FieldType<string, string>;
604
+ type: _lssm_lib_schema766.FieldType<string, string>;
605
605
  isOptional: true;
606
606
  };
607
607
  status: {
608
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
608
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
609
609
  isOptional: false;
610
610
  };
611
611
  modelProvider: {
612
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
612
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
613
613
  isOptional: false;
614
614
  };
615
615
  modelName: {
616
- type: _lssm_lib_schema517.FieldType<string, string>;
616
+ type: _lssm_lib_schema766.FieldType<string, string>;
617
617
  isOptional: false;
618
618
  };
619
619
  version: {
620
- type: _lssm_lib_schema517.FieldType<string, string>;
620
+ type: _lssm_lib_schema766.FieldType<string, string>;
621
621
  isOptional: false;
622
622
  };
623
623
  createdAt: {
624
- type: _lssm_lib_schema517.FieldType<Date, string>;
624
+ type: _lssm_lib_schema766.FieldType<Date, string>;
625
625
  isOptional: false;
626
626
  };
627
627
  }>;
@@ -629,118 +629,118 @@ declare const UpdateAgentCommand: _lssm_lib_contracts21.ContractSpec<_lssm_lib_s
629
629
  /**
630
630
  * GetAgentQuery - Retrieves an agent by ID
631
631
  */
632
- declare const GetAgentQuery: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema517.SchemaModel<{
632
+ declare const GetAgentQuery: _lssm_lib_contracts26.ContractSpec<_lssm_lib_schema766.SchemaModel<{
633
633
  agentId: {
634
- type: _lssm_lib_schema517.FieldType<string, string>;
634
+ type: _lssm_lib_schema766.FieldType<string, string>;
635
635
  isOptional: false;
636
636
  };
637
637
  includeTools: {
638
- type: _lssm_lib_schema517.FieldType<boolean, boolean>;
638
+ type: _lssm_lib_schema766.FieldType<boolean, boolean>;
639
639
  isOptional: true;
640
640
  };
641
- }>, _lssm_lib_schema517.SchemaModel<{
641
+ }>, _lssm_lib_schema766.SchemaModel<{
642
642
  id: {
643
- type: _lssm_lib_schema517.FieldType<string, string>;
643
+ type: _lssm_lib_schema766.FieldType<string, string>;
644
644
  isOptional: false;
645
645
  };
646
646
  organizationId: {
647
- type: _lssm_lib_schema517.FieldType<string, string>;
647
+ type: _lssm_lib_schema766.FieldType<string, string>;
648
648
  isOptional: false;
649
649
  };
650
650
  name: {
651
- type: _lssm_lib_schema517.FieldType<string, string>;
651
+ type: _lssm_lib_schema766.FieldType<string, string>;
652
652
  isOptional: false;
653
653
  };
654
654
  slug: {
655
- type: _lssm_lib_schema517.FieldType<string, string>;
655
+ type: _lssm_lib_schema766.FieldType<string, string>;
656
656
  isOptional: false;
657
657
  };
658
658
  description: {
659
- type: _lssm_lib_schema517.FieldType<string, string>;
659
+ type: _lssm_lib_schema766.FieldType<string, string>;
660
660
  isOptional: true;
661
661
  };
662
662
  status: {
663
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
663
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
664
664
  isOptional: false;
665
665
  };
666
666
  modelProvider: {
667
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
667
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
668
668
  isOptional: false;
669
669
  };
670
670
  modelName: {
671
- type: _lssm_lib_schema517.FieldType<string, string>;
671
+ type: _lssm_lib_schema766.FieldType<string, string>;
672
672
  isOptional: false;
673
673
  };
674
674
  modelConfig: {
675
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
675
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
676
676
  isOptional: true;
677
677
  };
678
678
  systemPrompt: {
679
- type: _lssm_lib_schema517.FieldType<string, string>;
679
+ type: _lssm_lib_schema766.FieldType<string, string>;
680
680
  isOptional: false;
681
681
  };
682
682
  userPromptTemplate: {
683
- type: _lssm_lib_schema517.FieldType<string, string>;
683
+ type: _lssm_lib_schema766.FieldType<string, string>;
684
684
  isOptional: true;
685
685
  };
686
686
  toolIds: {
687
- type: _lssm_lib_schema517.FieldType<string, string>;
687
+ type: _lssm_lib_schema766.FieldType<string, string>;
688
688
  isArray: true;
689
689
  isOptional: true;
690
690
  };
691
691
  toolChoice: {
692
- type: _lssm_lib_schema517.EnumType<[string, string, string]>;
692
+ type: _lssm_lib_schema766.EnumType<[string, string, string]>;
693
693
  isOptional: false;
694
694
  };
695
695
  maxIterations: {
696
- type: _lssm_lib_schema517.FieldType<number, number>;
696
+ type: _lssm_lib_schema766.FieldType<number, number>;
697
697
  isOptional: false;
698
698
  };
699
699
  maxTokensPerRun: {
700
- type: _lssm_lib_schema517.FieldType<number, number>;
700
+ type: _lssm_lib_schema766.FieldType<number, number>;
701
701
  isOptional: true;
702
702
  };
703
703
  timeoutMs: {
704
- type: _lssm_lib_schema517.FieldType<number, number>;
704
+ type: _lssm_lib_schema766.FieldType<number, number>;
705
705
  isOptional: false;
706
706
  };
707
707
  version: {
708
- type: _lssm_lib_schema517.FieldType<string, string>;
708
+ type: _lssm_lib_schema766.FieldType<string, string>;
709
709
  isOptional: false;
710
710
  };
711
711
  tags: {
712
- type: _lssm_lib_schema517.FieldType<string, string>;
712
+ type: _lssm_lib_schema766.FieldType<string, string>;
713
713
  isArray: true;
714
714
  isOptional: true;
715
715
  };
716
716
  createdAt: {
717
- type: _lssm_lib_schema517.FieldType<Date, string>;
717
+ type: _lssm_lib_schema766.FieldType<Date, string>;
718
718
  isOptional: false;
719
719
  };
720
720
  updatedAt: {
721
- type: _lssm_lib_schema517.FieldType<Date, string>;
721
+ type: _lssm_lib_schema766.FieldType<Date, string>;
722
722
  isOptional: false;
723
723
  };
724
724
  tools: {
725
- type: _lssm_lib_schema517.SchemaModel<{
725
+ type: _lssm_lib_schema766.SchemaModel<{
726
726
  id: {
727
- type: _lssm_lib_schema517.FieldType<string, string>;
727
+ type: _lssm_lib_schema766.FieldType<string, string>;
728
728
  isOptional: false;
729
729
  };
730
730
  name: {
731
- type: _lssm_lib_schema517.FieldType<string, string>;
731
+ type: _lssm_lib_schema766.FieldType<string, string>;
732
732
  isOptional: false;
733
733
  };
734
734
  slug: {
735
- type: _lssm_lib_schema517.FieldType<string, string>;
735
+ type: _lssm_lib_schema766.FieldType<string, string>;
736
736
  isOptional: false;
737
737
  };
738
738
  description: {
739
- type: _lssm_lib_schema517.FieldType<string, string>;
739
+ type: _lssm_lib_schema766.FieldType<string, string>;
740
740
  isOptional: false;
741
741
  };
742
742
  category: {
743
- type: _lssm_lib_schema517.FieldType<string, string>;
743
+ type: _lssm_lib_schema766.FieldType<string, string>;
744
744
  isOptional: false;
745
745
  };
746
746
  }>;
@@ -751,70 +751,70 @@ declare const GetAgentQuery: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema
751
751
  /**
752
752
  * ListAgentsQuery - Lists agents for an organization
753
753
  */
754
- declare const ListAgentsQuery: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema517.SchemaModel<{
754
+ declare const ListAgentsQuery: _lssm_lib_contracts26.ContractSpec<_lssm_lib_schema766.SchemaModel<{
755
755
  organizationId: {
756
- type: _lssm_lib_schema517.FieldType<string, string>;
756
+ type: _lssm_lib_schema766.FieldType<string, string>;
757
757
  isOptional: false;
758
758
  };
759
759
  status: {
760
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
760
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
761
761
  isOptional: true;
762
762
  };
763
763
  modelProvider: {
764
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
764
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
765
765
  isOptional: true;
766
766
  };
767
767
  search: {
768
- type: _lssm_lib_schema517.FieldType<string, string>;
768
+ type: _lssm_lib_schema766.FieldType<string, string>;
769
769
  isOptional: true;
770
770
  };
771
771
  limit: {
772
- type: _lssm_lib_schema517.FieldType<number, number>;
772
+ type: _lssm_lib_schema766.FieldType<number, number>;
773
773
  isOptional: true;
774
774
  defaultValue: number;
775
775
  };
776
776
  offset: {
777
- type: _lssm_lib_schema517.FieldType<number, number>;
777
+ type: _lssm_lib_schema766.FieldType<number, number>;
778
778
  isOptional: true;
779
779
  defaultValue: number;
780
780
  };
781
- }>, _lssm_lib_schema517.SchemaModel<{
781
+ }>, _lssm_lib_schema766.SchemaModel<{
782
782
  items: {
783
- type: _lssm_lib_schema517.SchemaModel<{
783
+ type: _lssm_lib_schema766.SchemaModel<{
784
784
  id: {
785
- type: _lssm_lib_schema517.FieldType<string, string>;
785
+ type: _lssm_lib_schema766.FieldType<string, string>;
786
786
  isOptional: false;
787
787
  };
788
788
  name: {
789
- type: _lssm_lib_schema517.FieldType<string, string>;
789
+ type: _lssm_lib_schema766.FieldType<string, string>;
790
790
  isOptional: false;
791
791
  };
792
792
  slug: {
793
- type: _lssm_lib_schema517.FieldType<string, string>;
793
+ type: _lssm_lib_schema766.FieldType<string, string>;
794
794
  isOptional: false;
795
795
  };
796
796
  description: {
797
- type: _lssm_lib_schema517.FieldType<string, string>;
797
+ type: _lssm_lib_schema766.FieldType<string, string>;
798
798
  isOptional: true;
799
799
  };
800
800
  status: {
801
- type: _lssm_lib_schema517.EnumType<[string, string, string, string]>;
801
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string]>;
802
802
  isOptional: false;
803
803
  };
804
804
  modelProvider: {
805
- type: _lssm_lib_schema517.EnumType<[string, string, string, string, string]>;
805
+ type: _lssm_lib_schema766.EnumType<[string, string, string, string, string]>;
806
806
  isOptional: false;
807
807
  };
808
808
  modelName: {
809
- type: _lssm_lib_schema517.FieldType<string, string>;
809
+ type: _lssm_lib_schema766.FieldType<string, string>;
810
810
  isOptional: false;
811
811
  };
812
812
  version: {
813
- type: _lssm_lib_schema517.FieldType<string, string>;
813
+ type: _lssm_lib_schema766.FieldType<string, string>;
814
814
  isOptional: false;
815
815
  };
816
816
  createdAt: {
817
- type: _lssm_lib_schema517.FieldType<Date, string>;
817
+ type: _lssm_lib_schema766.FieldType<Date, string>;
818
818
  isOptional: false;
819
819
  };
820
820
  }>;
@@ -822,63 +822,63 @@ declare const ListAgentsQuery: _lssm_lib_contracts21.ContractSpec<_lssm_lib_sche
822
822
  isOptional: false;
823
823
  };
824
824
  total: {
825
- type: _lssm_lib_schema517.FieldType<number, number>;
825
+ type: _lssm_lib_schema766.FieldType<number, number>;
826
826
  isOptional: false;
827
827
  };
828
828
  hasMore: {
829
- type: _lssm_lib_schema517.FieldType<boolean, boolean>;
829
+ type: _lssm_lib_schema766.FieldType<boolean, boolean>;
830
830
  isOptional: false;
831
831
  };
832
832
  }>, undefined>;
833
833
  /**
834
834
  * AssignToolToAgentCommand - Assigns a tool to an agent
835
835
  */
836
- declare const AssignToolToAgentCommand: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema517.SchemaModel<{
836
+ declare const AssignToolToAgentCommand: _lssm_lib_contracts26.ContractSpec<_lssm_lib_schema766.SchemaModel<{
837
837
  agentId: {
838
- type: _lssm_lib_schema517.FieldType<string, string>;
838
+ type: _lssm_lib_schema766.FieldType<string, string>;
839
839
  isOptional: false;
840
840
  };
841
841
  toolId: {
842
- type: _lssm_lib_schema517.FieldType<string, string>;
842
+ type: _lssm_lib_schema766.FieldType<string, string>;
843
843
  isOptional: false;
844
844
  };
845
845
  config: {
846
- type: _lssm_lib_schema517.FieldType<Record<string, unknown>, Record<string, unknown>>;
846
+ type: _lssm_lib_schema766.FieldType<Record<string, unknown>, Record<string, unknown>>;
847
847
  isOptional: true;
848
848
  };
849
849
  order: {
850
- type: _lssm_lib_schema517.FieldType<number, number>;
850
+ type: _lssm_lib_schema766.FieldType<number, number>;
851
851
  isOptional: true;
852
852
  };
853
- }>, _lssm_lib_schema517.SchemaModel<{
853
+ }>, _lssm_lib_schema766.SchemaModel<{
854
854
  agentToolId: {
855
- type: _lssm_lib_schema517.FieldType<string, string>;
855
+ type: _lssm_lib_schema766.FieldType<string, string>;
856
856
  isOptional: false;
857
857
  };
858
858
  agentId: {
859
- type: _lssm_lib_schema517.FieldType<string, string>;
859
+ type: _lssm_lib_schema766.FieldType<string, string>;
860
860
  isOptional: false;
861
861
  };
862
862
  toolId: {
863
- type: _lssm_lib_schema517.FieldType<string, string>;
863
+ type: _lssm_lib_schema766.FieldType<string, string>;
864
864
  isOptional: false;
865
865
  };
866
866
  }>, undefined>;
867
867
  /**
868
868
  * RemoveToolFromAgentCommand - Removes a tool from an agent
869
869
  */
870
- declare const RemoveToolFromAgentCommand: _lssm_lib_contracts21.ContractSpec<_lssm_lib_schema517.SchemaModel<{
870
+ declare const RemoveToolFromAgentCommand: _lssm_lib_contracts26.ContractSpec<_lssm_lib_schema766.SchemaModel<{
871
871
  agentId: {
872
- type: _lssm_lib_schema517.FieldType<string, string>;
872
+ type: _lssm_lib_schema766.FieldType<string, string>;
873
873
  isOptional: false;
874
874
  };
875
875
  toolId: {
876
- type: _lssm_lib_schema517.FieldType<string, string>;
876
+ type: _lssm_lib_schema766.FieldType<string, string>;
877
877
  isOptional: false;
878
878
  };
879
- }>, _lssm_lib_schema517.SchemaModel<{
879
+ }>, _lssm_lib_schema766.SchemaModel<{
880
880
  success: {
881
- type: _lssm_lib_schema517.FieldType<boolean, boolean>;
881
+ type: _lssm_lib_schema766.FieldType<boolean, boolean>;
882
882
  isOptional: false;
883
883
  };
884
884
  }>, undefined>;