@vertexvis/stream-api 0.20.0-canary.5 → 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.
@@ -19638,6 +19638,7 @@ const vertexvis = $root.vertexvis = (() => {
19638
19638
  * @property {google.protobuf.IStringValue|null} [streamKey] StartStreamPayload streamKey
19639
19639
  * @property {vertexvis.protobuf.core.IUuid|null} [sceneViewStateId] StartStreamPayload sceneViewStateId
19640
19640
  * @property {google.protobuf.IStringValue|null} [sceneViewStateSuppliedId] StartStreamPayload sceneViewStateSuppliedId
19641
+ * @property {boolean|null} [clientSupportsTemporalRefinement] StartStreamPayload clientSupportsTemporalRefinement
19641
19642
  */
19642
19643
 
19643
19644
  /**
@@ -19711,6 +19712,14 @@ const vertexvis = $root.vertexvis = (() => {
19711
19712
  */
19712
19713
  StartStreamPayload.prototype.sceneViewStateSuppliedId = null;
19713
19714
 
19715
+ /**
19716
+ * StartStreamPayload clientSupportsTemporalRefinement.
19717
+ * @member {boolean} clientSupportsTemporalRefinement
19718
+ * @memberof vertexvis.protobuf.stream.StartStreamPayload
19719
+ * @instance
19720
+ */
19721
+ StartStreamPayload.prototype.clientSupportsTemporalRefinement = false;
19722
+
19714
19723
  // OneOf field names bound to virtual getters and setters
19715
19724
  let $oneOfFields;
19716
19725
 
@@ -19763,6 +19772,8 @@ const vertexvis = $root.vertexvis = (() => {
19763
19772
  $root.vertexvis.protobuf.core.Uuid.encode(message.sceneViewStateId, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
19764
19773
  if (message.sceneViewStateSuppliedId != null && Object.hasOwnProperty.call(message, "sceneViewStateSuppliedId"))
19765
19774
  $root.google.protobuf.StringValue.encode(message.sceneViewStateSuppliedId, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
19775
+ if (message.clientSupportsTemporalRefinement != null && Object.hasOwnProperty.call(message, "clientSupportsTemporalRefinement"))
19776
+ writer.uint32(/* id 8, wireType 0 =*/64).bool(message.clientSupportsTemporalRefinement);
19766
19777
  return writer;
19767
19778
  };
19768
19779
 
@@ -19818,6 +19829,9 @@ const vertexvis = $root.vertexvis = (() => {
19818
19829
  case 7:
19819
19830
  message.sceneViewStateSuppliedId = $root.google.protobuf.StringValue.decode(reader, reader.uint32());
19820
19831
  break;
19832
+ case 8:
19833
+ message.clientSupportsTemporalRefinement = reader.bool();
19834
+ break;
19821
19835
  default:
19822
19836
  reader.skipType(tag & 7);
19823
19837
  break;
@@ -19897,6 +19911,9 @@ const vertexvis = $root.vertexvis = (() => {
19897
19911
  return "sceneViewStateSuppliedId." + error;
19898
19912
  }
19899
19913
  }
19914
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
19915
+ if (typeof message.clientSupportsTemporalRefinement !== "boolean")
19916
+ return "clientSupportsTemporalRefinement: boolean expected";
19900
19917
  return null;
19901
19918
  };
19902
19919
 
@@ -19947,6 +19964,8 @@ const vertexvis = $root.vertexvis = (() => {
19947
19964
  throw TypeError(".vertexvis.protobuf.stream.StartStreamPayload.sceneViewStateSuppliedId: object expected");
19948
19965
  message.sceneViewStateSuppliedId = $root.google.protobuf.StringValue.fromObject(object.sceneViewStateSuppliedId);
19949
19966
  }
19967
+ if (object.clientSupportsTemporalRefinement != null)
19968
+ message.clientSupportsTemporalRefinement = Boolean(object.clientSupportsTemporalRefinement);
19950
19969
  return message;
19951
19970
  };
19952
19971
 
@@ -19969,6 +19988,7 @@ const vertexvis = $root.vertexvis = (() => {
19969
19988
  object.frameBackgroundColor = null;
19970
19989
  object.streamAttributes = null;
19971
19990
  object.streamKey = null;
19991
+ object.clientSupportsTemporalRefinement = false;
19972
19992
  }
19973
19993
  if (message.dimensions != null && message.hasOwnProperty("dimensions"))
19974
19994
  object.dimensions = $root.vertexvis.protobuf.stream.Dimensions.toObject(message.dimensions, options);
@@ -19990,6 +20010,8 @@ const vertexvis = $root.vertexvis = (() => {
19990
20010
  if (options.oneofs)
19991
20011
  object.sceneViewStateIdentifier = "sceneViewStateSuppliedId";
19992
20012
  }
20013
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
20014
+ object.clientSupportsTemporalRefinement = message.clientSupportsTemporalRefinement;
19993
20015
  return object;
19994
20016
  };
19995
20017
 
@@ -20921,6 +20943,7 @@ const vertexvis = $root.vertexvis = (() => {
20921
20943
  * @property {google.protobuf.IStringValue|null} [frameCorrelationId] ReconnectPayload frameCorrelationId
20922
20944
  * @property {vertexvis.protobuf.core.IRGBi|null} [frameBackgroundColor] ReconnectPayload frameBackgroundColor
20923
20945
  * @property {vertexvis.protobuf.stream.IStreamAttributes|null} [streamAttributes] ReconnectPayload streamAttributes
20946
+ * @property {boolean|null} [clientSupportsTemporalRefinement] ReconnectPayload clientSupportsTemporalRefinement
20924
20947
  */
20925
20948
 
20926
20949
  /**
@@ -20978,6 +21001,14 @@ const vertexvis = $root.vertexvis = (() => {
20978
21001
  */
20979
21002
  ReconnectPayload.prototype.streamAttributes = null;
20980
21003
 
21004
+ /**
21005
+ * ReconnectPayload clientSupportsTemporalRefinement.
21006
+ * @member {boolean} clientSupportsTemporalRefinement
21007
+ * @memberof vertexvis.protobuf.stream.ReconnectPayload
21008
+ * @instance
21009
+ */
21010
+ ReconnectPayload.prototype.clientSupportsTemporalRefinement = false;
21011
+
20981
21012
  /**
20982
21013
  * Creates a new ReconnectPayload instance using the specified properties.
20983
21014
  * @function create
@@ -21012,6 +21043,8 @@ const vertexvis = $root.vertexvis = (() => {
21012
21043
  $root.vertexvis.protobuf.core.RGBi.encode(message.frameBackgroundColor, writer.uint32(/* id 4, wireType 2 =*/34).fork()).ldelim();
21013
21044
  if (message.streamAttributes != null && Object.hasOwnProperty.call(message, "streamAttributes"))
21014
21045
  $root.vertexvis.protobuf.stream.StreamAttributes.encode(message.streamAttributes, writer.uint32(/* id 5, wireType 2 =*/42).fork()).ldelim();
21046
+ if (message.clientSupportsTemporalRefinement != null && Object.hasOwnProperty.call(message, "clientSupportsTemporalRefinement"))
21047
+ writer.uint32(/* id 6, wireType 0 =*/48).bool(message.clientSupportsTemporalRefinement);
21015
21048
  return writer;
21016
21049
  };
21017
21050
 
@@ -21061,6 +21094,9 @@ const vertexvis = $root.vertexvis = (() => {
21061
21094
  case 5:
21062
21095
  message.streamAttributes = $root.vertexvis.protobuf.stream.StreamAttributes.decode(reader, reader.uint32());
21063
21096
  break;
21097
+ case 6:
21098
+ message.clientSupportsTemporalRefinement = reader.bool();
21099
+ break;
21064
21100
  default:
21065
21101
  reader.skipType(tag & 7);
21066
21102
  break;
@@ -21121,6 +21157,9 @@ const vertexvis = $root.vertexvis = (() => {
21121
21157
  if (error)
21122
21158
  return "streamAttributes." + error;
21123
21159
  }
21160
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
21161
+ if (typeof message.clientSupportsTemporalRefinement !== "boolean")
21162
+ return "clientSupportsTemporalRefinement: boolean expected";
21124
21163
  return null;
21125
21164
  };
21126
21165
 
@@ -21161,6 +21200,8 @@ const vertexvis = $root.vertexvis = (() => {
21161
21200
  throw TypeError(".vertexvis.protobuf.stream.ReconnectPayload.streamAttributes: object expected");
21162
21201
  message.streamAttributes = $root.vertexvis.protobuf.stream.StreamAttributes.fromObject(object.streamAttributes);
21163
21202
  }
21203
+ if (object.clientSupportsTemporalRefinement != null)
21204
+ message.clientSupportsTemporalRefinement = Boolean(object.clientSupportsTemporalRefinement);
21164
21205
  return message;
21165
21206
  };
21166
21207
 
@@ -21183,6 +21224,7 @@ const vertexvis = $root.vertexvis = (() => {
21183
21224
  object.frameCorrelationId = null;
21184
21225
  object.frameBackgroundColor = null;
21185
21226
  object.streamAttributes = null;
21227
+ object.clientSupportsTemporalRefinement = false;
21186
21228
  }
21187
21229
  if (message.streamId != null && message.hasOwnProperty("streamId"))
21188
21230
  object.streamId = $root.vertexvis.protobuf.core.Uuid.toObject(message.streamId, options);
@@ -21194,6 +21236,8 @@ const vertexvis = $root.vertexvis = (() => {
21194
21236
  object.frameBackgroundColor = $root.vertexvis.protobuf.core.RGBi.toObject(message.frameBackgroundColor, options);
21195
21237
  if (message.streamAttributes != null && message.hasOwnProperty("streamAttributes"))
21196
21238
  object.streamAttributes = $root.vertexvis.protobuf.stream.StreamAttributes.toObject(message.streamAttributes, options);
21239
+ if (message.clientSupportsTemporalRefinement != null && message.hasOwnProperty("clientSupportsTemporalRefinement"))
21240
+ object.clientSupportsTemporalRefinement = message.clientSupportsTemporalRefinement;
21197
21241
  return object;
21198
21242
  };
21199
21243
 
@@ -21940,6 +21984,8 @@ const vertexvis = $root.vertexvis = (() => {
21940
21984
  * @property {Array.<string>|null} [frameCorrelationIds] DrawFramePayload frameCorrelationIds
21941
21985
  * @property {google.protobuf.IBytesValue|null} [depthBuffer] DrawFramePayload depthBuffer
21942
21986
  * @property {google.protobuf.IBytesValue|null} [featureMap] DrawFramePayload featureMap
21987
+ * @property {boolean|null} [temporalRefinement] DrawFramePayload temporalRefinement
21988
+ * @property {vertexvis.protobuf.core.IUuid|null} [temporalRefinementCorrelationId] DrawFramePayload temporalRefinementCorrelationId
21943
21989
  */
21944
21990
 
21945
21991
  /**
@@ -22014,6 +22060,22 @@ const vertexvis = $root.vertexvis = (() => {
22014
22060
  */
22015
22061
  DrawFramePayload.prototype.featureMap = null;
22016
22062
 
22063
+ /**
22064
+ * DrawFramePayload temporalRefinement.
22065
+ * @member {boolean} temporalRefinement
22066
+ * @memberof vertexvis.protobuf.stream.DrawFramePayload
22067
+ * @instance
22068
+ */
22069
+ DrawFramePayload.prototype.temporalRefinement = false;
22070
+
22071
+ /**
22072
+ * DrawFramePayload temporalRefinementCorrelationId.
22073
+ * @member {vertexvis.protobuf.core.IUuid|null|undefined} temporalRefinementCorrelationId
22074
+ * @memberof vertexvis.protobuf.stream.DrawFramePayload
22075
+ * @instance
22076
+ */
22077
+ DrawFramePayload.prototype.temporalRefinementCorrelationId = null;
22078
+
22017
22079
  /**
22018
22080
  * Creates a new DrawFramePayload instance using the specified properties.
22019
22081
  * @function create
@@ -22053,6 +22115,10 @@ const vertexvis = $root.vertexvis = (() => {
22053
22115
  $root.google.protobuf.BytesValue.encode(message.depthBuffer, writer.uint32(/* id 6, wireType 2 =*/50).fork()).ldelim();
22054
22116
  if (message.featureMap != null && Object.hasOwnProperty.call(message, "featureMap"))
22055
22117
  $root.google.protobuf.BytesValue.encode(message.featureMap, writer.uint32(/* id 7, wireType 2 =*/58).fork()).ldelim();
22118
+ if (message.temporalRefinement != null && Object.hasOwnProperty.call(message, "temporalRefinement"))
22119
+ writer.uint32(/* id 8, wireType 0 =*/64).bool(message.temporalRefinement);
22120
+ if (message.temporalRefinementCorrelationId != null && Object.hasOwnProperty.call(message, "temporalRefinementCorrelationId"))
22121
+ $root.vertexvis.protobuf.core.Uuid.encode(message.temporalRefinementCorrelationId, writer.uint32(/* id 9, wireType 2 =*/74).fork()).ldelim();
22056
22122
  return writer;
22057
22123
  };
22058
22124
 
@@ -22110,6 +22176,12 @@ const vertexvis = $root.vertexvis = (() => {
22110
22176
  case 7:
22111
22177
  message.featureMap = $root.google.protobuf.BytesValue.decode(reader, reader.uint32());
22112
22178
  break;
22179
+ case 8:
22180
+ message.temporalRefinement = reader.bool();
22181
+ break;
22182
+ case 9:
22183
+ message.temporalRefinementCorrelationId = $root.vertexvis.protobuf.core.Uuid.decode(reader, reader.uint32());
22184
+ break;
22113
22185
  default:
22114
22186
  reader.skipType(tag & 7);
22115
22187
  break;
@@ -22178,6 +22250,14 @@ const vertexvis = $root.vertexvis = (() => {
22178
22250
  if (error)
22179
22251
  return "featureMap." + error;
22180
22252
  }
22253
+ if (message.temporalRefinement != null && message.hasOwnProperty("temporalRefinement"))
22254
+ if (typeof message.temporalRefinement !== "boolean")
22255
+ return "temporalRefinement: boolean expected";
22256
+ if (message.temporalRefinementCorrelationId != null && message.hasOwnProperty("temporalRefinementCorrelationId")) {
22257
+ let error = $root.vertexvis.protobuf.core.Uuid.verify(message.temporalRefinementCorrelationId);
22258
+ if (error)
22259
+ return "temporalRefinementCorrelationId." + error;
22260
+ }
22181
22261
  return null;
22182
22262
  };
22183
22263
 
@@ -22227,6 +22307,13 @@ const vertexvis = $root.vertexvis = (() => {
22227
22307
  throw TypeError(".vertexvis.protobuf.stream.DrawFramePayload.featureMap: object expected");
22228
22308
  message.featureMap = $root.google.protobuf.BytesValue.fromObject(object.featureMap);
22229
22309
  }
22310
+ if (object.temporalRefinement != null)
22311
+ message.temporalRefinement = Boolean(object.temporalRefinement);
22312
+ if (object.temporalRefinementCorrelationId != null) {
22313
+ if (typeof object.temporalRefinementCorrelationId !== "object")
22314
+ throw TypeError(".vertexvis.protobuf.stream.DrawFramePayload.temporalRefinementCorrelationId: object expected");
22315
+ message.temporalRefinementCorrelationId = $root.vertexvis.protobuf.core.Uuid.fromObject(object.temporalRefinementCorrelationId);
22316
+ }
22230
22317
  return message;
22231
22318
  };
22232
22319
 
@@ -22258,6 +22345,8 @@ const vertexvis = $root.vertexvis = (() => {
22258
22345
  }
22259
22346
  object.depthBuffer = null;
22260
22347
  object.featureMap = null;
22348
+ object.temporalRefinement = false;
22349
+ object.temporalRefinementCorrelationId = null;
22261
22350
  }
22262
22351
  if (message.sequenceNumber != null && message.hasOwnProperty("sequenceNumber"))
22263
22352
  object.sequenceNumber = message.sequenceNumber;
@@ -22276,6 +22365,10 @@ const vertexvis = $root.vertexvis = (() => {
22276
22365
  object.depthBuffer = $root.google.protobuf.BytesValue.toObject(message.depthBuffer, options);
22277
22366
  if (message.featureMap != null && message.hasOwnProperty("featureMap"))
22278
22367
  object.featureMap = $root.google.protobuf.BytesValue.toObject(message.featureMap, options);
22368
+ if (message.temporalRefinement != null && message.hasOwnProperty("temporalRefinement"))
22369
+ object.temporalRefinement = message.temporalRefinement;
22370
+ if (message.temporalRefinementCorrelationId != null && message.hasOwnProperty("temporalRefinementCorrelationId"))
22371
+ object.temporalRefinementCorrelationId = $root.vertexvis.protobuf.core.Uuid.toObject(message.temporalRefinementCorrelationId, options);
22279
22372
  return object;
22280
22373
  };
22281
22374