@vuu-ui/vuu-protocol-types 0.13.66 → 0.13.68
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/index.d.ts +10 -1
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -241,6 +241,9 @@ export interface FreezeViewportRequest {
|
|
|
241
241
|
viewPortId: string;
|
|
242
242
|
}
|
|
243
243
|
|
|
244
|
+
export declare type FreezeViewportResponse =
|
|
245
|
+
| FreezeViewportSuccess
|
|
246
|
+
| FreezeViewportReject;
|
|
244
247
|
export interface FreezeViewportSuccess {
|
|
245
248
|
type: "FREEZE_VP_SUCCESS";
|
|
246
249
|
viewPortId: string;
|
|
@@ -249,6 +252,10 @@ export interface FreezeViewportReject {
|
|
|
249
252
|
type: "FREEZE_VP_REJECT";
|
|
250
253
|
viewPortId: string;
|
|
251
254
|
}
|
|
255
|
+
export declare type UnfreezeViewportResponse =
|
|
256
|
+
| UnfreezeViewportSuccess
|
|
257
|
+
| UnfreezeViewportReject;
|
|
258
|
+
|
|
252
259
|
export interface UnfreezeViewportRequest {
|
|
253
260
|
type: "UNFREEZE_VP";
|
|
254
261
|
viewPortId: string;
|
|
@@ -427,7 +434,9 @@ export declare type ServerMessageBody =
|
|
|
427
434
|
| ServerToClientError
|
|
428
435
|
| VuuRpcEditSuccess
|
|
429
436
|
| VuuRpcEditSuccess
|
|
430
|
-
| VuuRpcEditError
|
|
437
|
+
| VuuRpcEditError
|
|
438
|
+
| FreezeViewportResponse
|
|
439
|
+
| UnfreezeViewportResponse;
|
|
431
440
|
export interface ClientToServerHeartBeat {
|
|
432
441
|
type: "HB_RESP";
|
|
433
442
|
ts: number;
|