@lssm/example.agent-console 0.0.0-canary-20251220002821 → 0.0.0-canary-20251220021406
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$colon$bundle.log +34 -34
- package/.turbo/turbo-build.log +34 -34
- package/CHANGELOG.md +6 -6
- package/dist/agent/agent.contracts.d.ts +126 -126
- package/dist/agent/agent.contracts.d.ts.map +1 -1
- package/dist/agent/agent.entity.d.ts +36 -36
- package/dist/agent/agent.enum.d.ts +4 -4
- package/dist/agent/agent.event.d.ts +31 -31
- package/dist/agent/agent.event.d.ts.map +1 -1
- package/dist/agent/agent.schema.d.ts +95 -95
- package/dist/libs/contracts/dist/ownership.js +1 -0
- package/dist/libs/contracts/dist/ownership.js.map +1 -1
- package/dist/run/run.contracts.d.ts +175 -175
- package/dist/run/run.entity.d.ts +56 -56
- package/dist/run/run.enum.d.ts +5 -5
- package/dist/run/run.event.d.ts +71 -71
- package/dist/run/run.schema.d.ts +99 -99
- package/dist/tool/tool.contracts.d.ts +101 -101
- package/dist/tool/tool.contracts.d.ts.map +1 -1
- package/dist/tool/tool.entity.d.ts +24 -24
- package/dist/tool/tool.enum.d.ts +4 -4
- package/dist/tool/tool.event.d.ts +25 -25
- package/dist/tool/tool.presentation.d.ts.map +1 -1
- package/package.json +8 -8
- package/tsconfig.tsbuildinfo +1 -1
package/dist/run/run.schema.d.ts
CHANGED
|
@@ -1,280 +1,280 @@
|
|
|
1
|
-
import * as
|
|
1
|
+
import * as _lssm_lib_schema463 from "@lssm/lib.schema";
|
|
2
2
|
|
|
3
3
|
//#region src/run/run.schema.d.ts
|
|
4
4
|
/**
|
|
5
5
|
* Input data for agent execution.
|
|
6
6
|
*/
|
|
7
|
-
declare const RunInputModel:
|
|
7
|
+
declare const RunInputModel: _lssm_lib_schema463.SchemaModel<{
|
|
8
8
|
message: {
|
|
9
|
-
type:
|
|
9
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
10
10
|
isOptional: false;
|
|
11
11
|
};
|
|
12
12
|
context: {
|
|
13
|
-
type:
|
|
13
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
14
14
|
isOptional: true;
|
|
15
15
|
};
|
|
16
16
|
}>;
|
|
17
17
|
/**
|
|
18
18
|
* Individual step within a run.
|
|
19
19
|
*/
|
|
20
|
-
declare const RunStepModel:
|
|
20
|
+
declare const RunStepModel: _lssm_lib_schema463.SchemaModel<{
|
|
21
21
|
id: {
|
|
22
|
-
type:
|
|
22
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
23
23
|
isOptional: false;
|
|
24
24
|
};
|
|
25
25
|
stepNumber: {
|
|
26
|
-
type:
|
|
26
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
27
27
|
isOptional: false;
|
|
28
28
|
};
|
|
29
29
|
type: {
|
|
30
|
-
type:
|
|
30
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string]>;
|
|
31
31
|
isOptional: false;
|
|
32
32
|
};
|
|
33
33
|
toolId: {
|
|
34
|
-
type:
|
|
34
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
35
35
|
isOptional: true;
|
|
36
36
|
};
|
|
37
37
|
toolName: {
|
|
38
|
-
type:
|
|
38
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
39
39
|
isOptional: true;
|
|
40
40
|
};
|
|
41
41
|
input: {
|
|
42
|
-
type:
|
|
42
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
43
43
|
isOptional: true;
|
|
44
44
|
};
|
|
45
45
|
output: {
|
|
46
|
-
type:
|
|
46
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
47
47
|
isOptional: true;
|
|
48
48
|
};
|
|
49
49
|
status: {
|
|
50
|
-
type:
|
|
50
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string, string, string]>;
|
|
51
51
|
isOptional: false;
|
|
52
52
|
};
|
|
53
53
|
errorMessage: {
|
|
54
|
-
type:
|
|
54
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
55
55
|
isOptional: true;
|
|
56
56
|
};
|
|
57
57
|
tokensUsed: {
|
|
58
|
-
type:
|
|
58
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
59
59
|
isOptional: false;
|
|
60
60
|
defaultValue: number;
|
|
61
61
|
};
|
|
62
62
|
durationMs: {
|
|
63
|
-
type:
|
|
63
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
64
64
|
isOptional: true;
|
|
65
65
|
};
|
|
66
66
|
startedAt: {
|
|
67
|
-
type:
|
|
67
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
68
68
|
isOptional: false;
|
|
69
69
|
};
|
|
70
70
|
completedAt: {
|
|
71
|
-
type:
|
|
71
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
72
72
|
isOptional: true;
|
|
73
73
|
};
|
|
74
74
|
}>;
|
|
75
75
|
/**
|
|
76
76
|
* Execution log entry.
|
|
77
77
|
*/
|
|
78
|
-
declare const RunLogModel:
|
|
78
|
+
declare const RunLogModel: _lssm_lib_schema463.SchemaModel<{
|
|
79
79
|
id: {
|
|
80
|
-
type:
|
|
80
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
81
81
|
isOptional: false;
|
|
82
82
|
};
|
|
83
83
|
stepId: {
|
|
84
|
-
type:
|
|
84
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
85
85
|
isOptional: true;
|
|
86
86
|
};
|
|
87
87
|
level: {
|
|
88
|
-
type:
|
|
88
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string]>;
|
|
89
89
|
isOptional: false;
|
|
90
90
|
};
|
|
91
91
|
message: {
|
|
92
|
-
type:
|
|
92
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
93
93
|
isOptional: false;
|
|
94
94
|
};
|
|
95
95
|
data: {
|
|
96
|
-
type:
|
|
96
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
97
97
|
isOptional: true;
|
|
98
98
|
};
|
|
99
99
|
source: {
|
|
100
|
-
type:
|
|
100
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
101
101
|
isOptional: true;
|
|
102
102
|
};
|
|
103
103
|
traceId: {
|
|
104
|
-
type:
|
|
104
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
105
105
|
isOptional: true;
|
|
106
106
|
};
|
|
107
107
|
spanId: {
|
|
108
|
-
type:
|
|
108
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
109
109
|
isOptional: true;
|
|
110
110
|
};
|
|
111
111
|
timestamp: {
|
|
112
|
-
type:
|
|
112
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
113
113
|
isOptional: false;
|
|
114
114
|
};
|
|
115
115
|
}>;
|
|
116
116
|
/**
|
|
117
117
|
* Agent reference in a run.
|
|
118
118
|
*/
|
|
119
|
-
declare const RunAgentRefModel:
|
|
119
|
+
declare const RunAgentRefModel: _lssm_lib_schema463.SchemaModel<{
|
|
120
120
|
id: {
|
|
121
|
-
type:
|
|
121
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
122
122
|
isOptional: false;
|
|
123
123
|
};
|
|
124
124
|
name: {
|
|
125
|
-
type:
|
|
125
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
126
126
|
isOptional: false;
|
|
127
127
|
};
|
|
128
128
|
modelProvider: {
|
|
129
|
-
type:
|
|
129
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
130
130
|
isOptional: false;
|
|
131
131
|
};
|
|
132
132
|
modelName: {
|
|
133
|
-
type:
|
|
133
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
134
134
|
isOptional: false;
|
|
135
135
|
};
|
|
136
136
|
}>;
|
|
137
137
|
/**
|
|
138
138
|
* Agent execution instance.
|
|
139
139
|
*/
|
|
140
|
-
declare const RunModel:
|
|
140
|
+
declare const RunModel: _lssm_lib_schema463.SchemaModel<{
|
|
141
141
|
id: {
|
|
142
|
-
type:
|
|
142
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
143
143
|
isOptional: false;
|
|
144
144
|
};
|
|
145
145
|
organizationId: {
|
|
146
|
-
type:
|
|
146
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
147
147
|
isOptional: false;
|
|
148
148
|
};
|
|
149
149
|
agentId: {
|
|
150
|
-
type:
|
|
150
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
151
151
|
isOptional: false;
|
|
152
152
|
};
|
|
153
153
|
userId: {
|
|
154
|
-
type:
|
|
154
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
155
155
|
isOptional: true;
|
|
156
156
|
};
|
|
157
157
|
sessionId: {
|
|
158
|
-
type:
|
|
158
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
159
159
|
isOptional: true;
|
|
160
160
|
};
|
|
161
161
|
input: {
|
|
162
|
-
type:
|
|
162
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
163
163
|
isOptional: false;
|
|
164
164
|
};
|
|
165
165
|
output: {
|
|
166
|
-
type:
|
|
166
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
167
167
|
isOptional: true;
|
|
168
168
|
};
|
|
169
169
|
status: {
|
|
170
|
-
type:
|
|
170
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string, string, string]>;
|
|
171
171
|
isOptional: false;
|
|
172
172
|
};
|
|
173
173
|
errorMessage: {
|
|
174
|
-
type:
|
|
174
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
175
175
|
isOptional: true;
|
|
176
176
|
};
|
|
177
177
|
errorCode: {
|
|
178
|
-
type:
|
|
178
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
179
179
|
isOptional: true;
|
|
180
180
|
};
|
|
181
181
|
totalTokens: {
|
|
182
|
-
type:
|
|
182
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
183
183
|
isOptional: false;
|
|
184
184
|
defaultValue: number;
|
|
185
185
|
};
|
|
186
186
|
promptTokens: {
|
|
187
|
-
type:
|
|
187
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
188
188
|
isOptional: false;
|
|
189
189
|
defaultValue: number;
|
|
190
190
|
};
|
|
191
191
|
completionTokens: {
|
|
192
|
-
type:
|
|
192
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
193
193
|
isOptional: false;
|
|
194
194
|
defaultValue: number;
|
|
195
195
|
};
|
|
196
196
|
totalIterations: {
|
|
197
|
-
type:
|
|
197
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
198
198
|
isOptional: false;
|
|
199
199
|
defaultValue: number;
|
|
200
200
|
};
|
|
201
201
|
durationMs: {
|
|
202
|
-
type:
|
|
202
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
203
203
|
isOptional: true;
|
|
204
204
|
};
|
|
205
205
|
estimatedCostUsd: {
|
|
206
|
-
type:
|
|
206
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
207
207
|
isOptional: true;
|
|
208
208
|
};
|
|
209
209
|
queuedAt: {
|
|
210
|
-
type:
|
|
210
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
211
211
|
isOptional: false;
|
|
212
212
|
};
|
|
213
213
|
startedAt: {
|
|
214
|
-
type:
|
|
214
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
215
215
|
isOptional: true;
|
|
216
216
|
};
|
|
217
217
|
completedAt: {
|
|
218
|
-
type:
|
|
218
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
219
219
|
isOptional: true;
|
|
220
220
|
};
|
|
221
221
|
metadata: {
|
|
222
|
-
type:
|
|
222
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
223
223
|
isOptional: true;
|
|
224
224
|
};
|
|
225
225
|
steps: {
|
|
226
|
-
type:
|
|
226
|
+
type: _lssm_lib_schema463.SchemaModel<{
|
|
227
227
|
id: {
|
|
228
|
-
type:
|
|
228
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
229
229
|
isOptional: false;
|
|
230
230
|
};
|
|
231
231
|
stepNumber: {
|
|
232
|
-
type:
|
|
232
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
233
233
|
isOptional: false;
|
|
234
234
|
};
|
|
235
235
|
type: {
|
|
236
|
-
type:
|
|
236
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string]>;
|
|
237
237
|
isOptional: false;
|
|
238
238
|
};
|
|
239
239
|
toolId: {
|
|
240
|
-
type:
|
|
240
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
241
241
|
isOptional: true;
|
|
242
242
|
};
|
|
243
243
|
toolName: {
|
|
244
|
-
type:
|
|
244
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
245
245
|
isOptional: true;
|
|
246
246
|
};
|
|
247
247
|
input: {
|
|
248
|
-
type:
|
|
248
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
249
249
|
isOptional: true;
|
|
250
250
|
};
|
|
251
251
|
output: {
|
|
252
|
-
type:
|
|
252
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
253
253
|
isOptional: true;
|
|
254
254
|
};
|
|
255
255
|
status: {
|
|
256
|
-
type:
|
|
256
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string, string, string]>;
|
|
257
257
|
isOptional: false;
|
|
258
258
|
};
|
|
259
259
|
errorMessage: {
|
|
260
|
-
type:
|
|
260
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
261
261
|
isOptional: true;
|
|
262
262
|
};
|
|
263
263
|
tokensUsed: {
|
|
264
|
-
type:
|
|
264
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
265
265
|
isOptional: false;
|
|
266
266
|
defaultValue: number;
|
|
267
267
|
};
|
|
268
268
|
durationMs: {
|
|
269
|
-
type:
|
|
269
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
270
270
|
isOptional: true;
|
|
271
271
|
};
|
|
272
272
|
startedAt: {
|
|
273
|
-
type:
|
|
273
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
274
274
|
isOptional: false;
|
|
275
275
|
};
|
|
276
276
|
completedAt: {
|
|
277
|
-
type:
|
|
277
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
278
278
|
isOptional: true;
|
|
279
279
|
};
|
|
280
280
|
}>;
|
|
@@ -282,41 +282,41 @@ declare const RunModel: _lssm_lib_schema784.SchemaModel<{
|
|
|
282
282
|
isOptional: true;
|
|
283
283
|
};
|
|
284
284
|
logs: {
|
|
285
|
-
type:
|
|
285
|
+
type: _lssm_lib_schema463.SchemaModel<{
|
|
286
286
|
id: {
|
|
287
|
-
type:
|
|
287
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
288
288
|
isOptional: false;
|
|
289
289
|
};
|
|
290
290
|
stepId: {
|
|
291
|
-
type:
|
|
291
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
292
292
|
isOptional: true;
|
|
293
293
|
};
|
|
294
294
|
level: {
|
|
295
|
-
type:
|
|
295
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string]>;
|
|
296
296
|
isOptional: false;
|
|
297
297
|
};
|
|
298
298
|
message: {
|
|
299
|
-
type:
|
|
299
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
300
300
|
isOptional: false;
|
|
301
301
|
};
|
|
302
302
|
data: {
|
|
303
|
-
type:
|
|
303
|
+
type: _lssm_lib_schema463.FieldType<Record<string, unknown>, Record<string, unknown>>;
|
|
304
304
|
isOptional: true;
|
|
305
305
|
};
|
|
306
306
|
source: {
|
|
307
|
-
type:
|
|
307
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
308
308
|
isOptional: true;
|
|
309
309
|
};
|
|
310
310
|
traceId: {
|
|
311
|
-
type:
|
|
311
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
312
312
|
isOptional: true;
|
|
313
313
|
};
|
|
314
314
|
spanId: {
|
|
315
|
-
type:
|
|
315
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
316
316
|
isOptional: true;
|
|
317
317
|
};
|
|
318
318
|
timestamp: {
|
|
319
|
-
type:
|
|
319
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
320
320
|
isOptional: false;
|
|
321
321
|
};
|
|
322
322
|
}>;
|
|
@@ -324,21 +324,21 @@ declare const RunModel: _lssm_lib_schema784.SchemaModel<{
|
|
|
324
324
|
isOptional: true;
|
|
325
325
|
};
|
|
326
326
|
agent: {
|
|
327
|
-
type:
|
|
327
|
+
type: _lssm_lib_schema463.SchemaModel<{
|
|
328
328
|
id: {
|
|
329
|
-
type:
|
|
329
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
330
330
|
isOptional: false;
|
|
331
331
|
};
|
|
332
332
|
name: {
|
|
333
|
-
type:
|
|
333
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
334
334
|
isOptional: false;
|
|
335
335
|
};
|
|
336
336
|
modelProvider: {
|
|
337
|
-
type:
|
|
337
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
338
338
|
isOptional: false;
|
|
339
339
|
};
|
|
340
340
|
modelName: {
|
|
341
|
-
type:
|
|
341
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
342
342
|
isOptional: false;
|
|
343
343
|
};
|
|
344
344
|
}>;
|
|
@@ -348,66 +348,66 @@ declare const RunModel: _lssm_lib_schema784.SchemaModel<{
|
|
|
348
348
|
/**
|
|
349
349
|
* Summary of a run for list views.
|
|
350
350
|
*/
|
|
351
|
-
declare const RunSummaryModel:
|
|
351
|
+
declare const RunSummaryModel: _lssm_lib_schema463.SchemaModel<{
|
|
352
352
|
id: {
|
|
353
|
-
type:
|
|
353
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
354
354
|
isOptional: false;
|
|
355
355
|
};
|
|
356
356
|
agentId: {
|
|
357
|
-
type:
|
|
357
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
358
358
|
isOptional: false;
|
|
359
359
|
};
|
|
360
360
|
agentName: {
|
|
361
|
-
type:
|
|
361
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
362
362
|
isOptional: false;
|
|
363
363
|
};
|
|
364
364
|
status: {
|
|
365
|
-
type:
|
|
365
|
+
type: _lssm_lib_schema463.EnumType<[string, string, string, string, string, string]>;
|
|
366
366
|
isOptional: false;
|
|
367
367
|
};
|
|
368
368
|
totalTokens: {
|
|
369
|
-
type:
|
|
369
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
370
370
|
isOptional: false;
|
|
371
371
|
};
|
|
372
372
|
durationMs: {
|
|
373
|
-
type:
|
|
373
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
374
374
|
isOptional: true;
|
|
375
375
|
};
|
|
376
376
|
estimatedCostUsd: {
|
|
377
|
-
type:
|
|
377
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
378
378
|
isOptional: true;
|
|
379
379
|
};
|
|
380
380
|
queuedAt: {
|
|
381
|
-
type:
|
|
381
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
382
382
|
isOptional: false;
|
|
383
383
|
};
|
|
384
384
|
completedAt: {
|
|
385
|
-
type:
|
|
385
|
+
type: _lssm_lib_schema463.FieldType<Date, string>;
|
|
386
386
|
isOptional: true;
|
|
387
387
|
};
|
|
388
388
|
}>;
|
|
389
389
|
/**
|
|
390
390
|
* Timeline data point for metrics.
|
|
391
391
|
*/
|
|
392
|
-
declare const TimelineDataPointModel:
|
|
392
|
+
declare const TimelineDataPointModel: _lssm_lib_schema463.SchemaModel<{
|
|
393
393
|
period: {
|
|
394
|
-
type:
|
|
394
|
+
type: _lssm_lib_schema463.FieldType<string, string>;
|
|
395
395
|
isOptional: false;
|
|
396
396
|
};
|
|
397
397
|
runs: {
|
|
398
|
-
type:
|
|
398
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
399
399
|
isOptional: false;
|
|
400
400
|
};
|
|
401
401
|
tokens: {
|
|
402
|
-
type:
|
|
402
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
403
403
|
isOptional: false;
|
|
404
404
|
};
|
|
405
405
|
costUsd: {
|
|
406
|
-
type:
|
|
406
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
407
407
|
isOptional: false;
|
|
408
408
|
};
|
|
409
409
|
avgDurationMs: {
|
|
410
|
-
type:
|
|
410
|
+
type: _lssm_lib_schema463.FieldType<number, number>;
|
|
411
411
|
isOptional: false;
|
|
412
412
|
};
|
|
413
413
|
}>;
|