@vertexvis/stream-api 0.24.3-canary.1 → 0.24.3-canary.2
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/bundle.cjs.js +172 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +172 -0
- package/dist/bundle.esm.js.map +1 -1
- package/dist/validators.d.ts +9 -0
- package/package.json +4 -4
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { vertexvis } from '@vertexvis/frame-streaming-protos';
|
|
2
|
+
export declare function validateBoundingBox(boundingBox: vertexvis.protobuf.core.IBoundingBox3f): boolean;
|
|
3
|
+
export declare function validateCamera(camera: vertexvis.protobuf.stream.ICamera): boolean;
|
|
4
|
+
export declare function validatePerspectiveCamera(camera: vertexvis.protobuf.stream.IPerspectiveCamera): boolean;
|
|
5
|
+
export declare function validateOrthographicCamera(camera: vertexvis.protobuf.stream.IOrthographicCamera): boolean;
|
|
6
|
+
export declare function validateDimensions(dimensions: vertexvis.protobuf.stream.IDimensions): boolean;
|
|
7
|
+
export declare function validateNumber(number: number): boolean;
|
|
8
|
+
export declare function validatePoint(point: vertexvis.protobuf.stream.IPoint): boolean;
|
|
9
|
+
export declare function validateVector(vector: vertexvis.protobuf.core.IVector3f, verifyNonZeroLength: boolean): boolean;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertexvis/stream-api",
|
|
3
|
-
"version": "0.24.3-canary.
|
|
3
|
+
"version": "0.24.3-canary.2",
|
|
4
4
|
"description": "A websocket client for interacting with Vertex's stream API.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "Vertex Developers <support@vertexvis.com> (https://developer.vertexvis.com)",
|
|
@@ -43,8 +43,8 @@
|
|
|
43
43
|
"@types/jest": "^27.5.1",
|
|
44
44
|
"@vertexvis/eslint-config-vertexvis-typescript": "^0.5.0",
|
|
45
45
|
"@vertexvis/jest-config-vertexvis": "^0.5.4",
|
|
46
|
-
"@vertexvis/utils": "0.24.3-canary.
|
|
47
|
-
"@vertexwebsdk/build": "0.24.3-canary.
|
|
46
|
+
"@vertexvis/utils": "0.24.3-canary.2",
|
|
47
|
+
"@vertexwebsdk/build": "0.24.3-canary.2",
|
|
48
48
|
"eslint": "^8.57.1",
|
|
49
49
|
"jest": "^27.5.1",
|
|
50
50
|
"protobufjs": "^7.5.4",
|
|
@@ -58,5 +58,5 @@
|
|
|
58
58
|
"protobufjs": ">=6.9.0 <8.0.0",
|
|
59
59
|
"tslib": ">=2.1.0"
|
|
60
60
|
},
|
|
61
|
-
"gitHead": "
|
|
61
|
+
"gitHead": "b53940c13666bcdc4d128deba25060bf9502206b"
|
|
62
62
|
}
|