nominal-api 0.549.0__py3-none-any.whl → 0.550.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.

Potentially problematic release.


This version of nominal-api might be problematic. Click here for more details.

nominal_api/__init__.py CHANGED
@@ -68,5 +68,5 @@ __all__ = [
68
68
 
69
69
  __conjure_generator_version__ = "4.9.0"
70
70
 
71
- __version__ = "0.549.0"
71
+ __version__ = "0.550.0"
72
72
 
nominal_api/_impl.py CHANGED
@@ -77,6 +77,62 @@ api_Granularity.__qualname__ = "Granularity"
77
77
  api_Granularity.__module__ = "nominal_api.api"
78
78
 
79
79
 
80
+ class api_Handle(ConjureUnionType):
81
+ _s3: Optional[str] = None
82
+
83
+ @builtins.classmethod
84
+ def _options(cls) -> Dict[str, ConjureFieldDefinition]:
85
+ return {
86
+ 's3': ConjureFieldDefinition('s3', api_S3Path)
87
+ }
88
+
89
+ def __init__(
90
+ self,
91
+ s3: Optional[str] = None,
92
+ type_of_union: Optional[str] = None
93
+ ) -> None:
94
+ if type_of_union is None:
95
+ if (s3 is not None) != 1:
96
+ raise ValueError('a union must contain a single member')
97
+
98
+ if s3 is not None:
99
+ self._s3 = s3
100
+ self._type = 's3'
101
+
102
+ elif type_of_union == 's3':
103
+ if s3 is None:
104
+ raise ValueError('a union value must not be None')
105
+ self._s3 = s3
106
+ self._type = 's3'
107
+
108
+ @builtins.property
109
+ def s3(self) -> Optional[str]:
110
+ return self._s3
111
+
112
+ def accept(self, visitor) -> Any:
113
+ if not isinstance(visitor, api_HandleVisitor):
114
+ raise ValueError('{} is not an instance of api_HandleVisitor'.format(visitor.__class__.__name__))
115
+ if self._type == 's3' and self.s3 is not None:
116
+ return visitor._s3(self.s3)
117
+
118
+
119
+ api_Handle.__name__ = "Handle"
120
+ api_Handle.__qualname__ = "Handle"
121
+ api_Handle.__module__ = "nominal_api.api"
122
+
123
+
124
+ class api_HandleVisitor:
125
+
126
+ @abstractmethod
127
+ def _s3(self, s3: str) -> Any:
128
+ pass
129
+
130
+
131
+ api_HandleVisitor.__name__ = "HandleVisitor"
132
+ api_HandleVisitor.__qualname__ = "HandleVisitor"
133
+ api_HandleVisitor.__module__ = "nominal_api.api"
134
+
135
+
80
136
  class api_McapChannelLocator(ConjureUnionType):
81
137
  """Locator for a channel in an mcap file. Channel name is not guaranteed to be unique, so channel ID should
82
138
  be used for mcap files with duplicate channel names."""
@@ -329,7 +385,7 @@ class attachments_api_Attachment(ConjureBeanType):
329
385
  return {
330
386
  'rid': ConjureFieldDefinition('rid', api_rids_AttachmentRid),
331
387
  'title': ConjureFieldDefinition('title', str),
332
- 's3_path': ConjureFieldDefinition('s3Path', attachments_api_S3Path),
388
+ 's3_path': ConjureFieldDefinition('s3Path', api_S3Path),
333
389
  'file_type': ConjureFieldDefinition('fileType', str),
334
390
  'description': ConjureFieldDefinition('description', str),
335
391
  'created_by': ConjureFieldDefinition('createdBy', str),
@@ -699,7 +755,7 @@ class attachments_api_CreateAttachmentRequest(ConjureBeanType):
699
755
  @builtins.classmethod
700
756
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
701
757
  return {
702
- 's3_path': ConjureFieldDefinition('s3Path', attachments_api_S3Path),
758
+ 's3_path': ConjureFieldDefinition('s3Path', api_S3Path),
703
759
  'title': ConjureFieldDefinition('title', str),
704
760
  'description': ConjureFieldDefinition('description', str),
705
761
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
@@ -3478,6 +3534,8 @@ class comments_api_ResourceType(ConjureEnumType):
3478
3534
 
3479
3535
  RUN = 'RUN'
3480
3536
  '''RUN'''
3537
+ EVENT = 'EVENT'
3538
+ '''EVENT'''
3481
3539
  UNKNOWN = 'UNKNOWN'
3482
3540
  '''UNKNOWN'''
3483
3541
 
@@ -60876,7 +60934,7 @@ class scout_video_api_CreateSegment(ConjureBeanType):
60876
60934
  @builtins.classmethod
60877
60935
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
60878
60936
  return {
60879
- 'data_handle': ConjureFieldDefinition('dataHandle', scout_video_api_Handle),
60937
+ 'data_handle': ConjureFieldDefinition('dataHandle', api_Handle),
60880
60938
  'frame_rate': ConjureFieldDefinition('frameRate', float),
60881
60939
  'duration_seconds': ConjureFieldDefinition('durationSeconds', float),
60882
60940
  'timestamps': ConjureFieldDefinition('timestamps', scout_video_api_SegmentTimestamps),
@@ -60885,7 +60943,7 @@ class scout_video_api_CreateSegment(ConjureBeanType):
60885
60943
 
60886
60944
  __slots__: List[str] = ['_data_handle', '_frame_rate', '_duration_seconds', '_timestamps', '_segment_end_timestamp']
60887
60945
 
60888
- def __init__(self, data_handle: "scout_video_api_Handle", duration_seconds: float, frame_rate: float, segment_end_timestamp: "api_Timestamp", timestamps: "scout_video_api_SegmentTimestamps") -> None:
60946
+ def __init__(self, data_handle: "api_Handle", duration_seconds: float, frame_rate: float, segment_end_timestamp: "api_Timestamp", timestamps: "scout_video_api_SegmentTimestamps") -> None:
60889
60947
  self._data_handle = data_handle
60890
60948
  self._frame_rate = frame_rate
60891
60949
  self._duration_seconds = duration_seconds
@@ -60893,7 +60951,7 @@ class scout_video_api_CreateSegment(ConjureBeanType):
60893
60951
  self._segment_end_timestamp = segment_end_timestamp
60894
60952
 
60895
60953
  @builtins.property
60896
- def data_handle(self) -> "scout_video_api_Handle":
60954
+ def data_handle(self) -> "api_Handle":
60897
60955
  return self._data_handle
60898
60956
 
60899
60957
  @builtins.property
@@ -61223,62 +61281,6 @@ scout_video_api_GetVideosResponse.__qualname__ = "GetVideosResponse"
61223
61281
  scout_video_api_GetVideosResponse.__module__ = "nominal_api.scout_video_api"
61224
61282
 
61225
61283
 
61226
- class scout_video_api_Handle(ConjureUnionType):
61227
- _s3: Optional[str] = None
61228
-
61229
- @builtins.classmethod
61230
- def _options(cls) -> Dict[str, ConjureFieldDefinition]:
61231
- return {
61232
- 's3': ConjureFieldDefinition('s3', scout_video_api_S3Path)
61233
- }
61234
-
61235
- def __init__(
61236
- self,
61237
- s3: Optional[str] = None,
61238
- type_of_union: Optional[str] = None
61239
- ) -> None:
61240
- if type_of_union is None:
61241
- if (s3 is not None) != 1:
61242
- raise ValueError('a union must contain a single member')
61243
-
61244
- if s3 is not None:
61245
- self._s3 = s3
61246
- self._type = 's3'
61247
-
61248
- elif type_of_union == 's3':
61249
- if s3 is None:
61250
- raise ValueError('a union value must not be None')
61251
- self._s3 = s3
61252
- self._type = 's3'
61253
-
61254
- @builtins.property
61255
- def s3(self) -> Optional[str]:
61256
- return self._s3
61257
-
61258
- def accept(self, visitor) -> Any:
61259
- if not isinstance(visitor, scout_video_api_HandleVisitor):
61260
- raise ValueError('{} is not an instance of scout_video_api_HandleVisitor'.format(visitor.__class__.__name__))
61261
- if self._type == 's3' and self.s3 is not None:
61262
- return visitor._s3(self.s3)
61263
-
61264
-
61265
- scout_video_api_Handle.__name__ = "Handle"
61266
- scout_video_api_Handle.__qualname__ = "Handle"
61267
- scout_video_api_Handle.__module__ = "nominal_api.scout_video_api"
61268
-
61269
-
61270
- class scout_video_api_HandleVisitor:
61271
-
61272
- @abstractmethod
61273
- def _s3(self, s3: str) -> Any:
61274
- pass
61275
-
61276
-
61277
- scout_video_api_HandleVisitor.__name__ = "HandleVisitor"
61278
- scout_video_api_HandleVisitor.__qualname__ = "HandleVisitor"
61279
- scout_video_api_HandleVisitor.__module__ = "nominal_api.scout_video_api"
61280
-
61281
-
61282
61284
  class scout_video_api_IngestError(ConjureBeanType):
61283
61285
 
61284
61286
  @builtins.classmethod
@@ -61744,7 +61746,7 @@ class scout_video_api_Segment(ConjureBeanType):
61744
61746
  return {
61745
61747
  'rid': ConjureFieldDefinition('rid', scout_video_api_SegmentRid),
61746
61748
  'video_rid': ConjureFieldDefinition('videoRid', api_rids_VideoRid),
61747
- 'data_handle': ConjureFieldDefinition('dataHandle', scout_video_api_Handle),
61749
+ 'data_handle': ConjureFieldDefinition('dataHandle', api_Handle),
61748
61750
  'frame_rate': ConjureFieldDefinition('frameRate', float),
61749
61751
  'duration_seconds': ConjureFieldDefinition('durationSeconds', float),
61750
61752
  'timestamps': ConjureFieldDefinition('timestamps', scout_video_api_SegmentTimestamps)
@@ -61752,7 +61754,7 @@ class scout_video_api_Segment(ConjureBeanType):
61752
61754
 
61753
61755
  __slots__: List[str] = ['_rid', '_video_rid', '_data_handle', '_frame_rate', '_duration_seconds', '_timestamps']
61754
61756
 
61755
- def __init__(self, data_handle: "scout_video_api_Handle", duration_seconds: float, frame_rate: float, rid: str, timestamps: "scout_video_api_SegmentTimestamps", video_rid: str) -> None:
61757
+ def __init__(self, data_handle: "api_Handle", duration_seconds: float, frame_rate: float, rid: str, timestamps: "scout_video_api_SegmentTimestamps", video_rid: str) -> None:
61756
61758
  self._rid = rid
61757
61759
  self._video_rid = video_rid
61758
61760
  self._data_handle = data_handle
@@ -61769,7 +61771,7 @@ class scout_video_api_Segment(ConjureBeanType):
61769
61771
  return self._video_rid
61770
61772
 
61771
61773
  @builtins.property
61772
- def data_handle(self) -> "scout_video_api_Handle":
61774
+ def data_handle(self) -> "api_Handle":
61773
61775
  return self._data_handle
61774
61776
 
61775
61777
  @builtins.property
@@ -62408,24 +62410,24 @@ class scout_video_api_VideoOriginMetadata(ConjureBeanType):
62408
62410
  @builtins.classmethod
62409
62411
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
62410
62412
  return {
62411
- 'video_sources': ConjureFieldDefinition('videoSources', List[scout_video_api_Handle]),
62412
- 'video_sources_original_handles': ConjureFieldDefinition('videoSourcesOriginalHandles', OptionalTypeWrapper[List[scout_video_api_Handle]]),
62413
+ 'video_sources': ConjureFieldDefinition('videoSources', List[api_Handle]),
62414
+ 'video_sources_original_handles': ConjureFieldDefinition('videoSourcesOriginalHandles', OptionalTypeWrapper[List[api_Handle]]),
62413
62415
  'timestamp_manifest': ConjureFieldDefinition('timestampManifest', scout_video_api_VideoTimestampManifest)
62414
62416
  }
62415
62417
 
62416
62418
  __slots__: List[str] = ['_video_sources', '_video_sources_original_handles', '_timestamp_manifest']
62417
62419
 
62418
- def __init__(self, timestamp_manifest: "scout_video_api_VideoTimestampManifest", video_sources: List["scout_video_api_Handle"], video_sources_original_handles: Optional[List["scout_video_api_Handle"]] = None) -> None:
62420
+ def __init__(self, timestamp_manifest: "scout_video_api_VideoTimestampManifest", video_sources: List["api_Handle"], video_sources_original_handles: Optional[List["api_Handle"]] = None) -> None:
62419
62421
  self._video_sources = video_sources
62420
62422
  self._video_sources_original_handles = video_sources_original_handles
62421
62423
  self._timestamp_manifest = timestamp_manifest
62422
62424
 
62423
62425
  @builtins.property
62424
- def video_sources(self) -> List["scout_video_api_Handle"]:
62426
+ def video_sources(self) -> List["api_Handle"]:
62425
62427
  return self._video_sources
62426
62428
 
62427
62429
  @builtins.property
62428
- def video_sources_original_handles(self) -> Optional[List["scout_video_api_Handle"]]:
62430
+ def video_sources_original_handles(self) -> Optional[List["api_Handle"]]:
62429
62431
  """
62430
62432
  Will be present if the handles were copied from a different bucket to the Nominal bucket.
62431
62433
  """
@@ -62450,7 +62452,7 @@ class scout_video_api_VideoTimestampManifest(ConjureUnionType):
62450
62452
  def _options(cls) -> Dict[str, ConjureFieldDefinition]:
62451
62453
  return {
62452
62454
  'mcap': ConjureFieldDefinition('mcap', scout_video_api_McapTimestampManifest),
62453
- 's3paths': ConjureFieldDefinition('s3paths', List[scout_video_api_S3Path]),
62455
+ 's3paths': ConjureFieldDefinition('s3paths', List[api_S3Path]),
62454
62456
  'no_manifest': ConjureFieldDefinition('noManifest', scout_video_api_NoTimestampManifest)
62455
62457
  }
62456
62458
 
@@ -67062,7 +67064,7 @@ class timeseries_logicalseries_api_CsvLocator(ConjureBeanType):
67062
67064
  @builtins.classmethod
67063
67065
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
67064
67066
  return {
67065
- 's3_path': ConjureFieldDefinition('s3Path', str),
67067
+ 's3_path': ConjureFieldDefinition('s3Path', api_S3Path),
67066
67068
  'index': ConjureFieldDefinition('index', int),
67067
67069
  'uses_legacy_format': ConjureFieldDefinition('usesLegacyFormat', OptionalTypeWrapper[bool])
67068
67070
  }
@@ -67101,7 +67103,7 @@ class timeseries_logicalseries_api_CsvLocatorV2(ConjureBeanType):
67101
67103
  @builtins.classmethod
67102
67104
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
67103
67105
  return {
67104
- 's3_path': ConjureFieldDefinition('s3Path', str),
67106
+ 's3_path': ConjureFieldDefinition('s3Path', api_S3Path),
67105
67107
  'index': ConjureFieldDefinition('index', int),
67106
67108
  'time_index': ConjureFieldDefinition('timeIndex', int)
67107
67109
  }
@@ -68844,7 +68846,7 @@ class timeseries_seriescache_api_S3Handle(ConjureBeanType):
68844
68846
  @builtins.classmethod
68845
68847
  def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
68846
68848
  return {
68847
- 's3_path': ConjureFieldDefinition('s3Path', timeseries_seriescache_api_S3Path)
68849
+ 's3_path': ConjureFieldDefinition('s3Path', api_S3Path)
68848
68850
  }
68849
68851
 
68850
68852
  __slots__: List[str] = ['_s3_path']
@@ -69068,7 +69070,7 @@ Frees storage used by previously uploaded parts and prevents further uploads to
69068
69070
  data=_data)
69069
69071
 
69070
69072
  _decoder = ConjureDecoder()
69071
- return _decoder.decode(_response.json(), ingest_api_S3Path, self._return_none_for_unknown_union_types)
69073
+ return _decoder.decode(_response.json(), api_S3Path, self._return_none_for_unknown_union_types)
69072
69074
 
69073
69075
 
69074
69076
  upload_api_UploadService.__name__ = "UploadService"
@@ -69080,14 +69082,10 @@ api_Label = str
69080
69082
 
69081
69083
  timeseries_archetype_api_SeriesArchetypeName = str
69082
69084
 
69083
- ingest_api_S3Path = str
69084
-
69085
69085
  scout_datasource_connection_api_influx_OrgId = str
69086
69086
 
69087
69087
  api_PropertyValue = str
69088
69088
 
69089
- scout_video_api_S3Path = str
69090
-
69091
69089
  timeseries_logicalseries_api_AttributeName = str
69092
69090
 
69093
69091
  authentication_api_OrgRid = str
@@ -69154,12 +69152,8 @@ api_rids_ChunkRid = str
69154
69152
 
69155
69153
  datasource_Token = str
69156
69154
 
69157
- timeseries_seriescache_api_S3Path = str
69158
-
69159
69155
  scout_chart_api_JsonString = str
69160
69156
 
69161
- attachments_api_S3Path = str
69162
-
69163
69157
  scout_checks_api_JobRid = str
69164
69158
 
69165
69159
  api_rids_VideoRid = str
@@ -69292,6 +69286,8 @@ timeseries_logicalseries_api_SchemaName = str
69292
69286
 
69293
69287
  scout_datasource_connection_api_BucketName = str
69294
69288
 
69289
+ api_S3Path = str
69290
+
69295
69291
  comments_api_ReactionRid = str
69296
69292
 
69297
69293
  scout_versioning_api_CommitId = str
@@ -4,6 +4,8 @@ from .._impl import (
4
4
  api_Channel as Channel,
5
5
  api_Empty as Empty,
6
6
  api_Granularity as Granularity,
7
+ api_Handle as Handle,
8
+ api_HandleVisitor as HandleVisitor,
7
9
  api_Label as Label,
8
10
  api_LogicalSeriesRid as LogicalSeriesRid,
9
11
  api_McapChannelId as McapChannelId,
@@ -13,6 +15,7 @@ from .._impl import (
13
15
  api_Property as Property,
14
16
  api_PropertyName as PropertyName,
15
17
  api_PropertyValue as PropertyValue,
18
+ api_S3Path as S3Path,
16
19
  api_SerializableError as SerializableError,
17
20
  api_SeriesArchetypeRid as SeriesArchetypeRid,
18
21
  api_SeriesDataType as SeriesDataType,
@@ -6,7 +6,6 @@ from .._impl import (
6
6
  attachments_api_CreateAttachmentRequest as CreateAttachmentRequest,
7
7
  attachments_api_GetAttachmentsRequest as GetAttachmentsRequest,
8
8
  attachments_api_GetAttachmentsResponse as GetAttachmentsResponse,
9
- attachments_api_S3Path as S3Path,
10
9
  attachments_api_SearchAttachmentsQuery as SearchAttachmentsQuery,
11
10
  attachments_api_SearchAttachmentsQueryVisitor as SearchAttachmentsQueryVisitor,
12
11
  attachments_api_UpdateAttachmentRequest as UpdateAttachmentRequest,
@@ -81,7 +81,6 @@ from .._impl import (
81
81
  ingest_api_RelativeTimestamp as RelativeTimestamp,
82
82
  ingest_api_RunRid as RunRid,
83
83
  ingest_api_S3IngestSource as S3IngestSource,
84
- ingest_api_S3Path as S3Path,
85
84
  ingest_api_ScaleParameter as ScaleParameter,
86
85
  ingest_api_ScaleParameterVisitor as ScaleParameterVisitor,
87
86
  ingest_api_SignPartResponse as SignPartResponse,
@@ -12,13 +12,10 @@ from .._impl import (
12
12
  scout_video_api_GetSegmentByTimestampRequest as GetSegmentByTimestampRequest,
13
13
  scout_video_api_GetVideosRequest as GetVideosRequest,
14
14
  scout_video_api_GetVideosResponse as GetVideosResponse,
15
- scout_video_api_Handle as Handle,
16
- scout_video_api_HandleVisitor as HandleVisitor,
17
15
  scout_video_api_IngestError as IngestError,
18
16
  scout_video_api_IngestStatus as IngestStatus,
19
17
  scout_video_api_McapTimestampManifest as McapTimestampManifest,
20
18
  scout_video_api_NoTimestampManifest as NoTimestampManifest,
21
- scout_video_api_S3Path as S3Path,
22
19
  scout_video_api_ScaleParameter as ScaleParameter,
23
20
  scout_video_api_ScaleParameterVisitor as ScaleParameterVisitor,
24
21
  scout_video_api_SearchVideosQuery as SearchVideosQuery,
@@ -17,6 +17,5 @@ from .._impl import (
17
17
  timeseries_seriescache_api_HandleVisitor as HandleVisitor,
18
18
  timeseries_seriescache_api_Resolution as Resolution,
19
19
  timeseries_seriescache_api_S3Handle as S3Handle,
20
- timeseries_seriescache_api_S3Path as S3Path,
21
20
  )
22
21
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nominal-api
3
- Version: 0.549.0
3
+ Version: 0.550.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<3,>=2.8.0
@@ -1,9 +1,9 @@
1
- nominal_api/__init__.py,sha256=voCdPksrPBZj3_UBZHIHIjaY5SjEgCPene4y9WOs4zE,1762
2
- nominal_api/_impl.py,sha256=WUA3AN68sL4wOVLPc0K7Uiup6QU-D756eV_8vR3Exak,2676840
1
+ nominal_api/__init__.py,sha256=Jp1WMyu0VlQ2nd8Eg78DQXYyNxrtzASOQP_SwSbk9w4,1762
2
+ nominal_api/_impl.py,sha256=B6vijPi7N5BO7BQfUmabY0f6IuGoAZdb1eKRhz6LEhY,2676416
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
- nominal_api/api/__init__.py,sha256=mncavtSkHRCv-7xIkNkEX_XHnVgTPQwJyD6JDoaKwsQ,830
4
+ nominal_api/api/__init__.py,sha256=LdmCL7HyRNCaqjO6PzLQFgOGNFJWoo_1lXUQ9T5Kxao,922
5
5
  nominal_api/api_rids/__init__.py,sha256=vLyAVUPTfk7u9D_K_7MHE-2Pf8leC5JxC-o8NrrnOPk,337
6
- nominal_api/attachments_api/__init__.py,sha256=v-v2kStsoSipfxj5iBxggnHNNK0bXzcmcOSxEebzCDQ,672
6
+ nominal_api/attachments_api/__init__.py,sha256=eQBE8xVTFDaTItCZv-WJSZqSStpgdai192n23pmVeeQ,634
7
7
  nominal_api/authentication/__init__.py,sha256=Vvna9rXXV-WMeJCk2ekq01jHzgsHHsdJl2ROtd4aRgI,272
8
8
  nominal_api/authentication_api/__init__.py,sha256=HBQrldagoqcvYES_kjB1Eh8oZTZ8SJdX85UZySJB9z0,986
9
9
  nominal_api/authorization/__init__.py,sha256=dCAUHfh4BMgGp4RW0-2b_Xrtfz5BDcljwRVaShKhFI4,972
@@ -14,7 +14,7 @@ nominal_api/datasource_logset/__init__.py,sha256=H3fNxqyYC490MwvdWbt5BwhgWQUev7u
14
14
  nominal_api/datasource_logset_api/__init__.py,sha256=oaCU4hTiUXPnJbivlCUoPPYRw7prpZtxbv-hgUaiOWQ,1048
15
15
  nominal_api/datasource_pagination_api/__init__.py,sha256=3GO8TAUavOe6dUEitOhje74aSZHjTKVI5N1MNuct1lI,212
16
16
  nominal_api/event/__init__.py,sha256=YUhvDFXtyAn08WNd7Xwnybz3PtflvtTcIOaunRS5-1I,836
17
- nominal_api/ingest_api/__init__.py,sha256=l3-A9Sfz8Ye5MRwOHjpFct9g-1eD-WsG2hRUC-52qXM,5629
17
+ nominal_api/ingest_api/__init__.py,sha256=zVmJeMQFK--0BtWsobees7K4R4muKABSpZdPrgX5FRk,5596
18
18
  nominal_api/scout/__init__.py,sha256=ip3XK_9jJKAoFiCifUVMTpDMiUE4mWIdGzMDu7LASus,324
19
19
  nominal_api/scout_api/__init__.py,sha256=1qhOIaeE1BOyulaGr6dd9rSneKMEeqW9aJgz_Wg2qd0,208
20
20
  nominal_api/scout_asset_api/__init__.py,sha256=Ph-KlW-ki0JRejYQZDvbZ2jRzNAttVBux27lcEj7--Q,1910
@@ -51,7 +51,7 @@ nominal_api/scout_template_api/__init__.py,sha256=bsu8qPiZ4gf67G5iFvwsfkqEKJRZ7L
51
51
  nominal_api/scout_units_api/__init__.py,sha256=KxRDScfumX__0ncWJftGvgApn_LBTfnIBAvnaBrcA5A,368
52
52
  nominal_api/scout_versioning_api/__init__.py,sha256=Sf4T4t0rZXNRIZgkqLBN3yh0sAnrxiuzaTfDQVVkyO4,1323
53
53
  nominal_api/scout_video/__init__.py,sha256=yTmMEO1HF-vJq-Q_uuQd34CqvC_EZPVkTKARVQjKNI0,146
54
- nominal_api/scout_video_api/__init__.py,sha256=d0umXwLbeK7BRgfBcr8UrPma_SiWUoINcP0mPAGECtQ,2718
54
+ nominal_api/scout_video_api/__init__.py,sha256=9sGJb3wSGbTxZl2_DJ90y-Xe3vbli2w-3ukTAvNiKAo,2590
55
55
  nominal_api/scout_workbookcommon_api/__init__.py,sha256=yXWeUKKqU_e08ZfkMZ4gKNUVEZSqM7iyyBBhIrw452c,277
56
56
  nominal_api/secrets_api/__init__.py,sha256=V5BpnbNzjdMP8kgvR2N6SEVcVyXi6Vyl_lh_5fKjJzw,736
57
57
  nominal_api/storage_datasource_api/__init__.py,sha256=jh_OZE_b4nBNAvnyenBjw8aGZOnvIXR6qvUKd31fXOk,445
@@ -63,9 +63,9 @@ nominal_api/timeseries_archetype_api/__init__.py,sha256=IREibRlChT9ugCAkeMKm7RiA
63
63
  nominal_api/timeseries_logicalseries/__init__.py,sha256=8EkKiSUli5RbCEf6CPmkiTUOyFcdiNj292eV0WgVbrs,115
64
64
  nominal_api/timeseries_logicalseries_api/__init__.py,sha256=wr83ByQTVVPOGvbB_KWLPn4GqxHOp1zd-Qrf2EZLwsg,3618
65
65
  nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
66
- nominal_api/timeseries_seriescache_api/__init__.py,sha256=YLixotb-W-adYR6t_RBsJDwoHttppkOBesoaXERwhVs,1240
66
+ nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
67
67
  nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
68
- nominal_api-0.549.0.dist-info/METADATA,sha256=LQKO2ymoQW1JjJBcmV9kBOxehQ_258mkQvFjbE2g51I,199
69
- nominal_api-0.549.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
70
- nominal_api-0.549.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
71
- nominal_api-0.549.0.dist-info/RECORD,,
68
+ nominal_api-0.550.0.dist-info/METADATA,sha256=QaGj9P1aWAeLkii43z0XrGAvM4YDMckeoU6qQYtaFqg,199
69
+ nominal_api-0.550.0.dist-info/WHEEL,sha256=In9FTNxeP60KnTkGw7wk6mJPYd_dQSjEZmXdBdMCI-8,91
70
+ nominal_api-0.550.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
71
+ nominal_api-0.550.0.dist-info/RECORD,,