@vertexvis/stream-api 0.15.0-canary.2 → 0.15.0-canary.5

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.
@@ -8716,6 +8716,7 @@ const vertexvis = $root.vertexvis = (() => {
8716
8716
  * @property {vertexvis.protobuf.stream.IFeatureHighlightAttributes|null} [featureHighlighting] StreamAttributes featureHighlighting
8717
8717
  * @property {vertexvis.protobuf.stream.IFeatureMapAttributes|null} [featureMaps] StreamAttributes featureMaps
8718
8718
  * @property {boolean|null} [noDefaultLights] StreamAttributes noDefaultLights
8719
+ * @property {string|null} [experimentalRenderingOptions] StreamAttributes experimentalRenderingOptions
8719
8720
  */
8720
8721
 
8721
8722
  /**
@@ -8781,6 +8782,14 @@ const vertexvis = $root.vertexvis = (() => {
8781
8782
  */
8782
8783
  StreamAttributes.prototype.noDefaultLights = false;
8783
8784
 
8785
+ /**
8786
+ * StreamAttributes experimentalRenderingOptions.
8787
+ * @member {string} experimentalRenderingOptions
8788
+ * @memberof vertexvis.protobuf.stream.StreamAttributes
8789
+ * @instance
8790
+ */
8791
+ StreamAttributes.prototype.experimentalRenderingOptions = "";
8792
+
8784
8793
  /**
8785
8794
  * Creates a new StreamAttributes instance using the specified properties.
8786
8795
  * @function create
@@ -8817,6 +8826,8 @@ const vertexvis = $root.vertexvis = (() => {
8817
8826
  $root.vertexvis.protobuf.stream.FeatureMapAttributes.encode(message.featureMaps, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
8818
8827
  if (message.noDefaultLights != null && Object.hasOwnProperty.call(message, "noDefaultLights"))
8819
8828
  writer.uint32(/* id 6, wireType 0 =*/48).bool(message.noDefaultLights);
8829
+ if (message.experimentalRenderingOptions != null && Object.hasOwnProperty.call(message, "experimentalRenderingOptions"))
8830
+ writer.uint32(/* id 7, wireType 2 =*/58).string(message.experimentalRenderingOptions);
8820
8831
  return writer;
8821
8832
  };
8822
8833
 
@@ -8869,6 +8880,9 @@ const vertexvis = $root.vertexvis = (() => {
8869
8880
  case 6:
8870
8881
  message.noDefaultLights = reader.bool();
8871
8882
  break;
8883
+ case 7:
8884
+ message.experimentalRenderingOptions = reader.string();
8885
+ break;
8872
8886
  default:
8873
8887
  reader.skipType(tag & 7);
8874
8888
  break;
@@ -8932,6 +8946,9 @@ const vertexvis = $root.vertexvis = (() => {
8932
8946
  if (message.noDefaultLights != null && message.hasOwnProperty("noDefaultLights"))
8933
8947
  if (typeof message.noDefaultLights !== "boolean")
8934
8948
  return "noDefaultLights: boolean expected";
8949
+ if (message.experimentalRenderingOptions != null && message.hasOwnProperty("experimentalRenderingOptions"))
8950
+ if (!$util.isString(message.experimentalRenderingOptions))
8951
+ return "experimentalRenderingOptions: string expected";
8935
8952
  return null;
8936
8953
  };
8937
8954
 
@@ -8974,6 +8991,8 @@ const vertexvis = $root.vertexvis = (() => {
8974
8991
  }
8975
8992
  if (object.noDefaultLights != null)
8976
8993
  message.noDefaultLights = Boolean(object.noDefaultLights);
8994
+ if (object.experimentalRenderingOptions != null)
8995
+ message.experimentalRenderingOptions = String(object.experimentalRenderingOptions);
8977
8996
  return message;
8978
8997
  };
8979
8998
 
@@ -8997,6 +9016,7 @@ const vertexvis = $root.vertexvis = (() => {
8997
9016
  object.featureHighlighting = null;
8998
9017
  object.featureMaps = null;
8999
9018
  object.noDefaultLights = false;
9019
+ object.experimentalRenderingOptions = "";
9000
9020
  }
9001
9021
  if (message.experimentalGhosting != null && message.hasOwnProperty("experimentalGhosting"))
9002
9022
  object.experimentalGhosting = $root.vertexvis.protobuf.stream.GhostingAttributes.toObject(message.experimentalGhosting, options);
@@ -9010,6 +9030,8 @@ const vertexvis = $root.vertexvis = (() => {
9010
9030
  object.featureMaps = $root.vertexvis.protobuf.stream.FeatureMapAttributes.toObject(message.featureMaps, options);
9011
9031
  if (message.noDefaultLights != null && message.hasOwnProperty("noDefaultLights"))
9012
9032
  object.noDefaultLights = message.noDefaultLights;
9033
+ if (message.experimentalRenderingOptions != null && message.hasOwnProperty("experimentalRenderingOptions"))
9034
+ object.experimentalRenderingOptions = message.experimentalRenderingOptions;
9013
9035
  return object;
9014
9036
  };
9015
9037