@vertexvis/stream-api 0.22.1-canary.12 → 0.22.1-canary.13
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 +29 -1
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +29 -1
- package/dist/bundle.esm.js.map +1 -1
- package/package.json +5 -5
package/dist/bundle.cjs.js
CHANGED
|
@@ -15204,6 +15204,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15204
15204
|
* @memberof vertexvis.protobuf.stream
|
|
15205
15205
|
* @interface ISceneComparisonAttributes
|
|
15206
15206
|
* @property {vertexvis.protobuf.core.IUuid2l|null} [sceneIdToCompare] SceneComparisonAttributes sceneIdToCompare
|
|
15207
|
+
* @property {google.protobuf.IStringValue|null} [streamKeyToCompare] SceneComparisonAttributes streamKeyToCompare
|
|
15207
15208
|
*/
|
|
15208
15209
|
|
|
15209
15210
|
/**
|
|
@@ -15229,6 +15230,14 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15229
15230
|
*/
|
|
15230
15231
|
SceneComparisonAttributes.prototype.sceneIdToCompare = null;
|
|
15231
15232
|
|
|
15233
|
+
/**
|
|
15234
|
+
* SceneComparisonAttributes streamKeyToCompare.
|
|
15235
|
+
* @member {google.protobuf.IStringValue|null|undefined} streamKeyToCompare
|
|
15236
|
+
* @memberof vertexvis.protobuf.stream.SceneComparisonAttributes
|
|
15237
|
+
* @instance
|
|
15238
|
+
*/
|
|
15239
|
+
SceneComparisonAttributes.prototype.streamKeyToCompare = null;
|
|
15240
|
+
|
|
15232
15241
|
/**
|
|
15233
15242
|
* Creates a new SceneComparisonAttributes instance using the specified properties.
|
|
15234
15243
|
* @function create
|
|
@@ -15255,6 +15264,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15255
15264
|
writer = $Writer.create();
|
|
15256
15265
|
if (message.sceneIdToCompare != null && Object.hasOwnProperty.call(message, "sceneIdToCompare"))
|
|
15257
15266
|
$root.vertexvis.protobuf.core.Uuid2l.encode(message.sceneIdToCompare, writer.uint32(/* id 1, wireType 2 =*/10).fork()).ldelim();
|
|
15267
|
+
if (message.streamKeyToCompare != null && Object.hasOwnProperty.call(message, "streamKeyToCompare"))
|
|
15268
|
+
$root.google.protobuf.StringValue.encode(message.streamKeyToCompare, writer.uint32(/* id 2, wireType 2 =*/18).fork()).ldelim();
|
|
15258
15269
|
return writer;
|
|
15259
15270
|
};
|
|
15260
15271
|
|
|
@@ -15292,6 +15303,9 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15292
15303
|
case 1:
|
|
15293
15304
|
message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.decode(reader, reader.uint32());
|
|
15294
15305
|
break;
|
|
15306
|
+
case 2:
|
|
15307
|
+
message.streamKeyToCompare = $root.google.protobuf.StringValue.decode(reader, reader.uint32());
|
|
15308
|
+
break;
|
|
15295
15309
|
default:
|
|
15296
15310
|
reader.skipType(tag & 7);
|
|
15297
15311
|
break;
|
|
@@ -15332,6 +15346,11 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15332
15346
|
if (error)
|
|
15333
15347
|
return "sceneIdToCompare." + error;
|
|
15334
15348
|
}
|
|
15349
|
+
if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare")) {
|
|
15350
|
+
let error = $root.google.protobuf.StringValue.verify(message.streamKeyToCompare);
|
|
15351
|
+
if (error)
|
|
15352
|
+
return "streamKeyToCompare." + error;
|
|
15353
|
+
}
|
|
15335
15354
|
return null;
|
|
15336
15355
|
};
|
|
15337
15356
|
|
|
@@ -15352,6 +15371,11 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15352
15371
|
throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.sceneIdToCompare: object expected");
|
|
15353
15372
|
message.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.fromObject(object.sceneIdToCompare);
|
|
15354
15373
|
}
|
|
15374
|
+
if (object.streamKeyToCompare != null) {
|
|
15375
|
+
if (typeof object.streamKeyToCompare !== "object")
|
|
15376
|
+
throw TypeError(".vertexvis.protobuf.stream.SceneComparisonAttributes.streamKeyToCompare: object expected");
|
|
15377
|
+
message.streamKeyToCompare = $root.google.protobuf.StringValue.fromObject(object.streamKeyToCompare);
|
|
15378
|
+
}
|
|
15355
15379
|
return message;
|
|
15356
15380
|
};
|
|
15357
15381
|
|
|
@@ -15368,10 +15392,14 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
15368
15392
|
if (!options)
|
|
15369
15393
|
options = {};
|
|
15370
15394
|
let object = {};
|
|
15371
|
-
if (options.defaults)
|
|
15395
|
+
if (options.defaults) {
|
|
15372
15396
|
object.sceneIdToCompare = null;
|
|
15397
|
+
object.streamKeyToCompare = null;
|
|
15398
|
+
}
|
|
15373
15399
|
if (message.sceneIdToCompare != null && message.hasOwnProperty("sceneIdToCompare"))
|
|
15374
15400
|
object.sceneIdToCompare = $root.vertexvis.protobuf.core.Uuid2l.toObject(message.sceneIdToCompare, options);
|
|
15401
|
+
if (message.streamKeyToCompare != null && message.hasOwnProperty("streamKeyToCompare"))
|
|
15402
|
+
object.streamKeyToCompare = $root.google.protobuf.StringValue.toObject(message.streamKeyToCompare, options);
|
|
15375
15403
|
return object;
|
|
15376
15404
|
};
|
|
15377
15405
|
|