@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.
- package/.turbo/turbo-build.log +10 -10
- package/CHANGELOG.md +6 -6
- package/dist/contracts/agent.d.ts +223 -223
- package/dist/contracts/run.d.ts +277 -277
- package/dist/contracts/tool.d.ts +155 -155
- package/dist/entities/agent.d.ts +36 -36
- package/dist/entities/log.d.ts +17 -17
- package/dist/entities/run.d.ts +60 -60
- package/dist/entities/tool.d.ts +22 -22
- package/dist/events.d.ts +245 -245
- package/dist/handlers/agent.handlers.d.ts +1 -1
- package/dist/presentations/index.d.ts +2 -2
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
package/dist/contracts/tool.d.ts
CHANGED
|
@@ -1,206 +1,206 @@
|
|
|
1
|
-
import * as
|
|
2
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema0 from "@lssm/lib.schema";
|
|
2
|
+
import * as _lssm_lib_contracts0 from "@lssm/lib.contracts";
|
|
3
3
|
|
|
4
4
|
//#region src/contracts/tool.d.ts
|
|
5
|
-
declare const ToolCategoryEnum:
|
|
6
|
-
declare const ToolStatusEnum:
|
|
7
|
-
declare const ImplementationTypeEnum:
|
|
8
|
-
declare const ToolModel:
|
|
5
|
+
declare const ToolCategoryEnum: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
6
|
+
declare const ToolStatusEnum: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
7
|
+
declare const ImplementationTypeEnum: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
8
|
+
declare const ToolModel: _lssm_lib_schema0.SchemaModel<{
|
|
9
9
|
id: {
|
|
10
|
-
type:
|
|
10
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
11
11
|
isOptional: false;
|
|
12
12
|
};
|
|
13
13
|
organizationId: {
|
|
14
|
-
type:
|
|
14
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
15
15
|
isOptional: false;
|
|
16
16
|
};
|
|
17
17
|
name: {
|
|
18
|
-
type:
|
|
18
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
19
19
|
isOptional: false;
|
|
20
20
|
};
|
|
21
21
|
slug: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
description: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
category: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
status: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
35
35
|
isOptional: false;
|
|
36
36
|
};
|
|
37
37
|
parametersSchema: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
39
39
|
isOptional: false;
|
|
40
40
|
};
|
|
41
41
|
outputSchema: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
43
43
|
isOptional: true;
|
|
44
44
|
};
|
|
45
45
|
implementationType: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
47
47
|
isOptional: false;
|
|
48
48
|
};
|
|
49
49
|
implementationConfig: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
51
51
|
isOptional: false;
|
|
52
52
|
};
|
|
53
53
|
maxInvocationsPerMinute: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
55
55
|
isOptional: true;
|
|
56
56
|
};
|
|
57
57
|
timeoutMs: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
defaultValue: number;
|
|
61
61
|
};
|
|
62
62
|
version: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
64
64
|
isOptional: false;
|
|
65
65
|
};
|
|
66
66
|
tags: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
68
68
|
isArray: true;
|
|
69
69
|
isOptional: true;
|
|
70
70
|
};
|
|
71
71
|
createdAt: {
|
|
72
|
-
type:
|
|
72
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
73
73
|
isOptional: false;
|
|
74
74
|
};
|
|
75
75
|
updatedAt: {
|
|
76
|
-
type:
|
|
76
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
77
77
|
isOptional: false;
|
|
78
78
|
};
|
|
79
79
|
}>;
|
|
80
|
-
declare const ToolSummaryModel:
|
|
80
|
+
declare const ToolSummaryModel: _lssm_lib_schema0.SchemaModel<{
|
|
81
81
|
id: {
|
|
82
|
-
type:
|
|
82
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
83
83
|
isOptional: false;
|
|
84
84
|
};
|
|
85
85
|
name: {
|
|
86
|
-
type:
|
|
86
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
87
87
|
isOptional: false;
|
|
88
88
|
};
|
|
89
89
|
slug: {
|
|
90
|
-
type:
|
|
90
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
91
91
|
isOptional: false;
|
|
92
92
|
};
|
|
93
93
|
description: {
|
|
94
|
-
type:
|
|
94
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
95
95
|
isOptional: false;
|
|
96
96
|
};
|
|
97
97
|
category: {
|
|
98
|
-
type:
|
|
98
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
99
99
|
isOptional: false;
|
|
100
100
|
};
|
|
101
101
|
status: {
|
|
102
|
-
type:
|
|
102
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
103
103
|
isOptional: false;
|
|
104
104
|
};
|
|
105
105
|
version: {
|
|
106
|
-
type:
|
|
106
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
107
107
|
isOptional: false;
|
|
108
108
|
};
|
|
109
109
|
createdAt: {
|
|
110
|
-
type:
|
|
110
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
111
111
|
isOptional: false;
|
|
112
112
|
};
|
|
113
113
|
}>;
|
|
114
|
-
declare const CreateToolInputModel:
|
|
114
|
+
declare const CreateToolInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
115
115
|
organizationId: {
|
|
116
|
-
type:
|
|
116
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
117
117
|
isOptional: false;
|
|
118
118
|
};
|
|
119
119
|
name: {
|
|
120
|
-
type:
|
|
120
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
121
121
|
isOptional: false;
|
|
122
122
|
};
|
|
123
123
|
slug: {
|
|
124
|
-
type:
|
|
124
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
125
125
|
isOptional: false;
|
|
126
126
|
};
|
|
127
127
|
description: {
|
|
128
|
-
type:
|
|
128
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
129
129
|
isOptional: false;
|
|
130
130
|
};
|
|
131
131
|
category: {
|
|
132
|
-
type:
|
|
132
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
133
133
|
isOptional: true;
|
|
134
134
|
};
|
|
135
135
|
parametersSchema: {
|
|
136
|
-
type:
|
|
136
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
137
137
|
isOptional: false;
|
|
138
138
|
};
|
|
139
139
|
outputSchema: {
|
|
140
|
-
type:
|
|
140
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
141
141
|
isOptional: true;
|
|
142
142
|
};
|
|
143
143
|
implementationType: {
|
|
144
|
-
type:
|
|
144
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
145
145
|
isOptional: false;
|
|
146
146
|
};
|
|
147
147
|
implementationConfig: {
|
|
148
|
-
type:
|
|
148
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
149
149
|
isOptional: false;
|
|
150
150
|
};
|
|
151
151
|
maxInvocationsPerMinute: {
|
|
152
|
-
type:
|
|
152
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
153
153
|
isOptional: true;
|
|
154
154
|
};
|
|
155
155
|
timeoutMs: {
|
|
156
|
-
type:
|
|
156
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
157
157
|
isOptional: true;
|
|
158
158
|
};
|
|
159
159
|
tags: {
|
|
160
|
-
type:
|
|
160
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
161
161
|
isArray: true;
|
|
162
162
|
isOptional: true;
|
|
163
163
|
};
|
|
164
164
|
}>;
|
|
165
|
-
declare const UpdateToolInputModel:
|
|
165
|
+
declare const UpdateToolInputModel: _lssm_lib_schema0.SchemaModel<{
|
|
166
166
|
toolId: {
|
|
167
|
-
type:
|
|
167
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
168
168
|
isOptional: false;
|
|
169
169
|
};
|
|
170
170
|
name: {
|
|
171
|
-
type:
|
|
171
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
172
172
|
isOptional: true;
|
|
173
173
|
};
|
|
174
174
|
description: {
|
|
175
|
-
type:
|
|
175
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
176
176
|
isOptional: true;
|
|
177
177
|
};
|
|
178
178
|
status: {
|
|
179
|
-
type:
|
|
179
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
180
180
|
isOptional: true;
|
|
181
181
|
};
|
|
182
182
|
parametersSchema: {
|
|
183
|
-
type:
|
|
183
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
184
184
|
isOptional: true;
|
|
185
185
|
};
|
|
186
186
|
outputSchema: {
|
|
187
|
-
type:
|
|
187
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
188
188
|
isOptional: true;
|
|
189
189
|
};
|
|
190
190
|
implementationConfig: {
|
|
191
|
-
type:
|
|
191
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
192
192
|
isOptional: true;
|
|
193
193
|
};
|
|
194
194
|
maxInvocationsPerMinute: {
|
|
195
|
-
type:
|
|
195
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
196
196
|
isOptional: true;
|
|
197
197
|
};
|
|
198
198
|
timeoutMs: {
|
|
199
|
-
type:
|
|
199
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
200
200
|
isOptional: true;
|
|
201
201
|
};
|
|
202
202
|
tags: {
|
|
203
|
-
type:
|
|
203
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
204
204
|
isArray: true;
|
|
205
205
|
isOptional: true;
|
|
206
206
|
};
|
|
@@ -208,108 +208,108 @@ declare const UpdateToolInputModel: _lssm_lib_schema789.SchemaModel<{
|
|
|
208
208
|
/**
|
|
209
209
|
* CreateToolCommand - Creates a new tool definition
|
|
210
210
|
*/
|
|
211
|
-
declare const CreateToolCommand:
|
|
211
|
+
declare const CreateToolCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
212
212
|
organizationId: {
|
|
213
|
-
type:
|
|
213
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
214
214
|
isOptional: false;
|
|
215
215
|
};
|
|
216
216
|
name: {
|
|
217
|
-
type:
|
|
217
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
218
218
|
isOptional: false;
|
|
219
219
|
};
|
|
220
220
|
slug: {
|
|
221
|
-
type:
|
|
221
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
222
222
|
isOptional: false;
|
|
223
223
|
};
|
|
224
224
|
description: {
|
|
225
|
-
type:
|
|
225
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
226
226
|
isOptional: false;
|
|
227
227
|
};
|
|
228
228
|
category: {
|
|
229
|
-
type:
|
|
229
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
230
230
|
isOptional: true;
|
|
231
231
|
};
|
|
232
232
|
parametersSchema: {
|
|
233
|
-
type:
|
|
233
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
234
234
|
isOptional: false;
|
|
235
235
|
};
|
|
236
236
|
outputSchema: {
|
|
237
|
-
type:
|
|
237
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
238
238
|
isOptional: true;
|
|
239
239
|
};
|
|
240
240
|
implementationType: {
|
|
241
|
-
type:
|
|
241
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
242
242
|
isOptional: false;
|
|
243
243
|
};
|
|
244
244
|
implementationConfig: {
|
|
245
|
-
type:
|
|
245
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
246
246
|
isOptional: false;
|
|
247
247
|
};
|
|
248
248
|
maxInvocationsPerMinute: {
|
|
249
|
-
type:
|
|
249
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
250
250
|
isOptional: true;
|
|
251
251
|
};
|
|
252
252
|
timeoutMs: {
|
|
253
|
-
type:
|
|
253
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
254
254
|
isOptional: true;
|
|
255
255
|
};
|
|
256
256
|
tags: {
|
|
257
|
-
type:
|
|
257
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
258
258
|
isArray: true;
|
|
259
259
|
isOptional: true;
|
|
260
260
|
};
|
|
261
|
-
}>,
|
|
261
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
262
262
|
id: {
|
|
263
|
-
type:
|
|
263
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
264
264
|
isOptional: false;
|
|
265
265
|
};
|
|
266
266
|
name: {
|
|
267
|
-
type:
|
|
267
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
268
268
|
isOptional: false;
|
|
269
269
|
};
|
|
270
270
|
slug: {
|
|
271
|
-
type:
|
|
271
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
272
272
|
isOptional: false;
|
|
273
273
|
};
|
|
274
274
|
status: {
|
|
275
|
-
type:
|
|
275
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
276
276
|
isOptional: false;
|
|
277
277
|
};
|
|
278
278
|
}>, {
|
|
279
279
|
name: string;
|
|
280
280
|
version: number;
|
|
281
281
|
when: string;
|
|
282
|
-
payload:
|
|
282
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
283
283
|
id: {
|
|
284
|
-
type:
|
|
284
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
285
285
|
isOptional: false;
|
|
286
286
|
};
|
|
287
287
|
name: {
|
|
288
|
-
type:
|
|
288
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
289
289
|
isOptional: false;
|
|
290
290
|
};
|
|
291
291
|
slug: {
|
|
292
|
-
type:
|
|
292
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
293
293
|
isOptional: false;
|
|
294
294
|
};
|
|
295
295
|
description: {
|
|
296
|
-
type:
|
|
296
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
297
297
|
isOptional: false;
|
|
298
298
|
};
|
|
299
299
|
category: {
|
|
300
|
-
type:
|
|
300
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
301
301
|
isOptional: false;
|
|
302
302
|
};
|
|
303
303
|
status: {
|
|
304
|
-
type:
|
|
304
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
305
305
|
isOptional: false;
|
|
306
306
|
};
|
|
307
307
|
version: {
|
|
308
|
-
type:
|
|
308
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
309
309
|
isOptional: false;
|
|
310
310
|
};
|
|
311
311
|
createdAt: {
|
|
312
|
-
type:
|
|
312
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
313
313
|
isOptional: false;
|
|
314
314
|
};
|
|
315
315
|
}>;
|
|
@@ -317,100 +317,100 @@ declare const CreateToolCommand: _lssm_lib_contracts27.ContractSpec<_lssm_lib_sc
|
|
|
317
317
|
/**
|
|
318
318
|
* UpdateToolCommand - Updates an existing tool
|
|
319
319
|
*/
|
|
320
|
-
declare const UpdateToolCommand:
|
|
320
|
+
declare const UpdateToolCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
321
321
|
toolId: {
|
|
322
|
-
type:
|
|
322
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
323
323
|
isOptional: false;
|
|
324
324
|
};
|
|
325
325
|
name: {
|
|
326
|
-
type:
|
|
326
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
327
327
|
isOptional: true;
|
|
328
328
|
};
|
|
329
329
|
description: {
|
|
330
|
-
type:
|
|
330
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
331
331
|
isOptional: true;
|
|
332
332
|
};
|
|
333
333
|
status: {
|
|
334
|
-
type:
|
|
334
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
335
335
|
isOptional: true;
|
|
336
336
|
};
|
|
337
337
|
parametersSchema: {
|
|
338
|
-
type:
|
|
338
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
339
339
|
isOptional: true;
|
|
340
340
|
};
|
|
341
341
|
outputSchema: {
|
|
342
|
-
type:
|
|
342
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
343
343
|
isOptional: true;
|
|
344
344
|
};
|
|
345
345
|
implementationConfig: {
|
|
346
|
-
type:
|
|
346
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
347
347
|
isOptional: true;
|
|
348
348
|
};
|
|
349
349
|
maxInvocationsPerMinute: {
|
|
350
|
-
type:
|
|
350
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
351
351
|
isOptional: true;
|
|
352
352
|
};
|
|
353
353
|
timeoutMs: {
|
|
354
|
-
type:
|
|
354
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
355
355
|
isOptional: true;
|
|
356
356
|
};
|
|
357
357
|
tags: {
|
|
358
|
-
type:
|
|
358
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
359
359
|
isArray: true;
|
|
360
360
|
isOptional: true;
|
|
361
361
|
};
|
|
362
|
-
}>,
|
|
362
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
363
363
|
id: {
|
|
364
|
-
type:
|
|
364
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
365
365
|
isOptional: false;
|
|
366
366
|
};
|
|
367
367
|
name: {
|
|
368
|
-
type:
|
|
368
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
369
369
|
isOptional: false;
|
|
370
370
|
};
|
|
371
371
|
status: {
|
|
372
|
-
type:
|
|
372
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
373
373
|
isOptional: false;
|
|
374
374
|
};
|
|
375
375
|
updatedAt: {
|
|
376
|
-
type:
|
|
376
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
377
377
|
isOptional: false;
|
|
378
378
|
};
|
|
379
379
|
}>, {
|
|
380
380
|
name: string;
|
|
381
381
|
version: number;
|
|
382
382
|
when: string;
|
|
383
|
-
payload:
|
|
383
|
+
payload: _lssm_lib_schema0.SchemaModel<{
|
|
384
384
|
id: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
386
386
|
isOptional: false;
|
|
387
387
|
};
|
|
388
388
|
name: {
|
|
389
|
-
type:
|
|
389
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
390
390
|
isOptional: false;
|
|
391
391
|
};
|
|
392
392
|
slug: {
|
|
393
|
-
type:
|
|
393
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
394
394
|
isOptional: false;
|
|
395
395
|
};
|
|
396
396
|
description: {
|
|
397
|
-
type:
|
|
397
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
398
398
|
isOptional: false;
|
|
399
399
|
};
|
|
400
400
|
category: {
|
|
401
|
-
type:
|
|
401
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
402
402
|
isOptional: false;
|
|
403
403
|
};
|
|
404
404
|
status: {
|
|
405
|
-
type:
|
|
405
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
406
406
|
isOptional: false;
|
|
407
407
|
};
|
|
408
408
|
version: {
|
|
409
|
-
type:
|
|
409
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
410
410
|
isOptional: false;
|
|
411
411
|
};
|
|
412
412
|
createdAt: {
|
|
413
|
-
type:
|
|
413
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
414
414
|
isOptional: false;
|
|
415
415
|
};
|
|
416
416
|
}>;
|
|
@@ -418,146 +418,146 @@ declare const UpdateToolCommand: _lssm_lib_contracts27.ContractSpec<_lssm_lib_sc
|
|
|
418
418
|
/**
|
|
419
419
|
* GetToolQuery - Retrieves a tool by ID
|
|
420
420
|
*/
|
|
421
|
-
declare const GetToolQuery:
|
|
421
|
+
declare const GetToolQuery: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
422
422
|
toolId: {
|
|
423
|
-
type:
|
|
423
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
424
424
|
isOptional: false;
|
|
425
425
|
};
|
|
426
|
-
}>,
|
|
426
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
427
427
|
id: {
|
|
428
|
-
type:
|
|
428
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
429
429
|
isOptional: false;
|
|
430
430
|
};
|
|
431
431
|
organizationId: {
|
|
432
|
-
type:
|
|
432
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
433
433
|
isOptional: false;
|
|
434
434
|
};
|
|
435
435
|
name: {
|
|
436
|
-
type:
|
|
436
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
437
437
|
isOptional: false;
|
|
438
438
|
};
|
|
439
439
|
slug: {
|
|
440
|
-
type:
|
|
440
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
441
441
|
isOptional: false;
|
|
442
442
|
};
|
|
443
443
|
description: {
|
|
444
|
-
type:
|
|
444
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
445
445
|
isOptional: false;
|
|
446
446
|
};
|
|
447
447
|
category: {
|
|
448
|
-
type:
|
|
448
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
449
449
|
isOptional: false;
|
|
450
450
|
};
|
|
451
451
|
status: {
|
|
452
|
-
type:
|
|
452
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
453
453
|
isOptional: false;
|
|
454
454
|
};
|
|
455
455
|
parametersSchema: {
|
|
456
|
-
type:
|
|
456
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
457
457
|
isOptional: false;
|
|
458
458
|
};
|
|
459
459
|
outputSchema: {
|
|
460
|
-
type:
|
|
460
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
461
461
|
isOptional: true;
|
|
462
462
|
};
|
|
463
463
|
implementationType: {
|
|
464
|
-
type:
|
|
464
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string]>;
|
|
465
465
|
isOptional: false;
|
|
466
466
|
};
|
|
467
467
|
implementationConfig: {
|
|
468
|
-
type:
|
|
468
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
469
469
|
isOptional: false;
|
|
470
470
|
};
|
|
471
471
|
maxInvocationsPerMinute: {
|
|
472
|
-
type:
|
|
472
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
473
473
|
isOptional: true;
|
|
474
474
|
};
|
|
475
475
|
timeoutMs: {
|
|
476
|
-
type:
|
|
476
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
477
477
|
isOptional: false;
|
|
478
478
|
defaultValue: number;
|
|
479
479
|
};
|
|
480
480
|
version: {
|
|
481
|
-
type:
|
|
481
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
482
482
|
isOptional: false;
|
|
483
483
|
};
|
|
484
484
|
tags: {
|
|
485
|
-
type:
|
|
485
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
486
486
|
isArray: true;
|
|
487
487
|
isOptional: true;
|
|
488
488
|
};
|
|
489
489
|
createdAt: {
|
|
490
|
-
type:
|
|
490
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
491
491
|
isOptional: false;
|
|
492
492
|
};
|
|
493
493
|
updatedAt: {
|
|
494
|
-
type:
|
|
494
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
495
495
|
isOptional: false;
|
|
496
496
|
};
|
|
497
497
|
}>, undefined>;
|
|
498
498
|
/**
|
|
499
499
|
* ListToolsQuery - Lists tools for an organization
|
|
500
500
|
*/
|
|
501
|
-
declare const ListToolsQuery:
|
|
501
|
+
declare const ListToolsQuery: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
502
502
|
organizationId: {
|
|
503
|
-
type:
|
|
503
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
504
504
|
isOptional: false;
|
|
505
505
|
};
|
|
506
506
|
category: {
|
|
507
|
-
type:
|
|
507
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
508
508
|
isOptional: true;
|
|
509
509
|
};
|
|
510
510
|
status: {
|
|
511
|
-
type:
|
|
511
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
512
512
|
isOptional: true;
|
|
513
513
|
};
|
|
514
514
|
search: {
|
|
515
|
-
type:
|
|
515
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
516
516
|
isOptional: true;
|
|
517
517
|
};
|
|
518
518
|
limit: {
|
|
519
|
-
type:
|
|
519
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
520
520
|
isOptional: true;
|
|
521
521
|
defaultValue: number;
|
|
522
522
|
};
|
|
523
523
|
offset: {
|
|
524
|
-
type:
|
|
524
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
525
525
|
isOptional: true;
|
|
526
526
|
defaultValue: number;
|
|
527
527
|
};
|
|
528
|
-
}>,
|
|
528
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
529
529
|
items: {
|
|
530
|
-
type:
|
|
530
|
+
type: _lssm_lib_schema0.SchemaModel<{
|
|
531
531
|
id: {
|
|
532
|
-
type:
|
|
532
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
533
533
|
isOptional: false;
|
|
534
534
|
};
|
|
535
535
|
name: {
|
|
536
|
-
type:
|
|
536
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
537
537
|
isOptional: false;
|
|
538
538
|
};
|
|
539
539
|
slug: {
|
|
540
|
-
type:
|
|
540
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
541
541
|
isOptional: false;
|
|
542
542
|
};
|
|
543
543
|
description: {
|
|
544
|
-
type:
|
|
544
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
545
545
|
isOptional: false;
|
|
546
546
|
};
|
|
547
547
|
category: {
|
|
548
|
-
type:
|
|
548
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string, string, string]>;
|
|
549
549
|
isOptional: false;
|
|
550
550
|
};
|
|
551
551
|
status: {
|
|
552
|
-
type:
|
|
552
|
+
type: _lssm_lib_schema0.EnumType<[string, string, string, string]>;
|
|
553
553
|
isOptional: false;
|
|
554
554
|
};
|
|
555
555
|
version: {
|
|
556
|
-
type:
|
|
556
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
557
557
|
isOptional: false;
|
|
558
558
|
};
|
|
559
559
|
createdAt: {
|
|
560
|
-
type:
|
|
560
|
+
type: _lssm_lib_schema0.FieldType<Date, string>;
|
|
561
561
|
isOptional: false;
|
|
562
562
|
};
|
|
563
563
|
}>;
|
|
@@ -565,41 +565,41 @@ declare const ListToolsQuery: _lssm_lib_contracts27.ContractSpec<_lssm_lib_schem
|
|
|
565
565
|
isOptional: false;
|
|
566
566
|
};
|
|
567
567
|
total: {
|
|
568
|
-
type:
|
|
568
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
569
569
|
isOptional: false;
|
|
570
570
|
};
|
|
571
571
|
hasMore: {
|
|
572
|
-
type:
|
|
572
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
573
573
|
isOptional: false;
|
|
574
574
|
};
|
|
575
575
|
}>, undefined>;
|
|
576
576
|
/**
|
|
577
577
|
* TestToolCommand - Tests a tool with sample input
|
|
578
578
|
*/
|
|
579
|
-
declare const TestToolCommand:
|
|
579
|
+
declare const TestToolCommand: _lssm_lib_contracts0.ContractSpec<_lssm_lib_schema0.SchemaModel<{
|
|
580
580
|
toolId: {
|
|
581
|
-
type:
|
|
581
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
582
582
|
isOptional: false;
|
|
583
583
|
};
|
|
584
584
|
testInput: {
|
|
585
|
-
type:
|
|
585
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
586
586
|
isOptional: false;
|
|
587
587
|
};
|
|
588
|
-
}>,
|
|
588
|
+
}>, _lssm_lib_schema0.SchemaModel<{
|
|
589
589
|
success: {
|
|
590
|
-
type:
|
|
590
|
+
type: _lssm_lib_schema0.FieldType<boolean, boolean>;
|
|
591
591
|
isOptional: false;
|
|
592
592
|
};
|
|
593
593
|
output: {
|
|
594
|
-
type:
|
|
594
|
+
type: _lssm_lib_schema0.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
595
595
|
isOptional: true;
|
|
596
596
|
};
|
|
597
597
|
error: {
|
|
598
|
-
type:
|
|
598
|
+
type: _lssm_lib_schema0.FieldType<string, string>;
|
|
599
599
|
isOptional: true;
|
|
600
600
|
};
|
|
601
601
|
durationMs: {
|
|
602
|
-
type:
|
|
602
|
+
type: _lssm_lib_schema0.FieldType<number, number>;
|
|
603
603
|
isOptional: false;
|
|
604
604
|
};
|
|
605
605
|
}>, undefined>;
|