@vertexvis/stream-api 0.20.0-canary.4 → 0.20.0-canary.6

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.
@@ -19642,6 +19642,7 @@ const vertexvis = $root.vertexvis = (() => {
19642
19642
  * @property {google.protobuf.IStringValue|null} [streamKey] StartStreamPayload streamKey
19643
19643
  * @property {vertexvis.protobuf.core.IUuid|null} [sceneViewStateId] StartStreamPayload sceneViewStateId
19644
19644
  * @property {google.protobuf.IStringValue|null} [sceneViewStateSuppliedId] StartStreamPayload sceneViewStateSuppliedId
19645
+ * @property {boolean|null} [clientSupportsTemporalRefinement] StartStreamPayload clientSupportsTemporalRefinement
19645
19646
  */
19646
19647
 
19647
19648
  /**
@@ -19715,6 +19716,14 @@ const vertexvis = $root.vertexvis = (() => {
19715
19716
  */
19716
19717
  StartStreamPayload.prototype.sceneViewStateSuppliedId = null;
19717
19718
 
19719
+ /**
19720
+ * StartStreamPayload clientSupportsTemporalRefinement.
19721
+ * @member {boolean} clientSupportsTemporalRefinement
19722
+ * @memberof vertexvis.protobuf.stream.StartStreamPayload
19723
+ * @instance
19724
+ */
19725
+ StartStreamPayload.prototype.clientSupportsTemporalRefinement = false;
19726
+
19718
19727
  // OneOf field names bound to virtual getters and setters
19719
19728
  let $oneOfFields;
19720
19729
 
@@ -19767,6 +19776,8 @@ const vertexvis = $root.vertexvis = (() => {
19767
19776
  $root.vertexvis.protobuf.core.Uuid.encode(message.sceneViewStateId, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
19768
19777
  if (message.sceneViewStateSuppliedId != null && Object.hasOwnProperty.call(message, "sceneViewStateSuppliedId"))
19769
19778
  $root.google.protobuf.StringValue.encode(message.sceneViewStateSuppliedId, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
19779
+ if (message.clientSupportsTemporalRefinement != null && Object.hasOwnProperty.call(message, "clientSupportsTemporalRefinement"))
19780
+ writer.uint32(/* id 8, wireType 0 =*/64).bool(message.clientSupportsTemporalRefinement);
19770
19781
  return writer;
19771
19782
  };
19772
19783
 
@@ -19822,6 +19833,9 @@ const vertexvis = $root.vertexvis = (() => {
19822
19833
  case 7:
19823
19834
  message.sceneViewStateSuppliedId = $root.google.protobuf.StringValue.decode(reader, reader.uint32());
19824
19835
  break;
19836
+ case 8:
19837
+ message.clientSupportsTemporalRefinement = reader.bool();
19838
+ break;
19825
19839
  default:
19826
19840
  reader.skipType(tag & 7);
19827
19841
  break;
@@ -19901,6 +19915,9 @@ const vertexvis = $root.vertexvis = (() => {
19901
19915
  return "sceneViewStateSuppliedId." + error;
19902
19916
  }
19903
19917
  }
19918
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
19919
+ if (typeof message.clientSupportsTemporalRefinement !== "boolean")
19920
+ return "clientSupportsTemporalRefinement: boolean expected";
19904
19921
  return null;
19905
19922
  };
19906
19923
 
@@ -19951,6 +19968,8 @@ const vertexvis = $root.vertexvis = (() => {
19951
19968
  throw TypeError(".vertexvis.protobuf.stream.StartStreamPayload.sceneViewStateSuppliedId: object expected");
19952
19969
  message.sceneViewStateSuppliedId = $root.google.protobuf.StringValue.fromObject(object.sceneViewStateSuppliedId);
19953
19970
  }
19971
+ if (object.clientSupportsTemporalRefinement != null)
19972
+ message.clientSupportsTemporalRefinement = Boolean(object.clientSupportsTemporalRefinement);
19954
19973
  return message;
19955
19974
  };
19956
19975
 
@@ -19973,6 +19992,7 @@ const vertexvis = $root.vertexvis = (() => {
19973
19992
  object.frameBackgroundColor = null;
19974
19993
  object.streamAttributes = null;
19975
19994
  object.streamKey = null;
19995
+ object.clientSupportsTemporalRefinement = false;
19976
19996
  }
19977
19997
  if (message.dimensions != null && message.hasOwnProperty("dimensions"))
19978
19998
  object.dimensions = $root.vertexvis.protobuf.stream.Dimensions.toObject(message.dimensions, options);
@@ -19994,6 +20014,8 @@ const vertexvis = $root.vertexvis = (() => {
19994
20014
  if (options.oneofs)
19995
20015
  object.sceneViewStateIdentifier = "sceneViewStateSuppliedId";
19996
20016
  }
20017
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
20018
+ object.clientSupportsTemporalRefinement = message.clientSupportsTemporalRefinement;
19997
20019
  return object;
19998
20020
  };
19999
20021
 
@@ -20925,6 +20947,7 @@ const vertexvis = $root.vertexvis = (() => {
20925
20947
  * @property {google.protobuf.IStringValue|null} [frameCorrelationId] ReconnectPayload frameCorrelationId
20926
20948
  * @property {vertexvis.protobuf.core.IRGBi|null} [frameBackgroundColor] ReconnectPayload frameBackgroundColor
20927
20949
  * @property {vertexvis.protobuf.stream.IStreamAttributes|null} [streamAttributes] ReconnectPayload streamAttributes
20950
+ * @property {boolean|null} [clientSupportsTemporalRefinement] ReconnectPayload clientSupportsTemporalRefinement
20928
20951
  */
20929
20952
 
20930
20953
  /**
@@ -20982,6 +21005,14 @@ const vertexvis = $root.vertexvis = (() => {
20982
21005
  */
20983
21006
  ReconnectPayload.prototype.streamAttributes = null;
20984
21007
 
21008
+ /**
21009
+ * ReconnectPayload clientSupportsTemporalRefinement.
21010
+ * @member {boolean} clientSupportsTemporalRefinement
21011
+ * @memberof vertexvis.protobuf.stream.ReconnectPayload
21012
+ * @instance
21013
+ */
21014
+ ReconnectPayload.prototype.clientSupportsTemporalRefinement = false;
21015
+
20985
21016
  /**
20986
21017
  * Creates a new ReconnectPayload instance using the specified properties.
20987
21018
  * @function create
@@ -21016,6 +21047,8 @@ const vertexvis = $root.vertexvis = (() => {
21016
21047
  $root.vertexvis.protobuf.core.RGBi.encode(message.frameBackgroundColor, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
21017
21048
  if (message.streamAttributes != null && Object.hasOwnProperty.call(message, "streamAttributes"))
21018
21049
  $root.vertexvis.protobuf.stream.StreamAttributes.encode(message.streamAttributes, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
21050
+ if (message.clientSupportsTemporalRefinement != null && Object.hasOwnProperty.call(message, "clientSupportsTemporalRefinement"))
21051
+ writer.uint32(/* id 6, wireType 0 =*/48).bool(message.clientSupportsTemporalRefinement);
21019
21052
  return writer;
21020
21053
  };
21021
21054
 
@@ -21065,6 +21098,9 @@ const vertexvis = $root.vertexvis = (() => {
21065
21098
  case 5:
21066
21099
  message.streamAttributes = $root.vertexvis.protobuf.stream.StreamAttributes.decode(reader, reader.uint32());
21067
21100
  break;
21101
+ case 6:
21102
+ message.clientSupportsTemporalRefinement = reader.bool();
21103
+ break;
21068
21104
  default:
21069
21105
  reader.skipType(tag & 7);
21070
21106
  break;
@@ -21125,6 +21161,9 @@ const vertexvis = $root.vertexvis = (() => {
21125
21161
  if (error)
21126
21162
  return "streamAttributes." + error;
21127
21163
  }
21164
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
21165
+ if (typeof message.clientSupportsTemporalRefinement !== "boolean")
21166
+ return "clientSupportsTemporalRefinement: boolean expected";
21128
21167
  return null;
21129
21168
  };
21130
21169
 
@@ -21165,6 +21204,8 @@ const vertexvis = $root.vertexvis = (() => {
21165
21204
  throw TypeError(".vertexvis.protobuf.stream.ReconnectPayload.streamAttributes: object expected");
21166
21205
  message.streamAttributes = $root.vertexvis.protobuf.stream.StreamAttributes.fromObject(object.streamAttributes);
21167
21206
  }
21207
+ if (object.clientSupportsTemporalRefinement != null)
21208
+ message.clientSupportsTemporalRefinement = Boolean(object.clientSupportsTemporalRefinement);
21168
21209
  return message;
21169
21210
  };
21170
21211
 
@@ -21187,6 +21228,7 @@ const vertexvis = $root.vertexvis = (() => {
21187
21228
  object.frameCorrelationId = null;
21188
21229
  object.frameBackgroundColor = null;
21189
21230
  object.streamAttributes = null;
21231
+ object.clientSupportsTemporalRefinement = false;
21190
21232
  }
21191
21233
  if (message.streamId != null && message.hasOwnProperty("streamId"))
21192
21234
  object.streamId = $root.vertexvis.protobuf.core.Uuid.toObject(message.streamId, options);
@@ -21198,6 +21240,8 @@ const vertexvis = $root.vertexvis = (() => {
21198
21240
  object.frameBackgroundColor = $root.vertexvis.protobuf.core.RGBi.toObject(message.frameBackgroundColor, options);
21199
21241
  if (message.streamAttributes != null && message.hasOwnProperty("streamAttributes"))
21200
21242
  object.streamAttributes = $root.vertexvis.protobuf.stream.StreamAttributes.toObject(message.streamAttributes, options);
21243
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
21244
+ object.clientSupportsTemporalRefinement = message.clientSupportsTemporalRefinement;
21201
21245
  return object;
21202
21246
  };
21203
21247
 
@@ -21944,6 +21988,8 @@ const vertexvis = $root.vertexvis = (() => {
21944
21988
  * @property {Array.<string>|null} [frameCorrelationIds] DrawFramePayload frameCorrelationIds
21945
21989
  * @property {google.protobuf.IBytesValue|null} [depthBuffer] DrawFramePayload depthBuffer
21946
21990
  * @property {google.protobuf.IBytesValue|null} [featureMap] DrawFramePayload featureMap
21991
+ * @property {boolean|null} [temporalRefinement] DrawFramePayload temporalRefinement
21992
+ * @property {vertexvis.protobuf.core.IUuid|null} [temporalRefinementCorrelationId] DrawFramePayload temporalRefinementCorrelationId
21947
21993
  */
21948
21994
 
21949
21995
  /**
@@ -22018,6 +22064,22 @@ const vertexvis = $root.vertexvis = (() => {
22018
22064
  */
22019
22065
  DrawFramePayload.prototype.featureMap = null;
22020
22066
 
22067
+ /**
22068
+ * DrawFramePayload temporalRefinement.
22069
+ * @member {boolean} temporalRefinement
22070
+ * @memberof vertexvis.protobuf.stream.DrawFramePayload
22071
+ * @instance
22072
+ */
22073
+ DrawFramePayload.prototype.temporalRefinement = false;
22074
+
22075
+ /**
22076
+ * DrawFramePayload temporalRefinementCorrelationId.
22077
+ * @member {vertexvis.protobuf.core.IUuid|null|undefined} temporalRefinementCorrelationId
22078
+ * @memberof vertexvis.protobuf.stream.DrawFramePayload
22079
+ * @instance
22080
+ */
22081
+ DrawFramePayload.prototype.temporalRefinementCorrelationId = null;
22082
+
22021
22083
  /**
22022
22084
  * Creates a new DrawFramePayload instance using the specified properties.
22023
22085
  * @function create
@@ -22057,6 +22119,10 @@ const vertexvis = $root.vertexvis = (() => {
22057
22119
  $root.google.protobuf.BytesValue.encode(message.depthBuffer, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
22058
22120
  if (message.featureMap != null && Object.hasOwnProperty.call(message, "featureMap"))
22059
22121
  $root.google.protobuf.BytesValue.encode(message.featureMap, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
22122
+ if (message.temporalRefinement != null && Object.hasOwnProperty.call(message, "temporalRefinement"))
22123
+ writer.uint32(/* id 8, wireType 0 =*/64).bool(message.temporalRefinement);
22124
+ if (message.temporalRefinementCorrelationId != null && Object.hasOwnProperty.call(message, "temporalRefinementCorrelationId"))
22125
+ $root.vertexvis.protobuf.core.Uuid.encode(message.temporalRefinementCorrelationId, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim();
22060
22126
  return writer;
22061
22127
  };
22062
22128
 
@@ -22114,6 +22180,12 @@ const vertexvis = $root.vertexvis = (() => {
22114
22180
  case 7:
22115
22181
  message.featureMap = $root.google.protobuf.BytesValue.decode(reader, reader.uint32());
22116
22182
  break;
22183
+ case 8:
22184
+ message.temporalRefinement = reader.bool();
22185
+ break;
22186
+ case 9:
22187
+ message.temporalRefinementCorrelationId = $root.vertexvis.protobuf.core.Uuid.decode(reader, reader.uint32());
22188
+ break;
22117
22189
  default:
22118
22190
  reader.skipType(tag & 7);
22119
22191
  break;
@@ -22182,6 +22254,14 @@ const vertexvis = $root.vertexvis = (() => {
22182
22254
  if (error)
22183
22255
  return "featureMap." + error;
22184
22256
  }
22257
+ if (message.temporalRefinement != null && message.hasOwnProperty("temporalRefinement"))
22258
+ if (typeof message.temporalRefinement !== "boolean")
22259
+ return "temporalRefinement: boolean expected";
22260
+ if (message.temporalRefinementCorrelationId != null && message.hasOwnProperty("temporalRefinementCorrelationId")) {
22261
+ let error = $root.vertexvis.protobuf.core.Uuid.verify(message.temporalRefinementCorrelationId);
22262
+ if (error)
22263
+ return "temporalRefinementCorrelationId." + error;
22264
+ }
22185
22265
  return null;
22186
22266
  };
22187
22267
 
@@ -22231,6 +22311,13 @@ const vertexvis = $root.vertexvis = (() => {
22231
22311
  throw TypeError(".vertexvis.protobuf.stream.DrawFramePayload.featureMap: object expected");
22232
22312
  message.featureMap = $root.google.protobuf.BytesValue.fromObject(object.featureMap);
22233
22313
  }
22314
+ if (object.temporalRefinement != null)
22315
+ message.temporalRefinement = Boolean(object.temporalRefinement);
22316
+ if (object.temporalRefinementCorrelationId != null) {
22317
+ if (typeof object.temporalRefinementCorrelationId !== "object")
22318
+ throw TypeError(".vertexvis.protobuf.stream.DrawFramePayload.temporalRefinementCorrelationId: object expected");
22319
+ message.temporalRefinementCorrelationId = $root.vertexvis.protobuf.core.Uuid.fromObject(object.temporalRefinementCorrelationId);
22320
+ }
22234
22321
  return message;
22235
22322
  };
22236
22323
 
@@ -22262,6 +22349,8 @@ const vertexvis = $root.vertexvis = (() => {
22262
22349
  }
22263
22350
  object.depthBuffer = null;
22264
22351
  object.featureMap = null;
22352
+ object.temporalRefinement = false;
22353
+ object.temporalRefinementCorrelationId = null;
22265
22354
  }
22266
22355
  if (message.sequenceNumber != null && message.hasOwnProperty("sequenceNumber"))
22267
22356
  object.sequenceNumber = message.sequenceNumber;
@@ -22280,6 +22369,10 @@ const vertexvis = $root.vertexvis = (() => {
22280
22369
  object.depthBuffer = $root.google.protobuf.BytesValue.toObject(message.depthBuffer, options);
22281
22370
  if (message.featureMap != null && message.hasOwnProperty("featureMap"))
22282
22371
  object.featureMap = $root.google.protobuf.BytesValue.toObject(message.featureMap, options);
22372
+ if (message.temporalRefinement != null && message.hasOwnProperty("temporalRefinement"))
22373
+ object.temporalRefinement = message.temporalRefinement;
22374
+ if (message.temporalRefinementCorrelationId != null && message.hasOwnProperty("temporalRefinementCorrelationId"))
22375
+ object.temporalRefinementCorrelationId = $root.vertexvis.protobuf.core.Uuid.toObject(message.temporalRefinementCorrelationId, options);
22283
22376
  return object;
22284
22377
  };
22285
22378