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.
@@ -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;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyberdesk",
3
- "version": "1.4.1",
3
+ "version": "1.5.0",
4
4
  "description": "The official TypeScript SDK for Cyberdesk",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",