@vertexvis/stream-api 0.13.2-canary.48 → 0.13.2-canary.50
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 +22 -0
- package/dist/bundle.cjs.js.map +1 -1
- package/dist/bundle.esm.js +22 -0
- package/dist/bundle.esm.js.map +1 -1
- package/package.json +5 -5
package/dist/bundle.cjs.js
CHANGED
|
@@ -8715,6 +8715,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8715
8715
|
* @property {vertexvis.protobuf.stream.IFeatureLineAttributes|null} [featureLines] StreamAttributes featureLines
|
|
8716
8716
|
* @property {vertexvis.protobuf.stream.IFeatureHighlightAttributes|null} [featureHighlighting] StreamAttributes featureHighlighting
|
|
8717
8717
|
* @property {vertexvis.protobuf.stream.IFeatureMapAttributes|null} [featureMaps] StreamAttributes featureMaps
|
|
8718
|
+
* @property {boolean|null} [noDefaultLights] StreamAttributes noDefaultLights
|
|
8718
8719
|
*/
|
|
8719
8720
|
|
|
8720
8721
|
/**
|
|
@@ -8772,6 +8773,14 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8772
8773
|
*/
|
|
8773
8774
|
StreamAttributes.prototype.featureMaps = null;
|
|
8774
8775
|
|
|
8776
|
+
/**
|
|
8777
|
+
* StreamAttributes noDefaultLights.
|
|
8778
|
+
* @member {boolean} noDefaultLights
|
|
8779
|
+
* @memberof vertexvis.protobuf.stream.StreamAttributes
|
|
8780
|
+
* @instance
|
|
8781
|
+
*/
|
|
8782
|
+
StreamAttributes.prototype.noDefaultLights = false;
|
|
8783
|
+
|
|
8775
8784
|
/**
|
|
8776
8785
|
* Creates a new StreamAttributes instance using the specified properties.
|
|
8777
8786
|
* @function create
|
|
@@ -8806,6 +8815,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8806
8815
|
$root.vertexvis.protobuf.stream.FeatureHighlightAttributes.encode(message.featureHighlighting, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
|
|
8807
8816
|
if (message.featureMaps != null && Object.hasOwnProperty.call(message, "featureMaps"))
|
|
8808
8817
|
$root.vertexvis.protobuf.stream.FeatureMapAttributes.encode(message.featureMaps, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
|
|
8818
|
+
if (message.noDefaultLights != null && Object.hasOwnProperty.call(message, "noDefaultLights"))
|
|
8819
|
+
writer.uint32(/* id 6, wireType 0 =*/48).bool(message.noDefaultLights);
|
|
8809
8820
|
return writer;
|
|
8810
8821
|
};
|
|
8811
8822
|
|
|
@@ -8855,6 +8866,9 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8855
8866
|
case 5:
|
|
8856
8867
|
message.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.decode(reader, reader.uint32());
|
|
8857
8868
|
break;
|
|
8869
|
+
case 6:
|
|
8870
|
+
message.noDefaultLights = reader.bool();
|
|
8871
|
+
break;
|
|
8858
8872
|
default:
|
|
8859
8873
|
reader.skipType(tag & 7);
|
|
8860
8874
|
break;
|
|
@@ -8915,6 +8929,9 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8915
8929
|
if (error)
|
|
8916
8930
|
return "featureMaps." + error;
|
|
8917
8931
|
}
|
|
8932
|
+
if (message.noDefaultLights != null && message.hasOwnProperty("noDefaultLights"))
|
|
8933
|
+
if (typeof message.noDefaultLights !== "boolean")
|
|
8934
|
+
return "noDefaultLights: boolean expected";
|
|
8918
8935
|
return null;
|
|
8919
8936
|
};
|
|
8920
8937
|
|
|
@@ -8955,6 +8972,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8955
8972
|
throw TypeError(".vertexvis.protobuf.stream.StreamAttributes.featureMaps: object expected");
|
|
8956
8973
|
message.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.fromObject(object.featureMaps);
|
|
8957
8974
|
}
|
|
8975
|
+
if (object.noDefaultLights != null)
|
|
8976
|
+
message.noDefaultLights = Boolean(object.noDefaultLights);
|
|
8958
8977
|
return message;
|
|
8959
8978
|
};
|
|
8960
8979
|
|
|
@@ -8977,6 +8996,7 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8977
8996
|
object.featureLines = null;
|
|
8978
8997
|
object.featureHighlighting = null;
|
|
8979
8998
|
object.featureMaps = null;
|
|
8999
|
+
object.noDefaultLights = false;
|
|
8980
9000
|
}
|
|
8981
9001
|
if (message.experimentalGhosting != null && message.hasOwnProperty("experimentalGhosting"))
|
|
8982
9002
|
object.experimentalGhosting = $root.vertexvis.protobuf.stream.GhostingAttributes.toObject(message.experimentalGhosting, options);
|
|
@@ -8988,6 +9008,8 @@ const vertexvis = $root.vertexvis = (() => {
|
|
|
8988
9008
|
object.featureHighlighting = $root.vertexvis.protobuf.stream.FeatureHighlightAttributes.toObject(message.featureHighlighting, options);
|
|
8989
9009
|
if (message.featureMaps != null && message.hasOwnProperty("featureMaps"))
|
|
8990
9010
|
object.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.toObject(message.featureMaps, options);
|
|
9011
|
+
if (message.noDefaultLights != null && message.hasOwnProperty("noDefaultLights"))
|
|
9012
|
+
object.noDefaultLights = message.noDefaultLights;
|
|
8991
9013
|
return object;
|
|
8992
9014
|
};
|
|
8993
9015
|
|