@vertexvis/stream-api 0.22.1-canary.12 → 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,7 @@ 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
15206
+ * @property {google.protobuf.IStringValue|null} [streamKeyToCompare] SceneComparisonAttributes streamKeyToCompare
15207
15207
  */
15208
15208
 
15209
15209
  /**
@@ -15222,12 +15222,12 @@ const vertexvis = $root.vertexvis = (() => {
15222
15222
  }
15223
15223
 
15224
15224
  /**
15225
- * SceneComparisonAttributes sceneIdToCompare.
15226
- * @member {vertexvis.protobuf.core.IUuid2l|null|undefined} sceneIdToCompare
15225
+ * SceneComparisonAttributes streamKeyToCompare.
15226
+ * @member {google.protobuf.IStringValue|null|undefined} streamKeyToCompare
15227
15227
  * @memberof vertexvis.protobuf.stream.SceneComparisonAttributes
15228
15228
  * @instance
15229
15229
  */
15230
- SceneComparisonAttributes.prototype.sceneIdToCompare = null;
15230
+ SceneComparisonAttributes.prototype.streamKeyToCompare = null;
15231
15231
 
15232
15232
  /**
15233
15233
  * Creates a new SceneComparisonAttributes instance using the specified properties.
@@ -15253,8 +15253,8 @@ const vertexvis = $root.vertexvis = (() => {
15253
15253
  SceneComparisonAttributes.encode = function encode(message, writer) {
15254
15254
  if (!writer)
15255
15255
  writer = $Writer.create();
15256
- if (message.sceneIdToCompare != null && Object.hasOwnProperty.call(message, "sceneIdToCompare"))
15257
- $root.vertexvis.protobuf.core.Uuid2l.encode(message.sceneIdToCompare, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim();
15256
+ if (message.streamKeyToCompare != null && Object.hasOwnProperty.call(message, "streamKeyToCompare"))
15257
+ $root.google.protobuf.StringValue.encode(message.streamKeyToCompare, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
15258
15258
  return writer;
15259
15259
  };
15260
15260
 
@@ -15289,8 +15289,8 @@ const vertexvis = $root.vertexvis = (() => {
15289
15289
  while (reader.pos < end) {
15290
15290
  let tag = reader.uint32();
15291
15291
  switch (tag >>> 3) {
15292
- case 1:
15293
- message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.decode(reader, reader.uint32());
15292
+ case 2:
15293
+ message.streamKeyToCompare = $root.google.protobuf.StringValue.decode(reader, reader.uint32());
15294
15294
  break;
15295
15295
  default:
15296
15296
  reader.skipType(tag & 7);
@@ -15327,10 +15327,10 @@ const vertexvis = $root.vertexvis = (() => {
15327
15327
  SceneComparisonAttributes.verify = function verify(message) {
15328
15328
  if (typeof message !== "object" || message === null)
15329
15329
  return "object expected";
15330
- if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare")) {
15331
- let error = $root.vertexvis.protobuf.core.Uuid2l.verify(message.sceneIdToCompare);
15330
+ if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare")) {
15331
+ let error = $root.google.protobuf.StringValue.verify(message.streamKeyToCompare);
15332
15332
  if (error)
15333
- return "sceneIdToCompare." + error;
15333
+ return "streamKeyToCompare." + error;
15334
15334
  }
15335
15335
  return null;
15336
15336
  };
@@ -15347,10 +15347,10 @@ const vertexvis = $root.vertexvis = (() => {
15347
15347
  if (object instanceof $root.vertexvis.protobuf.stream.SceneComparisonAttributes)
15348
15348
  return object;
15349
15349
  let message = new $root.vertexvis.protobuf.stream.SceneComparisonAttributes();
15350
- if (object.sceneIdToCompare != null) {
15351
- if (typeof object.sceneIdToCompare !== "object")
15352
- throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.sceneIdToCompare: object expected");
15353
- message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.fromObject(object.sceneIdToCompare);
15350
+ if (object.streamKeyToCompare != null) {
15351
+ if (typeof object.streamKeyToCompare !== "object")
15352
+ throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.streamKeyToCompare: object expected");
15353
+ message.streamKeyToCompare = $root.google.protobuf.StringValue.fromObject(object.streamKeyToCompare);
15354
15354
  }
15355
15355
  return message;
15356
15356
  };
@@ -15369,9 +15369,9 @@ const vertexvis = $root.vertexvis = (() => {
15369
15369
  options = {};
15370
15370
  let object = {};
15371
15371
  if (options.defaults)
15372
- object.sceneIdToCompare = null;
15373
- if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare"))
15374
- object.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.toObject(message.sceneIdToCompare, options);
15372
+ object.streamKeyToCompare = null;
15373
+ if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare"))
15374
+ object.streamKeyToCompare = $root.google.protobuf.StringValue.toObject(message.streamKeyToCompare, options);
15375
15375
  return object;
15376
15376
  };
15377
15377