@vertexvis/stream-api 0.22.1-canary.4 → 0.22.1-canary.6
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 +27 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +27 -0
- package/dist/bundle.esm.js.map +1 -1
- package/package.json +4 -4
package/dist/bundle.cjs.js
CHANGED
|
@@ -4243,6 +4243,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4243
4243
|
* @property {vertexvis.protobuf.stream.ICrossSectioning|null} [crossSectioning] SceneAttributes crossSectioning
|
|
4244
4244
|
* @property {boolean|null} [hasChanged] SceneAttributes hasChanged
|
|
4245
4245
|
* @property {vertexvis.protobuf.stream.IDisplayListSummary|null} [displayListSummary] SceneAttributes displayListSummary
|
|
4246
|
+
* @property {vertexvis.protobuf.core.IUuid2l|null} [modelViewId] SceneAttributes modelViewId
|
|
4246
4247
|
*/
|
|
4247
4248
|
|
|
4248
4249
|
/**
|
|
@@ -4300,6 +4301,14 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4300
4301
|
*/
|
|
4301
4302
|
SceneAttributes.prototype.displayListSummary = null;
|
|
4302
4303
|
|
|
4304
|
+
/**
|
|
4305
|
+
* SceneAttributes modelViewId.
|
|
4306
|
+
* @member {vertexvis.protobuf.core.IUuid2l|null|undefined} modelViewId
|
|
4307
|
+
* @memberof vertexvis.protobuf.stream.SceneAttributes
|
|
4308
|
+
* @instance
|
|
4309
|
+
*/
|
|
4310
|
+
SceneAttributes.prototype.modelViewId = null;
|
|
4311
|
+
|
|
4303
4312
|
/**
|
|
4304
4313
|
* Creates a new SceneAttributes instance using the specified properties.
|
|
4305
4314
|
* @function create
|
|
@@ -4334,6 +4343,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4334
4343
|
writer.uint32(/* id 4, wireType 0 =*/32).bool(message.hasChanged);
|
|
4335
4344
|
if (message.displayListSummary != null && Object.hasOwnProperty.call(message, "displayListSummary"))
|
|
4336
4345
|
$root.vertexvis.protobuf.stream.DisplayListSummary.encode(message.displayListSummary, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
|
|
4346
|
+
if (message.modelViewId != null && Object.hasOwnProperty.call(message, "modelViewId"))
|
|
4347
|
+
$root.vertexvis.protobuf.core.Uuid2l.encode(message.modelViewId, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
|
|
4337
4348
|
return writer;
|
|
4338
4349
|
};
|
|
4339
4350
|
|
|
@@ -4383,6 +4394,9 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4383
4394
|
case 5:
|
|
4384
4395
|
message.displayListSummary = $root.vertexvis.protobuf.stream.DisplayListSummary.decode(reader, reader.uint32());
|
|
4385
4396
|
break;
|
|
4397
|
+
case 6:
|
|
4398
|
+
message.modelViewId = $root.vertexvis.protobuf.core.Uuid2l.decode(reader, reader.uint32());
|
|
4399
|
+
break;
|
|
4386
4400
|
default:
|
|
4387
4401
|
reader.skipType(tag & 7);
|
|
4388
4402
|
break;
|
|
@@ -4441,6 +4455,11 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4441
4455
|
if (error)
|
|
4442
4456
|
return "displayListSummary." + error;
|
|
4443
4457
|
}
|
|
4458
|
+
if (message.modelViewId != null && message.hasOwnProperty("modelViewId")) {
|
|
4459
|
+
let error = $root.vertexvis.protobuf.core.Uuid2l.verify(message.modelViewId);
|
|
4460
|
+
if (error)
|
|
4461
|
+
return "modelViewId." + error;
|
|
4462
|
+
}
|
|
4444
4463
|
return null;
|
|
4445
4464
|
};
|
|
4446
4465
|
|
|
@@ -4478,6 +4497,11 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4478
4497
|
throw TypeError(".vertexvis.protobuf.stream.SceneAttributes.displayListSummary: object expected");
|
|
4479
4498
|
message.displayListSummary = $root.vertexvis.protobuf.stream.DisplayListSummary.fromObject(object.displayListSummary);
|
|
4480
4499
|
}
|
|
4500
|
+
if (object.modelViewId != null) {
|
|
4501
|
+
if (typeof object.modelViewId !== "object")
|
|
4502
|
+
throw TypeError(".vertexvis.protobuf.stream.SceneAttributes.modelViewId: object expected");
|
|
4503
|
+
message.modelViewId = $root.vertexvis.protobuf.core.Uuid2l.fromObject(object.modelViewId);
|
|
4504
|
+
}
|
|
4481
4505
|
return message;
|
|
4482
4506
|
};
|
|
4483
4507
|
|
|
@@ -4500,6 +4524,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4500
4524
|
object.crossSectioning = null;
|
|
4501
4525
|
object.hasChanged = false;
|
|
4502
4526
|
object.displayListSummary = null;
|
|
4527
|
+
object.modelViewId = null;
|
|
4503
4528
|
}
|
|
4504
4529
|
if (message.camera != null && message.hasOwnProperty("camera"))
|
|
4505
4530
|
object.camera = $root.vertexvis.protobuf.stream.Camera.toObject(message.camera, options);
|
|
@@ -4511,6 +4536,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4511
4536
|
object.hasChanged = message.hasChanged;
|
|
4512
4537
|
if (message.displayListSummary != null && message.hasOwnProperty("displayListSummary"))
|
|
4513
4538
|
object.displayListSummary = $root.vertexvis.protobuf.stream.DisplayListSummary.toObject(message.displayListSummary, options);
|
|
4539
|
+
if (message.modelViewId != null && message.hasOwnProperty("modelViewId"))
|
|
4540
|
+
object.modelViewId = $root.vertexvis.protobuf.core.Uuid2l.toObject(message.modelViewId, options);
|
|
4514
4541
|
return object;
|
|
4515
4542
|
};
|
|
4516
4543
|
|