Skip to content

Commit 5e28393

Browse files
authored
Fix stream types (#218)
1 parent 5f01ad3 commit 5e28393

File tree

3 files changed

+5
-6
lines changed

3 files changed

+5
-6
lines changed

packages/data-sdk/CHANGELOG.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
## [1.80.3] - 2025-05-31
2+
3+
- Fix stream types
4+
15
## [1.80.2] - 2025-05-23
26

37
- Add realtimePingInfo to Device

packages/data-sdk/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@formant/data-sdk",
3-
"version": "1.80.2",
3+
"version": "1.80.3",
44
"description": "A library for getting data from Formant",
55
"repository": {
66
"type": "git",

packages/data-sdk/src/model/IStreamTypeMap.ts

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,21 +3,16 @@ import { IBitset } from "./IBitset";
33
import { IFile } from "./IFile";
44
import { IHealth } from "./IHealth";
55
import { IImage } from "./IImage";
6-
import { IJoy } from "./IJoy";
76
import { ILocalization } from "./ILocalization";
87
import { ILocation } from "./ILocation";
98
import { INumericSetEntry } from "./INumericSetEntry";
109
import { IPointCloud } from "./IPointCloud";
1110
import { ITransformNode } from "./ITransformNode";
12-
import { ITwist } from "./ITwist";
1311
import { IVideo } from "./IVideo";
1412

1513
// NOTE: Also add an entry in streamTypes
1614

1715
export interface IStreamTypeMap {
18-
twist: ITwist;
19-
joy: IJoy;
20-
boolean: boolean;
2116
bitset: IBitset;
2217
localization: ILocalization;
2318
"point cloud": IPointCloud;

0 commit comments

Comments
 (0)