@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.
@@ -15203,7 +15203,6 @@ const vertexvis = $root.vertexvis = (() => {
15203
15203
  * Properties of a SceneComparisonAttributes.
15204
15204
  * @memberof vertexvis.protobuf.stream
15205
15205
  * @interface ISceneComparisonAttributes
15206
- * @property {vertexvis.protobuf.core.IUuid2l|null} [sceneIdToCompare] SceneComparisonAttributes sceneIdToCompare
15207
15206
  * @property {google.protobuf.IStringValue|null} [streamKeyToCompare] SceneComparisonAttributes streamKeyToCompare
15208
15207
  */
15209
15208
 
@@ -15222,14 +15221,6 @@ const vertexvis = $root.vertexvis = (() => {
15222
15221
  this[keys[i]] = properties[keys[i]];
15223
15222
  }
15224
15223
 
15225
- /**
15226
- * SceneComparisonAttributes sceneIdToCompare.
15227
- * @member {vertexvis.protobuf.core.IUuid2l|null|undefined} sceneIdToCompare
15228
- * @memberof vertexvis.protobuf.stream.SceneComparisonAttributes
15229
- * @instance
15230
- */
15231
- SceneComparisonAttributes.prototype.sceneIdToCompare = null;
15232
-
15233
15224
  /**
15234
15225
  * SceneComparisonAttributes streamKeyToCompare.
15235
15226
  * @member {google.protobuf.IStringValue|null|undefined} streamKeyToCompare
@@ -15262,8 +15253,6 @@ const vertexvis = $root.vertexvis = (() => {
15262
15253
  SceneComparisonAttributes.encode = function encode(message, writer) {
15263
15254
  if (!writer)
15264
15255
  writer = $Writer.create();
15265
- if (message.sceneIdToCompare != null && Object.hasOwnProperty.call(message, "sceneIdToCompare"))
15266
- $root.vertexvis.protobuf.core.Uuid2l.encode(message.sceneIdToCompare, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim();
15267
15256
  if (message.streamKeyToCompare != null && Object.hasOwnProperty.call(message, "streamKeyToCompare"))
15268
15257
  $root.google.protobuf.StringValue.encode(message.streamKeyToCompare, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
15269
15258
  return writer;
@@ -15300,9 +15289,6 @@ const vertexvis = $root.vertexvis = (() => {
15300
15289
  while (reader.pos < end) {
15301
15290
  let tag = reader.uint32();
15302
15291
  switch (tag >>> 3) {
15303
- case 1:
15304
- message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.decode(reader, reader.uint32());
15305
- break;
15306
15292
  case 2:
15307
15293
  message.streamKeyToCompare = $root.google.protobuf.StringValue.decode(reader, reader.uint32());
15308
15294
  break;
@@ -15341,11 +15327,6 @@ const vertexvis = $root.vertexvis = (() => {
15341
15327
  SceneComparisonAttributes.verify = function verify(message) {
15342
15328
  if (typeof message !== "object" || message === null)
15343
15329
  return "object expected";
15344
- if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare")) {
15345
- let error = $root.vertexvis.protobuf.core.Uuid2l.verify(message.sceneIdToCompare);
15346
- if (error)
15347
- return "sceneIdToCompare." + error;
15348
- }
15349
15330
  if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare")) {
15350
15331
  let error = $root.google.protobuf.StringValue.verify(message.streamKeyToCompare);
15351
15332
  if (error)
@@ -15366,11 +15347,6 @@ const vertexvis = $root.vertexvis = (() => {
15366
15347
  if (object instanceof $root.vertexvis.protobuf.stream.SceneComparisonAttributes)
15367
15348
  return object;
15368
15349
  let message = new $root.vertexvis.protobuf.stream.SceneComparisonAttributes();
15369
- if (object.sceneIdToCompare != null) {
15370
- if (typeof object.sceneIdToCompare !== "object")
15371
- throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.sceneIdToCompare: object expected");
15372
- message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.fromObject(object.sceneIdToCompare);
15373
- }
15374
15350
  if (object.streamKeyToCompare != null) {
15375
15351
  if (typeof object.streamKeyToCompare !== "object")
15376
15352
  throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.streamKeyToCompare: object expected");
@@ -15392,12 +15368,8 @@ const vertexvis = $root.vertexvis = (() => {
15392
15368
  if (!options)
15393
15369
  options = {};
15394
15370
  let object = {};
15395
- if (options.defaults) {
15396
- object.sceneIdToCompare = null;
15371
+ if (options.defaults)
15397
15372
  object.streamKeyToCompare = null;
15398
- }
15399
- if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare"))
15400
- object.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.toObject(message.sceneIdToCompare, options);
15401
15373
  if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare"))
15402
15374
  object.streamKeyToCompare = $root.google.protobuf.StringValue.toObject(message.streamKeyToCompare, options);
15403
15375
  return object;