cyberdesk 1.4.1 → 1.5.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
|
@@ -225,6 +225,12 @@ export type TrajectoryCreate = {
|
|
|
225
225
|
trajectory_data: Array<{
|
|
226
226
|
[key: string]: unknown;
|
|
227
227
|
}>;
|
|
228
|
+
/**
|
|
229
|
+
* Display dimensions when trajectory was recorded
|
|
230
|
+
*/
|
|
231
|
+
dimensions: {
|
|
232
|
+
[key: string]: number;
|
|
233
|
+
};
|
|
228
234
|
};
|
|
229
235
|
/**
|
|
230
236
|
* Trajectory response schema
|
|
@@ -234,6 +240,12 @@ export type TrajectoryResponse = {
|
|
|
234
240
|
trajectory_data: Array<{
|
|
235
241
|
[key: string]: unknown;
|
|
236
242
|
}>;
|
|
243
|
+
/**
|
|
244
|
+
* Display dimensions when trajectory was recorded
|
|
245
|
+
*/
|
|
246
|
+
dimensions: {
|
|
247
|
+
[key: string]: number;
|
|
248
|
+
};
|
|
237
249
|
id: string;
|
|
238
250
|
user_id: string;
|
|
239
251
|
created_at: string;
|