@formant/data-sdk 1.71.0 → 1.73.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.
@@ -27,7 +27,7 @@ export declare class LiveUniverseData extends BasicUniverseDataConnector impleme
27
27
  subscribeToJson<T>(deviceId: string, source: UniverseDataSource, callback: (data: T) => void): CloseSubscription;
28
28
  subscribeToText(deviceId: string, source: UniverseDataSource, callback: (data: string) => void): CloseSubscription;
29
29
  subscribeToPointCloud(deviceId: string, source: UniverseDataSource, callback: (data: IUniversePointCloud) => void): () => void;
30
- subscribeToGeometry(_deviceId: string, _source: UniverseDataSource, _callback: (data: IMarker3DArray) => void): () => void;
30
+ subscribeToGeometry(deviceId: string, source: UniverseDataSource, callback: (data: IMarker3DArray) => void): () => void;
31
31
  subscribeToJointState(deviceId: string, source: UniverseDataSource, callback: (data: IJointState) => void): () => void;
32
32
  subscribeToGridMap(deviceId: string, source: UniverseDataSource, callback: (data: IUniverseGridMap) => void): () => void;
33
33
  subscribeToVideo(deviceId: string, source: UniverseDataSource, callback: (frame: HTMLCanvasElement) => void): () => void;
@@ -9,5 +9,6 @@ export interface ITaskSummary extends IBaseEvent<"task-summary"> {
9
9
  taskId: string;
10
10
  deviceId: Uuid;
11
11
  generatedAt: IsoDate;
12
+ endTime: IsoDate;
12
13
  deletedAt?: IsoDate | null;
13
14
  }
package/package.json CHANGED
@@ -24,7 +24,7 @@
24
24
  }
25
25
  }
26
26
  },
27
- "version": "1.71.0",
27
+ "version": "1.73.0",
28
28
  "scripts": {
29
29
  "preversion": "npm run verify",
30
30
  "postversion": "make",