@vertexvis/stream-api 0.13.2-canary.49 → 0.13.2-canary.51

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.
@@ -8711,6 +8711,7 @@ const vertexvis = $root.vertexvis = (() => {
8711
8711
  * @property {vertexvis.protobuf.stream.IFeatureLineAttributes|null} [featureLines] StreamAttributes featureLines
8712
8712
  * @property {vertexvis.protobuf.stream.IFeatureHighlightAttributes|null} [featureHighlighting] StreamAttributes featureHighlighting
8713
8713
  * @property {vertexvis.protobuf.stream.IFeatureMapAttributes|null} [featureMaps] StreamAttributes featureMaps
8714
+ * @property {boolean|null} [noDefaultLights] StreamAttributes noDefaultLights
8714
8715
  */
8715
8716
 
8716
8717
  /**
@@ -8768,6 +8769,14 @@ const vertexvis = $root.vertexvis = (() => {
8768
8769
  */
8769
8770
  StreamAttributes.prototype.featureMaps = null;
8770
8771
 
8772
+ /**
8773
+ * StreamAttributes noDefaultLights.
8774
+ * @member {boolean} noDefaultLights
8775
+ * @memberof vertexvis.protobuf.stream.StreamAttributes
8776
+ * @instance
8777
+ */
8778
+ StreamAttributes.prototype.noDefaultLights = false;
8779
+
8771
8780
  /**
8772
8781
  * Creates a new StreamAttributes instance using the specified properties.
8773
8782
  * @function create
@@ -8802,6 +8811,8 @@ const vertexvis = $root.vertexvis = (() => {
8802
8811
  $root.vertexvis.protobuf.stream.FeatureHighlightAttributes.encode(message.featureHighlighting, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
8803
8812
  if (message.featureMaps != null && Object.hasOwnProperty.call(message, "featureMaps"))
8804
8813
  $root.vertexvis.protobuf.stream.FeatureMapAttributes.encode(message.featureMaps, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
8814
+ if (message.noDefaultLights != null && Object.hasOwnProperty.call(message, "noDefaultLights"))
8815
+ writer.uint32(/* id 6, wireType 0 =*/48).bool(message.noDefaultLights);
8805
8816
  return writer;
8806
8817
  };
8807
8818
 
@@ -8851,6 +8862,9 @@ const vertexvis = $root.vertexvis = (() => {
8851
8862
  case 5:
8852
8863
  message.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.decode(reader, reader.uint32());
8853
8864
  break;
8865
+ case 6:
8866
+ message.noDefaultLights = reader.bool();
8867
+ break;
8854
8868
  default:
8855
8869
  reader.skipType(tag & 7);
8856
8870
  break;
@@ -8911,6 +8925,9 @@ const vertexvis = $root.vertexvis = (() => {
8911
8925
  if (error)
8912
8926
  return "featureMaps." + error;
8913
8927
  }
8928
+ if (message.noDefaultLights != null && message.hasOwnProperty("noDefaultLights"))
8929
+ if (typeof message.noDefaultLights !== "boolean")
8930
+ return "noDefaultLights: boolean expected";
8914
8931
  return null;
8915
8932
  };
8916
8933
 
@@ -8951,6 +8968,8 @@ const vertexvis = $root.vertexvis = (() => {
8951
8968
  throw TypeError(".vertexvis.protobuf.stream.StreamAttributes.featureMaps: object expected");
8952
8969
  message.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.fromObject(object.featureMaps);
8953
8970
  }
8971
+ if (object.noDefaultLights != null)
8972
+ message.noDefaultLights = Boolean(object.noDefaultLights);
8954
8973
  return message;
8955
8974
  };
8956
8975
 
@@ -8973,6 +8992,7 @@ const vertexvis = $root.vertexvis = (() => {
8973
8992
  object.featureLines = null;
8974
8993
  object.featureHighlighting = null;
8975
8994
  object.featureMaps = null;
8995
+ object.noDefaultLights = false;
8976
8996
  }
8977
8997
  if (message.experimentalGhosting != null && message.hasOwnProperty("experimentalGhosting"))
8978
8998
  object.experimentalGhosting = $root.vertexvis.protobuf.stream.GhostingAttributes.toObject(message.experimentalGhosting, options);
@@ -8984,6 +9004,8 @@ const vertexvis = $root.vertexvis = (() => {
8984
9004
  object.featureHighlighting = $root.vertexvis.protobuf.stream.FeatureHighlightAttributes.toObject(message.featureHighlighting, options);
8985
9005
  if (message.featureMaps != null && message.hasOwnProperty("featureMaps"))
8986
9006
  object.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.toObject(message.featureMaps, options);
9007
+ if (message.noDefaultLights != null && message.hasOwnProperty("noDefaultLights"))
9008
+ object.noDefaultLights = message.noDefaultLights;
8987
9009
  return object;
8988
9010
  };
8989
9011