cyberdesk 1.7.0 → 1.8.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/client/types.gen.d.ts +12 -0
- package/package.json +1 -1
|
@@ -243,6 +243,12 @@ export type TrajectoryCreate = {
|
|
|
243
243
|
dimensions: {
|
|
244
244
|
[key: string]: number;
|
|
245
245
|
};
|
|
246
|
+
/**
|
|
247
|
+
* Original input values used when trajectory was created
|
|
248
|
+
*/
|
|
249
|
+
original_input_values?: {
|
|
250
|
+
[key: string]: unknown;
|
|
251
|
+
} | null;
|
|
246
252
|
};
|
|
247
253
|
/**
|
|
248
254
|
* Trajectory response schema
|
|
@@ -258,6 +264,12 @@ export type TrajectoryResponse = {
|
|
|
258
264
|
dimensions: {
|
|
259
265
|
[key: string]: number;
|
|
260
266
|
};
|
|
267
|
+
/**
|
|
268
|
+
* Original input values used when trajectory was created
|
|
269
|
+
*/
|
|
270
|
+
original_input_values?: {
|
|
271
|
+
[key: string]: unknown;
|
|
272
|
+
} | null;
|
|
261
273
|
id: string;
|
|
262
274
|
user_id: string;
|
|
263
275
|
created_at: string;
|