@vertexvis/stream-api 0.12.0-canary.18 → 0.12.0-canary.21
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 +463 -4
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +463 -4
- package/dist/bundle.esm.js.map +1 -1
- package/dist/streamApi.d.ts +13 -0
- package/package.json +5 -5
package/dist/streamApi.d.ts
CHANGED
|
@@ -189,6 +189,19 @@ export declare class StreamApi {
|
|
|
189
189
|
* Defaults to `true`.
|
|
190
190
|
*/
|
|
191
191
|
createSceneAlteration(payload: vertexvis.protobuf.stream.ICreateSceneAlterationPayload, withResponse?: boolean): Promise<vertexvis.protobuf.stream.IStreamResponse>;
|
|
192
|
+
/**
|
|
193
|
+
* Sends a request to reset all overrides for a given scene and optionally to
|
|
194
|
+
* reset the camera to that of the base scene.
|
|
195
|
+
*
|
|
196
|
+
* Use `withResponse` to indicate if the server should reply with a response.
|
|
197
|
+
* If `false`, the returned promise will complete immediately. Otherwise,
|
|
198
|
+
* it'll complete when a response is received.
|
|
199
|
+
*
|
|
200
|
+
* @param payload The payload of the request.
|
|
201
|
+
* @param withResponse Indicates if the server should reply with a response.
|
|
202
|
+
* Defaults to `true`.
|
|
203
|
+
*/
|
|
204
|
+
resetSceneView(payload: vertexvis.protobuf.stream.IResetViewPlayload, withResponse?: boolean): Promise<vertexvis.protobuf.stream.IStreamResponse>;
|
|
192
205
|
/**
|
|
193
206
|
* Sends a request to tell the rendering pipeline that an interaction has
|
|
194
207
|
* ended.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vertexvis/stream-api",
|
|
3
|
-
"version": "0.12.0-canary.
|
|
3
|
+
"version": "0.12.0-canary.21",
|
|
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)",
|
|
@@ -35,14 +35,14 @@
|
|
|
35
35
|
"test:coverage": "yarn test --coverage"
|
|
36
36
|
},
|
|
37
37
|
"dependencies": {
|
|
38
|
-
"@vertexvis/frame-streaming-protos": "^0.6.
|
|
38
|
+
"@vertexvis/frame-streaming-protos": "^0.6.9"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
41
|
"@types/jest": "^26.0.20",
|
|
42
42
|
"@vertexvis/eslint-config-vertexvis-typescript": "^0.4.1",
|
|
43
43
|
"@vertexvis/jest-config-vertexvis": "^0.5.3",
|
|
44
|
-
"@vertexvis/utils": "^0.12.0-canary.
|
|
45
|
-
"@vertexwebsdk/build": "^0.12.0-canary.
|
|
44
|
+
"@vertexvis/utils": "^0.12.0-canary.21",
|
|
45
|
+
"@vertexwebsdk/build": "^0.12.0-canary.21",
|
|
46
46
|
"eslint": "^7.20.0",
|
|
47
47
|
"jest": "^26.6.3",
|
|
48
48
|
"protobufjs": "^6.9.0",
|
|
@@ -56,5 +56,5 @@
|
|
|
56
56
|
"protobufjs": ">=6.9.0 <7.0.0",
|
|
57
57
|
"tslib": ">=2.1.0"
|
|
58
58
|
},
|
|
59
|
-
"gitHead": "
|
|
59
|
+
"gitHead": "9edf3b968f550cf929a69908c0b0cb3d4b27c031"
|
|
60
60
|
}
|