@vertexvis/stream-api 0.22.1-canary.4 → 0.22.1-canary.5
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.esm.js
CHANGED
|
@@ -4239,6 +4239,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4239
4239
|
* @property {vertexvis.protobuf.stream.ICrossSectioning|null} [crossSectioning] SceneAttributes crossSectioning
|
|
4240
4240
|
* @property {boolean|null} [hasChanged] SceneAttributes hasChanged
|
|
4241
4241
|
* @property {vertexvis.protobuf.stream.IDisplayListSummary|null} [displayListSummary] SceneAttributes displayListSummary
|
|
4242
|
+
* @property {vertexvis.protobuf.core.IUuid2l|null} [modelViewId] SceneAttributes modelViewId
|
|
4242
4243
|
*/
|
|
4243
4244
|
|
|
4244
4245
|
/**
|
|
@@ -4296,6 +4297,14 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4296
4297
|
*/
|
|
4297
4298
|
SceneAttributes.prototype.displayListSummary = null;
|
|
4298
4299
|
|
|
4300
|
+
/**
|
|
4301
|
+
* SceneAttributes modelViewId.
|
|
4302
|
+
* @member {vertexvis.protobuf.core.IUuid2l|null|undefined} modelViewId
|
|
4303
|
+
* @memberof vertexvis.protobuf.stream.SceneAttributes
|
|
4304
|
+
* @instance
|
|
4305
|
+
*/
|
|
4306
|
+
SceneAttributes.prototype.modelViewId = null;
|
|
4307
|
+
|
|
4299
4308
|
/**
|
|
4300
4309
|
* Creates a new SceneAttributes instance using the specified properties.
|
|
4301
4310
|
* @function create
|
|
@@ -4330,6 +4339,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4330
4339
|
writer.uint32(/* id 4, wireType 0 =*/32).bool(message.hasChanged);
|
|
4331
4340
|
if (message.displayListSummary != null && Object.hasOwnProperty.call(message, "displayListSummary"))
|
|
4332
4341
|
$root.vertexvis.protobuf.stream.DisplayListSummary.encode(message.displayListSummary, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
|
|
4342
|
+
if (message.modelViewId != null && Object.hasOwnProperty.call(message, "modelViewId"))
|
|
4343
|
+
$root.vertexvis.protobuf.core.Uuid2l.encode(message.modelViewId, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
|
|
4333
4344
|
return writer;
|
|
4334
4345
|
};
|
|
4335
4346
|
|
|
@@ -4379,6 +4390,9 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4379
4390
|
case 5:
|
|
4380
4391
|
message.displayListSummary = $root.vertexvis.protobuf.stream.DisplayListSummary.decode(reader, reader.uint32());
|
|
4381
4392
|
break;
|
|
4393
|
+
case 6:
|
|
4394
|
+
message.modelViewId = $root.vertexvis.protobuf.core.Uuid2l.decode(reader, reader.uint32());
|
|
4395
|
+
break;
|
|
4382
4396
|
default:
|
|
4383
4397
|
reader.skipType(tag & 7);
|
|
4384
4398
|
break;
|
|
@@ -4437,6 +4451,11 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4437
4451
|
if (error)
|
|
4438
4452
|
return "displayListSummary." + error;
|
|
4439
4453
|
}
|
|
4454
|
+
if (message.modelViewId != null && message.hasOwnProperty("modelViewId")) {
|
|
4455
|
+
let error = $root.vertexvis.protobuf.core.Uuid2l.verify(message.modelViewId);
|
|
4456
|
+
if (error)
|
|
4457
|
+
return "modelViewId." + error;
|
|
4458
|
+
}
|
|
4440
4459
|
return null;
|
|
4441
4460
|
};
|
|
4442
4461
|
|
|
@@ -4474,6 +4493,11 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4474
4493
|
throw TypeError(".vertexvis.protobuf.stream.SceneAttributes.displayListSummary: object expected");
|
|
4475
4494
|
message.displayListSummary = $root.vertexvis.protobuf.stream.DisplayListSummary.fromObject(object.displayListSummary);
|
|
4476
4495
|
}
|
|
4496
|
+
if (object.modelViewId != null) {
|
|
4497
|
+
if (typeof object.modelViewId !== "object")
|
|
4498
|
+
throw TypeError(".vertexvis.protobuf.stream.SceneAttributes.modelViewId: object expected");
|
|
4499
|
+
message.modelViewId = $root.vertexvis.protobuf.core.Uuid2l.fromObject(object.modelViewId);
|
|
4500
|
+
}
|
|
4477
4501
|
return message;
|
|
4478
4502
|
};
|
|
4479
4503
|
|
|
@@ -4496,6 +4520,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4496
4520
|
object.crossSectioning = null;
|
|
4497
4521
|
object.hasChanged = false;
|
|
4498
4522
|
object.displayListSummary = null;
|
|
4523
|
+
object.modelViewId = null;
|
|
4499
4524
|
}
|
|
4500
4525
|
if (message.camera != null && message.hasOwnProperty("camera"))
|
|
4501
4526
|
object.camera = $root.vertexvis.protobuf.stream.Camera.toObject(message.camera, options);
|
|
@@ -4507,6 +4532,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
4507
4532
|
object.hasChanged = message.hasChanged;
|
|
4508
4533
|
if (message.displayListSummary != null && message.hasOwnProperty("displayListSummary"))
|
|
4509
4534
|
object.displayListSummary = $root.vertexvis.protobuf.stream.DisplayListSummary.toObject(message.displayListSummary, options);
|
|
4535
|
+
if (message.modelViewId != null && message.hasOwnProperty("modelViewId"))
|
|
4536
|
+
object.modelViewId = $root.vertexvis.protobuf.core.Uuid2l.toObject(message.modelViewId, options);
|
|
4510
4537
|
return object;
|
|
4511
4538
|
};
|
|
4512
4539
|
|