@vertexvis/stream-api 0.22.1-canary.13 → 0.22.1-canary.14

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.
@@ -15199,7 +15199,6 @@ const vertexvis = $root.vertexvis = (() => {
15199
15199
  * Properties of a SceneComparisonAttributes.
15200
15200
  * @memberof vertexvis.protobuf.stream
15201
15201
  * @interface ISceneComparisonAttributes
15202
- * @property {vertexvis.protobuf.core.IUuid2l|null} [sceneIdToCompare] SceneComparisonAttributes sceneIdToCompare
15203
15202
  * @property {google.protobuf.IStringValue|null} [streamKeyToCompare] SceneComparisonAttributes streamKeyToCompare
15204
15203
  */
15205
15204
 
@@ -15218,14 +15217,6 @@ const vertexvis = $root.vertexvis = (() => {
15218
15217
  this[keys[i]] = properties[keys[i]];
15219
15218
  }
15220
15219
 
15221
- /**
15222
- * SceneComparisonAttributes sceneIdToCompare.
15223
- * @member {vertexvis.protobuf.core.IUuid2l|null|undefined} sceneIdToCompare
15224
- * @memberof vertexvis.protobuf.stream.SceneComparisonAttributes
15225
- * @instance
15226
- */
15227
- SceneComparisonAttributes.prototype.sceneIdToCompare = null;
15228
-
15229
15220
  /**
15230
15221
  * SceneComparisonAttributes streamKeyToCompare.
15231
15222
  * @member {google.protobuf.IStringValue|null|undefined} streamKeyToCompare
@@ -15258,8 +15249,6 @@ const vertexvis = $root.vertexvis = (() => {
15258
15249
  SceneComparisonAttributes.encode = function encode(message, writer) {
15259
15250
  if (!writer)
15260
15251
  writer = $Writer.create();
15261
- if (message.sceneIdToCompare != null && Object.hasOwnProperty.call(message, "sceneIdToCompare"))
15262
- $root.vertexvis.protobuf.core.Uuid2l.encode(message.sceneIdToCompare, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim();
15263
15252
  if (message.streamKeyToCompare != null && Object.hasOwnProperty.call(message, "streamKeyToCompare"))
15264
15253
  $root.google.protobuf.StringValue.encode(message.streamKeyToCompare, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
15265
15254
  return writer;
@@ -15296,9 +15285,6 @@ const vertexvis = $root.vertexvis = (() => {
15296
15285
  while (reader.pos < end) {
15297
15286
  let tag = reader.uint32();
15298
15287
  switch (tag >>> 3) {
15299
- case 1:
15300
- message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.decode(reader, reader.uint32());
15301
- break;
15302
15288
  case 2:
15303
15289
  message.streamKeyToCompare = $root.google.protobuf.StringValue.decode(reader, reader.uint32());
15304
15290
  break;
@@ -15337,11 +15323,6 @@ const vertexvis = $root.vertexvis = (() => {
15337
15323
  SceneComparisonAttributes.verify = function verify(message) {
15338
15324
  if (typeof message !== "object" || message === null)
15339
15325
  return "object expected";
15340
- if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare")) {
15341
- let error = $root.vertexvis.protobuf.core.Uuid2l.verify(message.sceneIdToCompare);
15342
- if (error)
15343
- return "sceneIdToCompare." + error;
15344
- }
15345
15326
  if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare")) {
15346
15327
  let error = $root.google.protobuf.StringValue.verify(message.streamKeyToCompare);
15347
15328
  if (error)
@@ -15362,11 +15343,6 @@ const vertexvis = $root.vertexvis = (() => {
15362
15343
  if (object instanceof $root.vertexvis.protobuf.stream.SceneComparisonAttributes)
15363
15344
  return object;
15364
15345
  let message = new $root.vertexvis.protobuf.stream.SceneComparisonAttributes();
15365
- if (object.sceneIdToCompare != null) {
15366
- if (typeof object.sceneIdToCompare !== "object")
15367
- throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.sceneIdToCompare: object expected");
15368
- message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.fromObject(object.sceneIdToCompare);
15369
- }
15370
15346
  if (object.streamKeyToCompare != null) {
15371
15347
  if (typeof object.streamKeyToCompare !== "object")
15372
15348
  throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.streamKeyToCompare: object expected");
@@ -15388,12 +15364,8 @@ const vertexvis = $root.vertexvis = (() => {
15388
15364
  if (!options)
15389
15365
  options = {};
15390
15366
  let object = {};
15391
- if (options.defaults) {
15392
- object.sceneIdToCompare = null;
15367
+ if (options.defaults)
15393
15368
  object.streamKeyToCompare = null;
15394
- }
15395
- if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare"))
15396
- object.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.toObject(message.sceneIdToCompare, options);
15397
15369
  if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare"))
15398
15370
  object.streamKeyToCompare = $root.google.protobuf.StringValue.toObject(message.streamKeyToCompare, options);
15399
15371
  return object;