nominal-api 0.979.1__py3-none-any.whl → 0.981.0__py3-none-any.whl

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.
nominal_api/__init__.py CHANGED
@@ -82,5 +82,5 @@ __all__ = [
82
82
 
83
83
  __conjure_generator_version__ = "4.17.0"
84
84
 
85
- __version__ = "0.979.1"
85
+ __version__ = "0.981.0"
86
86
 
nominal_api/_impl.py CHANGED
@@ -20015,37 +20015,6 @@ returning un-archived runs, absent an archive filter.
20015
20015
  _decoder = ConjureDecoder()
20016
20016
  return _decoder.decode(_response.json(), List[scout_run_api_RefNameAndType], self._return_none_for_unknown_union_types)
20017
20017
 
20018
- def search_channels(self, auth_header: str, request: "scout_run_api_SearchRunChannelsRequest", rid: str) -> "scout_run_api_SearchRunChannelsResponse":
20019
- _conjure_encoder = ConjureEncoder()
20020
-
20021
- _headers: Dict[str, Any] = {
20022
- 'Accept': 'application/json',
20023
- 'Content-Type': 'application/json',
20024
- 'Authorization': auth_header,
20025
- }
20026
-
20027
- _params: Dict[str, Any] = {
20028
- }
20029
-
20030
- _path_params: Dict[str, str] = {
20031
- 'rid': quote(str(_conjure_encoder.default(rid)), safe=''),
20032
- }
20033
-
20034
- _json: Any = _conjure_encoder.default(request)
20035
-
20036
- _path = '/scout/v1/run/{rid}/search-channels'
20037
- _path = _path.format(**_path_params)
20038
-
20039
- _response: Response = self._request(
20040
- 'POST',
20041
- self._uri + _path,
20042
- params=_params,
20043
- headers=_headers,
20044
- json=_json)
20045
-
20046
- _decoder = ConjureDecoder()
20047
- return _decoder.decode(_response.json(), scout_run_api_SearchRunChannelsResponse, self._return_none_for_unknown_union_types)
20048
-
20049
20018
  def update_run_attachment(self, auth_header: str, request: "scout_run_api_UpdateAttachmentsRequest", rid: str) -> None:
20050
20019
  """Updates the attachments associated with a run.
20051
20020
  """
@@ -50219,6 +50188,8 @@ class scout_compute_api_NumericAggregationFunction(ConjureEnumType):
50219
50188
  '''COUNT'''
50220
50189
  STANDARD_DEVIATION = 'STANDARD_DEVIATION'
50221
50190
  '''STANDARD_DEVIATION'''
50191
+ ROOT_MEAN_SQUARE = 'ROOT_MEAN_SQUARE'
50192
+ '''ROOT_MEAN_SQUARE'''
50222
50193
  UNKNOWN = 'UNKNOWN'
50223
50194
  '''UNKNOWN'''
50224
50195
 
@@ -51798,6 +51769,8 @@ class scout_compute_api_NumericUnionOperation(ConjureEnumType):
51798
51769
  '''COUNT'''
51799
51770
  STANDARD_DEVIATION = 'STANDARD_DEVIATION'
51800
51771
  '''STANDARD_DEVIATION'''
51772
+ ROOT_MEAN_SQUARE = 'ROOT_MEAN_SQUARE'
51773
+ '''ROOT_MEAN_SQUARE'''
51801
51774
  THROW = 'THROW'
51802
51775
  '''THROW'''
51803
51776
  UNKNOWN = 'UNKNOWN'
@@ -52839,18 +52812,20 @@ class scout_compute_api_RangeAggregation(ConjureBeanType):
52839
52812
  'max': ConjureFieldDefinition('max', float),
52840
52813
  'standard_deviation': ConjureFieldDefinition('standardDeviation', float),
52841
52814
  'count': ConjureFieldDefinition('count', float),
52842
- 'sum': ConjureFieldDefinition('sum', float)
52815
+ 'sum': ConjureFieldDefinition('sum', float),
52816
+ 'root_mean_square': ConjureFieldDefinition('rootMeanSquare', OptionalTypeWrapper[float])
52843
52817
  }
52844
52818
 
52845
- __slots__: List[str] = ['_average', '_min', '_max', '_standard_deviation', '_count', '_sum']
52819
+ __slots__: List[str] = ['_average', '_min', '_max', '_standard_deviation', '_count', '_sum', '_root_mean_square']
52846
52820
 
52847
- def __init__(self, average: float, count: float, max: float, min: float, standard_deviation: float, sum: float) -> None:
52821
+ def __init__(self, average: float, count: float, max: float, min: float, standard_deviation: float, sum: float, root_mean_square: Optional[float] = None) -> None:
52848
52822
  self._average = average
52849
52823
  self._min = min
52850
52824
  self._max = max
52851
52825
  self._standard_deviation = standard_deviation
52852
52826
  self._count = count
52853
52827
  self._sum = sum
52828
+ self._root_mean_square = root_mean_square
52854
52829
 
52855
52830
  @builtins.property
52856
52831
  def average(self) -> float:
@@ -52876,6 +52851,10 @@ class scout_compute_api_RangeAggregation(ConjureBeanType):
52876
52851
  def sum(self) -> float:
52877
52852
  return self._sum
52878
52853
 
52854
+ @builtins.property
52855
+ def root_mean_square(self) -> Optional[float]:
52856
+ return self._root_mean_square
52857
+
52879
52858
 
52880
52859
  scout_compute_api_RangeAggregation.__name__ = "RangeAggregation"
52881
52860
  scout_compute_api_RangeAggregation.__qualname__ = "RangeAggregation"
@@ -52884,6 +52863,7 @@ scout_compute_api_RangeAggregation.__module__ = "nominal_api.scout_compute_api"
52884
52863
 
52885
52864
  class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
52886
52865
  _sum: Optional["scout_compute_api_Summation"] = None
52866
+ _root_mean_square: Optional["scout_compute_api_RootMeanSquare"] = None
52887
52867
  _average: Optional["scout_compute_api_Average"] = None
52888
52868
  _min: Optional["scout_compute_api_Minimum"] = None
52889
52869
  _max: Optional["scout_compute_api_Maximum"] = None
@@ -52895,6 +52875,7 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
52895
52875
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
52896
52876
  return {
52897
52877
  'sum': ConjureFieldDefinition('sum', scout_compute_api_Summation),
52878
+ 'root_mean_square': ConjureFieldDefinition('rootMeanSquare', scout_compute_api_RootMeanSquare),
52898
52879
  'average': ConjureFieldDefinition('average', scout_compute_api_Average),
52899
52880
  'min': ConjureFieldDefinition('min', scout_compute_api_Minimum),
52900
52881
  'max': ConjureFieldDefinition('max', scout_compute_api_Maximum),
@@ -52906,6 +52887,7 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
52906
52887
  def __init__(
52907
52888
  self,
52908
52889
  sum: Optional["scout_compute_api_Summation"] = None,
52890
+ root_mean_square: Optional["scout_compute_api_RootMeanSquare"] = None,
52909
52891
  average: Optional["scout_compute_api_Average"] = None,
52910
52892
  min: Optional["scout_compute_api_Minimum"] = None,
52911
52893
  max: Optional["scout_compute_api_Maximum"] = None,
@@ -52915,12 +52897,15 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
52915
52897
  type_of_union: Optional[str] = None
52916
52898
  ) -> None:
52917
52899
  if type_of_union is None:
52918
- if (sum is not None) + (average is not None) + (min is not None) + (max is not None) + (standard_deviation is not None) + (count is not None) + (all is not None) != 1:
52900
+ if (sum is not None) + (root_mean_square is not None) + (average is not None) + (min is not None) + (max is not None) + (standard_deviation is not None) + (count is not None) + (all is not None) != 1:
52919
52901
  raise ValueError('a union must contain a single member')
52920
52902
 
52921
52903
  if sum is not None:
52922
52904
  self._sum = sum
52923
52905
  self._type = 'sum'
52906
+ if root_mean_square is not None:
52907
+ self._root_mean_square = root_mean_square
52908
+ self._type = 'rootMeanSquare'
52924
52909
  if average is not None:
52925
52910
  self._average = average
52926
52911
  self._type = 'average'
@@ -52945,6 +52930,11 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
52945
52930
  raise ValueError('a union value must not be None')
52946
52931
  self._sum = sum
52947
52932
  self._type = 'sum'
52933
+ elif type_of_union == 'rootMeanSquare':
52934
+ if root_mean_square is None:
52935
+ raise ValueError('a union value must not be None')
52936
+ self._root_mean_square = root_mean_square
52937
+ self._type = 'rootMeanSquare'
52948
52938
  elif type_of_union == 'average':
52949
52939
  if average is None:
52950
52940
  raise ValueError('a union value must not be None')
@@ -52980,6 +52970,10 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
52980
52970
  def sum(self) -> Optional["scout_compute_api_Summation"]:
52981
52971
  return self._sum
52982
52972
 
52973
+ @builtins.property
52974
+ def root_mean_square(self) -> Optional["scout_compute_api_RootMeanSquare"]:
52975
+ return self._root_mean_square
52976
+
52983
52977
  @builtins.property
52984
52978
  def average(self) -> Optional["scout_compute_api_Average"]:
52985
52979
  return self._average
@@ -53009,6 +53003,8 @@ class scout_compute_api_RangeAggregationOperation(ConjureUnionType):
53009
53003
  raise ValueError('{} is not an instance of scout_compute_api_RangeAggregationOperationVisitor'.format(visitor.__class__.__name__))
53010
53004
  if self._type == 'sum' and self.sum is not None:
53011
53005
  return visitor._sum(self.sum)
53006
+ if self._type == 'rootMeanSquare' and self.root_mean_square is not None:
53007
+ return visitor._root_mean_square(self.root_mean_square)
53012
53008
  if self._type == 'average' and self.average is not None:
53013
53009
  return visitor._average(self.average)
53014
53010
  if self._type == 'min' and self.min is not None:
@@ -53034,6 +53030,10 @@ class scout_compute_api_RangeAggregationOperationVisitor:
53034
53030
  def _sum(self, sum: "scout_compute_api_Summation") -> Any:
53035
53031
  pass
53036
53032
 
53033
+ @abstractmethod
53034
+ def _root_mean_square(self, root_mean_square: "scout_compute_api_RootMeanSquare") -> Any:
53035
+ pass
53036
+
53037
53037
  @abstractmethod
53038
53038
  def _average(self, average: "scout_compute_api_Average") -> Any:
53039
53039
  pass
@@ -54139,6 +54139,24 @@ scout_compute_api_RollingOperatorVisitor.__qualname__ = "RollingOperatorVisitor"
54139
54139
  scout_compute_api_RollingOperatorVisitor.__module__ = "nominal_api.scout_compute_api"
54140
54140
 
54141
54141
 
54142
+ class scout_compute_api_RootMeanSquare(ConjureBeanType):
54143
+ """The root mean square of points inside the time window.
54144
+ """
54145
+
54146
+ @builtins.classmethod
54147
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
54148
+ return {
54149
+ }
54150
+
54151
+ __slots__: List[str] = []
54152
+
54153
+
54154
+
54155
+ scout_compute_api_RootMeanSquare.__name__ = "RootMeanSquare"
54156
+ scout_compute_api_RootMeanSquare.__qualname__ = "RootMeanSquare"
54157
+ scout_compute_api_RootMeanSquare.__module__ = "nominal_api.scout_compute_api"
54158
+
54159
+
54142
54160
  class scout_compute_api_RunChannel(ConjureBeanType):
54143
54161
 
54144
54162
  @builtins.classmethod
@@ -82781,12 +82799,13 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
82781
82799
  'data_sources': ConjureFieldDefinition('dataSources', OptionalTypeWrapper[Dict[scout_api_DataSourceRefName, scout_run_api_CreateRunDataSource]]),
82782
82800
  'attachments': ConjureFieldDefinition('attachments', OptionalTypeWrapper[List[api_rids_AttachmentRid]]),
82783
82801
  'asset': ConjureFieldDefinition('asset', OptionalTypeWrapper[scout_rids_api_AssetRid]),
82784
- 'assets': ConjureFieldDefinition('assets', List[scout_rids_api_AssetRid])
82802
+ 'assets': ConjureFieldDefinition('assets', List[scout_rids_api_AssetRid]),
82803
+ 'strict_overwrite': ConjureFieldDefinition('strictOverwrite', OptionalTypeWrapper[bool])
82785
82804
  }
82786
82805
 
82787
- __slots__: List[str] = ['_title', '_description', '_start_time', '_end_time', '_properties', '_labels', '_links', '_run_prefix', '_data_sources', '_attachments', '_asset', '_assets']
82806
+ __slots__: List[str] = ['_title', '_description', '_start_time', '_end_time', '_properties', '_labels', '_links', '_run_prefix', '_data_sources', '_attachments', '_asset', '_assets', '_strict_overwrite']
82788
82807
 
82789
- def __init__(self, assets: List[str], asset: Optional[str] = None, attachments: Optional[List[str]] = None, data_sources: Optional[Dict[str, "scout_run_api_CreateRunDataSource"]] = None, description: Optional[str] = None, end_time: Optional["scout_run_api_UtcTimestamp"] = None, labels: Optional[List[str]] = None, links: Optional[List["scout_run_api_Link"]] = None, properties: Optional[Dict[str, str]] = None, run_prefix: Optional[str] = None, start_time: Optional["scout_run_api_UtcTimestamp"] = None, title: Optional[str] = None) -> None:
82808
+ def __init__(self, assets: List[str], asset: Optional[str] = None, attachments: Optional[List[str]] = None, data_sources: Optional[Dict[str, "scout_run_api_CreateRunDataSource"]] = None, description: Optional[str] = None, end_time: Optional["scout_run_api_UtcTimestamp"] = None, labels: Optional[List[str]] = None, links: Optional[List["scout_run_api_Link"]] = None, properties: Optional[Dict[str, str]] = None, run_prefix: Optional[str] = None, start_time: Optional["scout_run_api_UtcTimestamp"] = None, strict_overwrite: Optional[bool] = None, title: Optional[str] = None) -> None:
82790
82809
  self._title = title
82791
82810
  self._description = description
82792
82811
  self._start_time = start_time
@@ -82799,6 +82818,7 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
82799
82818
  self._attachments = attachments
82800
82819
  self._asset = asset
82801
82820
  self._assets = assets
82821
+ self._strict_overwrite = strict_overwrite
82802
82822
 
82803
82823
  @builtins.property
82804
82824
  def title(self) -> Optional[str]:
@@ -82810,10 +82830,14 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
82810
82830
 
82811
82831
  @builtins.property
82812
82832
  def start_time(self) -> Optional["scout_run_api_UtcTimestamp"]:
82833
+ """If strictOverwrite is false, will only update the startTime if it is before the existing startTime.
82834
+ """
82813
82835
  return self._start_time
82814
82836
 
82815
82837
  @builtins.property
82816
82838
  def end_time(self) -> Optional["scout_run_api_UtcTimestamp"]:
82839
+ """If strictOverwrite is false, will only update the endTime if it is after the existing endTime.
82840
+ """
82817
82841
  return self._end_time
82818
82842
 
82819
82843
  @builtins.property
@@ -82850,6 +82874,15 @@ class scout_run_api_UpdateRunRequest(ConjureBeanType):
82850
82874
  def assets(self) -> List[str]:
82851
82875
  return self._assets
82852
82876
 
82877
+ @builtins.property
82878
+ def strict_overwrite(self) -> Optional[bool]:
82879
+ """If true, will blindly overwrite the existing fields with the new values in the request.
82880
+ If false, will only update the fields if application constraints are maintained.
82881
+ See individual field docs for more details.
82882
+ Defaults to true for backwards compatibility.
82883
+ """
82884
+ return self._strict_overwrite
82885
+
82853
82886
 
82854
82887
  scout_run_api_UpdateRunRequest.__name__ = "UpdateRunRequest"
82855
82888
  scout_run_api_UpdateRunRequest.__qualname__ = "UpdateRunRequest"
@@ -92939,6 +92972,7 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
92939
92972
  _doubles: Optional[List[float]] = None
92940
92973
  _ints: Optional[List[int]] = None
92941
92974
  _arrays: Optional["storage_writer_api_ArraysValues"] = None
92975
+ _structs: Optional[List[str]] = None
92942
92976
 
92943
92977
  @builtins.classmethod
92944
92978
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
@@ -92946,7 +92980,8 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
92946
92980
  'strings': ConjureFieldDefinition('strings', List[str]),
92947
92981
  'doubles': ConjureFieldDefinition('doubles', List[float]),
92948
92982
  'ints': ConjureFieldDefinition('ints', List[int]),
92949
- 'arrays': ConjureFieldDefinition('arrays', storage_writer_api_ArraysValues)
92983
+ 'arrays': ConjureFieldDefinition('arrays', storage_writer_api_ArraysValues),
92984
+ 'structs': ConjureFieldDefinition('structs', List[str])
92950
92985
  }
92951
92986
 
92952
92987
  def __init__(
@@ -92955,10 +92990,11 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
92955
92990
  doubles: Optional[List[float]] = None,
92956
92991
  ints: Optional[List[int]] = None,
92957
92992
  arrays: Optional["storage_writer_api_ArraysValues"] = None,
92993
+ structs: Optional[List[str]] = None,
92958
92994
  type_of_union: Optional[str] = None
92959
92995
  ) -> None:
92960
92996
  if type_of_union is None:
92961
- if (strings is not None) + (doubles is not None) + (ints is not None) + (arrays is not None) != 1:
92997
+ if (strings is not None) + (doubles is not None) + (ints is not None) + (arrays is not None) + (structs is not None) != 1:
92962
92998
  raise ValueError('a union must contain a single member')
92963
92999
 
92964
93000
  if strings is not None:
@@ -92973,6 +93009,9 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
92973
93009
  if arrays is not None:
92974
93010
  self._arrays = arrays
92975
93011
  self._type = 'arrays'
93012
+ if structs is not None:
93013
+ self._structs = structs
93014
+ self._type = 'structs'
92976
93015
 
92977
93016
  elif type_of_union == 'strings':
92978
93017
  if strings is None:
@@ -92994,6 +93033,11 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
92994
93033
  raise ValueError('a union value must not be None')
92995
93034
  self._arrays = arrays
92996
93035
  self._type = 'arrays'
93036
+ elif type_of_union == 'structs':
93037
+ if structs is None:
93038
+ raise ValueError('a union value must not be None')
93039
+ self._structs = structs
93040
+ self._type = 'structs'
92997
93041
 
92998
93042
  @builtins.property
92999
93043
  def strings(self) -> Optional[List[str]]:
@@ -93011,6 +93055,10 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
93011
93055
  def arrays(self) -> Optional["storage_writer_api_ArraysValues"]:
93012
93056
  return self._arrays
93013
93057
 
93058
+ @builtins.property
93059
+ def structs(self) -> Optional[List[str]]:
93060
+ return self._structs
93061
+
93014
93062
  def accept(self, visitor) -> Any:
93015
93063
  if not isinstance(visitor, storage_writer_api_ColumnValuesVisitor):
93016
93064
  raise ValueError('{} is not an instance of storage_writer_api_ColumnValuesVisitor'.format(visitor.__class__.__name__))
@@ -93022,6 +93070,8 @@ class storage_writer_api_ColumnValues(ConjureUnionType):
93022
93070
  return visitor._ints(self.ints)
93023
93071
  if self._type == 'arrays' and self.arrays is not None:
93024
93072
  return visitor._arrays(self.arrays)
93073
+ if self._type == 'structs' and self.structs is not None:
93074
+ return visitor._structs(self.structs)
93025
93075
 
93026
93076
 
93027
93077
  storage_writer_api_ColumnValues.__name__ = "ColumnValues"
@@ -93047,6 +93097,10 @@ class storage_writer_api_ColumnValuesVisitor:
93047
93097
  def _arrays(self, arrays: "storage_writer_api_ArraysValues") -> Any:
93048
93098
  pass
93049
93099
 
93100
+ @abstractmethod
93101
+ def _structs(self, structs: List[str]) -> Any:
93102
+ pass
93103
+
93050
93104
 
93051
93105
  storage_writer_api_ColumnValuesVisitor.__name__ = "ColumnValuesVisitor"
93052
93106
  storage_writer_api_ColumnValuesVisitor.__qualname__ = "ColumnValuesVisitor"
@@ -98801,6 +98855,8 @@ comments_api_ReactionRid = str
98801
98855
 
98802
98856
  scout_versioning_api_CommitId = str
98803
98857
 
98858
+ api_rids_DataConnectorRid = str
98859
+
98804
98860
  scout_run_api_ConnectionRid = str
98805
98861
 
98806
98862
  timeseries_logicalseries_api_DatasetName = str
@@ -5,6 +5,7 @@ from .._impl import (
5
5
  api_rids_AutomaticCheckEvaluationRid as AutomaticCheckEvaluationRid,
6
6
  api_rids_ChunkRid as ChunkRid,
7
7
  api_rids_ConnectAppRid as ConnectAppRid,
8
+ api_rids_DataConnectorRid as DataConnectorRid,
8
9
  api_rids_DataSourceRid as DataSourceRid,
9
10
  api_rids_DatasetRid as DatasetRid,
10
11
  api_rids_EdgeSyncSourceRid as EdgeSyncSourceRid,
@@ -27,6 +28,7 @@ __all__ = [
27
28
  'AutomaticCheckEvaluationRid',
28
29
  'ChunkRid',
29
30
  'ConnectAppRid',
31
+ 'DataConnectorRid',
30
32
  'DataSourceRid',
31
33
  'DatasetRid',
32
34
  'EdgeSyncSourceRid',
@@ -294,6 +294,7 @@ from .._impl import (
294
294
  scout_compute_api_RollingOperationSeries as RollingOperationSeries,
295
295
  scout_compute_api_RollingOperator as RollingOperator,
296
296
  scout_compute_api_RollingOperatorVisitor as RollingOperatorVisitor,
297
+ scout_compute_api_RootMeanSquare as RootMeanSquare,
297
298
  scout_compute_api_RunChannel as RunChannel,
298
299
  scout_compute_api_ScaleSeries as ScaleSeries,
299
300
  scout_compute_api_Scatter as Scatter,
@@ -677,6 +678,7 @@ __all__ = [
677
678
  'RollingOperationSeries',
678
679
  'RollingOperator',
679
680
  'RollingOperatorVisitor',
681
+ 'RootMeanSquare',
680
682
  'RunChannel',
681
683
  'ScaleSeries',
682
684
  'Scatter',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.979.1
3
+ Version: 0.981.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<4,>=2.8.0
@@ -1,9 +1,9 @@
1
- nominal_api/__init__.py,sha256=BSKMNLok7qhOmWK_TNWbOSJpa2coyMm23YtFuZEciMk,2109
2
- nominal_api/_impl.py,sha256=VNLxDo3Yt_WGAACMxzOLSXLckZpgXYbz2eOXwX4JVT0,3905117
1
+ nominal_api/__init__.py,sha256=seduYfaT3x1y4dpgLYQisNloPji_JgCYyYO-TcxPKGU,2109
2
+ nominal_api/_impl.py,sha256=HHyybj5ciSODHzfA-71k8JD7y7GLLu5DcZ-Z1IpaQnU,3907817
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=OHAEgaRoUX60742H_U3q_pBoPGpLspsL5XERHQ-rjMs,2299
5
5
  nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
6
- nominal_api/api_rids/__init__.py,sha256=iSaUMCJrloFJ5_RuCKiClolCqEW-2-RJFw_qN1vOZAc,1435
6
+ nominal_api/api_rids/__init__.py,sha256=M9I8D1hO-CUPS-Cu17z2zwrxJk3sH6YI1mPzo5aSCGk,1510
7
7
  nominal_api/attachments_api/__init__.py,sha256=OYiF9nptXlr47pkina5cOCIJbD4RKSOeAyCNj3kZmbk,901
8
8
  nominal_api/authentication_api/__init__.py,sha256=n79-K2MkewzKIegsnURlFX-zkJuy_IsrgldSWMh9gXM,1801
9
9
  nominal_api/authorization/__init__.py,sha256=76PqMnOKri5j9wb9XtT_OwBJox9qia6VyloR_-urasM,1529
@@ -34,7 +34,7 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
34
34
  nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
35
35
  nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=F5cQo_KqeTpFwqKBDV-iEjrND7xQgkycC1yocpxq1Qk,6277
36
36
  nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
37
- nominal_api/scout_compute_api/__init__.py,sha256=hN4rM6gHs7-ANpit2x7L15c3rspRmJqgN83jISLlmxE,34900
37
+ nominal_api/scout_compute_api/__init__.py,sha256=s_bUtDx-wDmAnPzR03mgu05BHtqOCCqXOg-oEpGeMnM,34978
38
38
  nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
39
39
  nominal_api/scout_compute_resolved_api/__init__.py,sha256=ZqSOw4usjKsRs-HR1WbZTO4vJ7M_6UzhbSu5oza_KSk,18013
40
40
  nominal_api/scout_dataexport_api/__init__.py,sha256=jl409RGy7Mxhjqja8wa-abLnXrhL2FEYZrA1GcaAJh0,2182
@@ -79,7 +79,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
79
79
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=i21vITWBn-6ruVuFZg491TDpx6WcIhJBoF3oNw3w338,1186
80
80
  nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
81
81
  nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
82
- nominal_api-0.979.1.dist-info/METADATA,sha256=G0vHCNX5beG-AYqV8kQ3QsZK4BTVG4R_O1drEVFWAVE,199
83
- nominal_api-0.979.1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
84
- nominal_api-0.979.1.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
85
- nominal_api-0.979.1.dist-info/RECORD,,
82
+ nominal_api-0.981.0.dist-info/METADATA,sha256=kVsrPr4Lef39JavpcOEUv_jSRdmmSesY8rWT0qMbmAU,199
83
+ nominal_api-0.981.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
84
+ nominal_api-0.981.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
85
+ nominal_api-0.981.0.dist-info/RECORD,,