nominal-api 0.797.0__py3-none-any.whl → 0.799.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
@@ -78,5 +78,5 @@ __all__ = [
78
78
 
79
79
  __conjure_generator_version__ = "4.17.0"
80
80
 
81
- __version__ = "0.797.0"
81
+ __version__ = "0.799.0"
82
82
 
nominal_api/_impl.py CHANGED
@@ -51581,6 +51581,10 @@ class scout_compute_api_UnitOperation(ConjureEnumType):
51581
51581
  '''SUBTRACTION'''
51582
51582
  UNIT_CONVERSION = 'UNIT_CONVERSION'
51583
51583
  '''UNIT_CONVERSION'''
51584
+ COMPARISON = 'COMPARISON'
51585
+ '''COMPARISON'''
51586
+ TERNARY_OPERATOR = 'TERNARY_OPERATOR'
51587
+ '''TERNARY_OPERATOR'''
51584
51588
  UNKNOWN = 'UNKNOWN'
51585
51589
  '''UNKNOWN'''
51586
51590
 
@@ -63361,6 +63365,104 @@ scout_datareview_api_DataReview.__qualname__ = "DataReview"
63361
63365
  scout_datareview_api_DataReview.__module__ = "nominal_api.scout_datareview_api"
63362
63366
 
63363
63367
 
63368
+ class scout_datareview_api_DataReviewCheckMetricsScope(ConjureUnionType):
63369
+ _run_rid: Optional[str] = None
63370
+ _asset_rid: Optional[str] = None
63371
+ _data_review_rid: Optional[str] = None
63372
+
63373
+ @builtins.classmethod
63374
+ def _options(cls) -> Dict[str, ConjureFieldDefinition]:
63375
+ return {
63376
+ 'run_rid': ConjureFieldDefinition('runRid', scout_run_api_RunRid),
63377
+ 'asset_rid': ConjureFieldDefinition('assetRid', scout_rids_api_AssetRid),
63378
+ 'data_review_rid': ConjureFieldDefinition('dataReviewRid', scout_rids_api_DataReviewRid)
63379
+ }
63380
+
63381
+ def __init__(
63382
+ self,
63383
+ run_rid: Optional[str] = None,
63384
+ asset_rid: Optional[str] = None,
63385
+ data_review_rid: Optional[str] = None,
63386
+ type_of_union: Optional[str] = None
63387
+ ) -> None:
63388
+ if type_of_union is None:
63389
+ if (run_rid is not None) + (asset_rid is not None) + (data_review_rid is not None) != 1:
63390
+ raise ValueError('a union must contain a single member')
63391
+
63392
+ if run_rid is not None:
63393
+ self._run_rid = run_rid
63394
+ self._type = 'runRid'
63395
+ if asset_rid is not None:
63396
+ self._asset_rid = asset_rid
63397
+ self._type = 'assetRid'
63398
+ if data_review_rid is not None:
63399
+ self._data_review_rid = data_review_rid
63400
+ self._type = 'dataReviewRid'
63401
+
63402
+ elif type_of_union == 'runRid':
63403
+ if run_rid is None:
63404
+ raise ValueError('a union value must not be None')
63405
+ self._run_rid = run_rid
63406
+ self._type = 'runRid'
63407
+ elif type_of_union == 'assetRid':
63408
+ if asset_rid is None:
63409
+ raise ValueError('a union value must not be None')
63410
+ self._asset_rid = asset_rid
63411
+ self._type = 'assetRid'
63412
+ elif type_of_union == 'dataReviewRid':
63413
+ if data_review_rid is None:
63414
+ raise ValueError('a union value must not be None')
63415
+ self._data_review_rid = data_review_rid
63416
+ self._type = 'dataReviewRid'
63417
+
63418
+ @builtins.property
63419
+ def run_rid(self) -> Optional[str]:
63420
+ return self._run_rid
63421
+
63422
+ @builtins.property
63423
+ def asset_rid(self) -> Optional[str]:
63424
+ return self._asset_rid
63425
+
63426
+ @builtins.property
63427
+ def data_review_rid(self) -> Optional[str]:
63428
+ return self._data_review_rid
63429
+
63430
+ def accept(self, visitor) -> Any:
63431
+ if not isinstance(visitor, scout_datareview_api_DataReviewCheckMetricsScopeVisitor):
63432
+ raise ValueError('{} is not an instance of scout_datareview_api_DataReviewCheckMetricsScopeVisitor'.format(visitor.__class__.__name__))
63433
+ if self._type == 'runRid' and self.run_rid is not None:
63434
+ return visitor._run_rid(self.run_rid)
63435
+ if self._type == 'assetRid' and self.asset_rid is not None:
63436
+ return visitor._asset_rid(self.asset_rid)
63437
+ if self._type == 'dataReviewRid' and self.data_review_rid is not None:
63438
+ return visitor._data_review_rid(self.data_review_rid)
63439
+
63440
+
63441
+ scout_datareview_api_DataReviewCheckMetricsScope.__name__ = "DataReviewCheckMetricsScope"
63442
+ scout_datareview_api_DataReviewCheckMetricsScope.__qualname__ = "DataReviewCheckMetricsScope"
63443
+ scout_datareview_api_DataReviewCheckMetricsScope.__module__ = "nominal_api.scout_datareview_api"
63444
+
63445
+
63446
+ class scout_datareview_api_DataReviewCheckMetricsScopeVisitor:
63447
+
63448
+ @abstractmethod
63449
+ def _run_rid(self, run_rid: str) -> Any:
63450
+ pass
63451
+
63452
+ @abstractmethod
63453
+ def _asset_rid(self, asset_rid: str) -> Any:
63454
+ pass
63455
+
63456
+ @abstractmethod
63457
+ def _data_review_rid(self, data_review_rid: str) -> Any:
63458
+ pass
63459
+
63460
+
63461
+ scout_datareview_api_DataReviewCheckMetricsScopeVisitor.__name__ = "DataReviewCheckMetricsScopeVisitor"
63462
+ scout_datareview_api_DataReviewCheckMetricsScopeVisitor.__qualname__ = "DataReviewCheckMetricsScopeVisitor"
63463
+ scout_datareview_api_DataReviewCheckMetricsScopeVisitor.__module__ = "nominal_api.scout_datareview_api"
63464
+
63465
+
63364
63466
  class scout_datareview_api_DataReviewPage(ConjureBeanType):
63365
63467
 
63366
63468
  @builtins.classmethod
@@ -64037,6 +64139,36 @@ then none of the actions will be applied.
64037
64139
 
64038
64140
  return
64039
64141
 
64142
+ def get_data_review_check_metrics(self, auth_header: str, request: "scout_datareview_api_GetDataReviewCheckMetricsRequest") -> "scout_datareview_api_GetDataReviewCheckMetricsResponse":
64143
+ _conjure_encoder = ConjureEncoder()
64144
+
64145
+ _headers: Dict[str, Any] = {
64146
+ 'Accept': 'application/json',
64147
+ 'Content-Type': 'application/json',
64148
+ 'Authorization': auth_header,
64149
+ }
64150
+
64151
+ _params: Dict[str, Any] = {
64152
+ }
64153
+
64154
+ _path_params: Dict[str, str] = {
64155
+ }
64156
+
64157
+ _json: Any = _conjure_encoder.default(request)
64158
+
64159
+ _path = '/scout/v2/data-review/data-review-check-metrics'
64160
+ _path = _path.format(**_path_params)
64161
+
64162
+ _response: Response = self._request(
64163
+ 'POST',
64164
+ self._uri + _path,
64165
+ params=_params,
64166
+ headers=_headers,
64167
+ json=_json)
64168
+
64169
+ _decoder = ConjureDecoder()
64170
+ return _decoder.decode(_response.json(), scout_datareview_api_GetDataReviewCheckMetricsResponse, self._return_none_for_unknown_union_types)
64171
+
64040
64172
 
64041
64173
  scout_datareview_api_DataReviewService.__name__ = "DataReviewService"
64042
64174
  scout_datareview_api_DataReviewService.__qualname__ = "DataReviewService"
@@ -64260,6 +64392,154 @@ scout_datareview_api_GeneratedAlertsState.__qualname__ = "GeneratedAlertsState"
64260
64392
  scout_datareview_api_GeneratedAlertsState.__module__ = "nominal_api.scout_datareview_api"
64261
64393
 
64262
64394
 
64395
+ class scout_datareview_api_GetDataReviewCheckMetricsRequest(ConjureBeanType):
64396
+
64397
+ @builtins.classmethod
64398
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
64399
+ return {
64400
+ 'scope': ConjureFieldDefinition('scope', scout_datareview_api_DataReviewCheckMetricsScope)
64401
+ }
64402
+
64403
+ __slots__: List[str] = ['_scope']
64404
+
64405
+ def __init__(self, scope: "scout_datareview_api_DataReviewCheckMetricsScope") -> None:
64406
+ self._scope = scope
64407
+
64408
+ @builtins.property
64409
+ def scope(self) -> "scout_datareview_api_DataReviewCheckMetricsScope":
64410
+ return self._scope
64411
+
64412
+
64413
+ scout_datareview_api_GetDataReviewCheckMetricsRequest.__name__ = "GetDataReviewCheckMetricsRequest"
64414
+ scout_datareview_api_GetDataReviewCheckMetricsRequest.__qualname__ = "GetDataReviewCheckMetricsRequest"
64415
+ scout_datareview_api_GetDataReviewCheckMetricsRequest.__module__ = "nominal_api.scout_datareview_api"
64416
+
64417
+
64418
+ class scout_datareview_api_GetDataReviewCheckMetricsResponse(ConjureBeanType):
64419
+
64420
+ @builtins.classmethod
64421
+ def _fields(cls) -> Dict[str, ConjureFieldDefinition]:
64422
+ return {
64423
+ 'checks_pending_execution': ConjureFieldDefinition('checksPendingExecution', int),
64424
+ 'checks_executing': ConjureFieldDefinition('checksExecuting', int),
64425
+ 'checks_passed': ConjureFieldDefinition('checksPassed', int),
64426
+ 'checks_with_events_pending_review': ConjureFieldDefinition('checksWithEventsPendingReview', int),
64427
+ 'checks_with_events_closed_with_ignore': ConjureFieldDefinition('checksWithEventsClosedWithIgnore', int),
64428
+ 'checks_with_events_closed_with_further_action': ConjureFieldDefinition('checksWithEventsClosedWithFurtherAction', int),
64429
+ 'checks_with_events': ConjureFieldDefinition('checksWithEvents', int),
64430
+ 'checks_with_too_many_events': ConjureFieldDefinition('checksWithTooManyEvents', int),
64431
+ 'checks_failed_to_execute_pending_review': ConjureFieldDefinition('checksFailedToExecutePendingReview', int),
64432
+ 'checks_failed_to_execute_closed_with_ignore': ConjureFieldDefinition('checksFailedToExecuteClosedWithIgnore', int),
64433
+ 'checks_failed_to_execute_closed_with_further_action': ConjureFieldDefinition('checksFailedToExecuteClosedWithFurtherAction', int),
64434
+ 'checks_failed_to_execute': ConjureFieldDefinition('checksFailedToExecute', int),
64435
+ 'checks_executed': ConjureFieldDefinition('checksExecuted', int),
64436
+ 'checks_total': ConjureFieldDefinition('checksTotal', int),
64437
+ 'events_pending_review': ConjureFieldDefinition('eventsPendingReview', int),
64438
+ 'events_closed_with_ignore': ConjureFieldDefinition('eventsClosedWithIgnore', int),
64439
+ 'events_closed_with_further_action': ConjureFieldDefinition('eventsClosedWithFurtherAction', int),
64440
+ 'events_total': ConjureFieldDefinition('eventsTotal', int)
64441
+ }
64442
+
64443
+ __slots__: List[str] = ['_checks_pending_execution', '_checks_executing', '_checks_passed', '_checks_with_events_pending_review', '_checks_with_events_closed_with_ignore', '_checks_with_events_closed_with_further_action', '_checks_with_events', '_checks_with_too_many_events', '_checks_failed_to_execute_pending_review', '_checks_failed_to_execute_closed_with_ignore', '_checks_failed_to_execute_closed_with_further_action', '_checks_failed_to_execute', '_checks_executed', '_checks_total', '_events_pending_review', '_events_closed_with_ignore', '_events_closed_with_further_action', '_events_total']
64444
+
64445
+ def __init__(self, checks_executed: int, checks_executing: int, checks_failed_to_execute: int, checks_failed_to_execute_closed_with_further_action: int, checks_failed_to_execute_closed_with_ignore: int, checks_failed_to_execute_pending_review: int, checks_passed: int, checks_pending_execution: int, checks_total: int, checks_with_events: int, checks_with_events_closed_with_further_action: int, checks_with_events_closed_with_ignore: int, checks_with_events_pending_review: int, checks_with_too_many_events: int, events_closed_with_further_action: int, events_closed_with_ignore: int, events_pending_review: int, events_total: int) -> None:
64446
+ self._checks_pending_execution = checks_pending_execution
64447
+ self._checks_executing = checks_executing
64448
+ self._checks_passed = checks_passed
64449
+ self._checks_with_events_pending_review = checks_with_events_pending_review
64450
+ self._checks_with_events_closed_with_ignore = checks_with_events_closed_with_ignore
64451
+ self._checks_with_events_closed_with_further_action = checks_with_events_closed_with_further_action
64452
+ self._checks_with_events = checks_with_events
64453
+ self._checks_with_too_many_events = checks_with_too_many_events
64454
+ self._checks_failed_to_execute_pending_review = checks_failed_to_execute_pending_review
64455
+ self._checks_failed_to_execute_closed_with_ignore = checks_failed_to_execute_closed_with_ignore
64456
+ self._checks_failed_to_execute_closed_with_further_action = checks_failed_to_execute_closed_with_further_action
64457
+ self._checks_failed_to_execute = checks_failed_to_execute
64458
+ self._checks_executed = checks_executed
64459
+ self._checks_total = checks_total
64460
+ self._events_pending_review = events_pending_review
64461
+ self._events_closed_with_ignore = events_closed_with_ignore
64462
+ self._events_closed_with_further_action = events_closed_with_further_action
64463
+ self._events_total = events_total
64464
+
64465
+ @builtins.property
64466
+ def checks_pending_execution(self) -> int:
64467
+ return self._checks_pending_execution
64468
+
64469
+ @builtins.property
64470
+ def checks_executing(self) -> int:
64471
+ return self._checks_executing
64472
+
64473
+ @builtins.property
64474
+ def checks_passed(self) -> int:
64475
+ return self._checks_passed
64476
+
64477
+ @builtins.property
64478
+ def checks_with_events_pending_review(self) -> int:
64479
+ return self._checks_with_events_pending_review
64480
+
64481
+ @builtins.property
64482
+ def checks_with_events_closed_with_ignore(self) -> int:
64483
+ return self._checks_with_events_closed_with_ignore
64484
+
64485
+ @builtins.property
64486
+ def checks_with_events_closed_with_further_action(self) -> int:
64487
+ return self._checks_with_events_closed_with_further_action
64488
+
64489
+ @builtins.property
64490
+ def checks_with_events(self) -> int:
64491
+ return self._checks_with_events
64492
+
64493
+ @builtins.property
64494
+ def checks_with_too_many_events(self) -> int:
64495
+ return self._checks_with_too_many_events
64496
+
64497
+ @builtins.property
64498
+ def checks_failed_to_execute_pending_review(self) -> int:
64499
+ return self._checks_failed_to_execute_pending_review
64500
+
64501
+ @builtins.property
64502
+ def checks_failed_to_execute_closed_with_ignore(self) -> int:
64503
+ return self._checks_failed_to_execute_closed_with_ignore
64504
+
64505
+ @builtins.property
64506
+ def checks_failed_to_execute_closed_with_further_action(self) -> int:
64507
+ return self._checks_failed_to_execute_closed_with_further_action
64508
+
64509
+ @builtins.property
64510
+ def checks_failed_to_execute(self) -> int:
64511
+ return self._checks_failed_to_execute
64512
+
64513
+ @builtins.property
64514
+ def checks_executed(self) -> int:
64515
+ return self._checks_executed
64516
+
64517
+ @builtins.property
64518
+ def checks_total(self) -> int:
64519
+ return self._checks_total
64520
+
64521
+ @builtins.property
64522
+ def events_pending_review(self) -> int:
64523
+ return self._events_pending_review
64524
+
64525
+ @builtins.property
64526
+ def events_closed_with_ignore(self) -> int:
64527
+ return self._events_closed_with_ignore
64528
+
64529
+ @builtins.property
64530
+ def events_closed_with_further_action(self) -> int:
64531
+ return self._events_closed_with_further_action
64532
+
64533
+ @builtins.property
64534
+ def events_total(self) -> int:
64535
+ return self._events_total
64536
+
64537
+
64538
+ scout_datareview_api_GetDataReviewCheckMetricsResponse.__name__ = "GetDataReviewCheckMetricsResponse"
64539
+ scout_datareview_api_GetDataReviewCheckMetricsResponse.__qualname__ = "GetDataReviewCheckMetricsResponse"
64540
+ scout_datareview_api_GetDataReviewCheckMetricsResponse.__module__ = "nominal_api.scout_datareview_api"
64541
+
64542
+
64263
64543
  class scout_datareview_api_HistogramBucket(ConjureBeanType):
64264
64544
 
64265
64545
  @builtins.classmethod
@@ -71464,6 +71744,10 @@ class scout_metadata_ResourceType(ConjureEnumType):
71464
71744
  '''DATASET'''
71465
71745
  MODULE = 'MODULE'
71466
71746
  '''MODULE'''
71747
+ PROCEDURE_EXECUTION = 'PROCEDURE_EXECUTION'
71748
+ '''PROCEDURE_EXECUTION'''
71749
+ PROCEDURE = 'PROCEDURE'
71750
+ '''PROCEDURE'''
71467
71751
  UNKNOWN = 'UNKNOWN'
71468
71752
  '''UNKNOWN'''
71469
71753
 
@@ -51,6 +51,8 @@ from .._impl import (
51
51
  scout_datareview_api_ClosedWithFurtherActionState as ClosedWithFurtherActionState,
52
52
  scout_datareview_api_CreateDataReviewRequest as CreateDataReviewRequest,
53
53
  scout_datareview_api_DataReview as DataReview,
54
+ scout_datareview_api_DataReviewCheckMetricsScope as DataReviewCheckMetricsScope,
55
+ scout_datareview_api_DataReviewCheckMetricsScopeVisitor as DataReviewCheckMetricsScopeVisitor,
54
56
  scout_datareview_api_DataReviewPage as DataReviewPage,
55
57
  scout_datareview_api_DataReviewService as DataReviewService,
56
58
  scout_datareview_api_DuplicateAndLinkNotebook as DuplicateAndLinkNotebook,
@@ -59,6 +61,8 @@ from .._impl import (
59
61
  scout_datareview_api_FailedToExecuteState as FailedToExecuteState,
60
62
  scout_datareview_api_FindDataReviewsRequest as FindDataReviewsRequest,
61
63
  scout_datareview_api_GeneratedAlertsState as GeneratedAlertsState,
64
+ scout_datareview_api_GetDataReviewCheckMetricsRequest as GetDataReviewCheckMetricsRequest,
65
+ scout_datareview_api_GetDataReviewCheckMetricsResponse as GetDataReviewCheckMetricsResponse,
62
66
  scout_datareview_api_HistogramBucket as HistogramBucket,
63
67
  scout_datareview_api_HistogramDistributionVariable as HistogramDistributionVariable,
64
68
  scout_datareview_api_HistogramDistributionVariableVisitor as HistogramDistributionVariableVisitor,
@@ -158,6 +162,8 @@ __all__ = [
158
162
  'ClosedWithFurtherActionState',
159
163
  'CreateDataReviewRequest',
160
164
  'DataReview',
165
+ 'DataReviewCheckMetricsScope',
166
+ 'DataReviewCheckMetricsScopeVisitor',
161
167
  'DataReviewPage',
162
168
  'DuplicateAndLinkNotebook',
163
169
  'ExecutingState',
@@ -165,6 +171,8 @@ __all__ = [
165
171
  'FailedToExecuteState',
166
172
  'FindDataReviewsRequest',
167
173
  'GeneratedAlertsState',
174
+ 'GetDataReviewCheckMetricsRequest',
175
+ 'GetDataReviewCheckMetricsResponse',
168
176
  'HistogramBucket',
169
177
  'HistogramDistributionVariable',
170
178
  'HistogramDistributionVariableVisitor',
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: nominal-api
3
- Version: 0.797.0
3
+ Version: 0.799.0
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<4,>=2.8.0
@@ -1,5 +1,5 @@
1
- nominal_api/__init__.py,sha256=na80ax1mFjKvc24LnT6vQLmy4Qmr0A82hqLVtZxHKPE,2012
2
- nominal_api/_impl.py,sha256=iQye5X0dZD-FObQmoENgGEK5fHaXWyIMTQmX-VswTuw,3471817
1
+ nominal_api/__init__.py,sha256=7s_r2pNxW1YnwcyzykTjN7y3Ae4GMOWhbckwStcbz1o,2012
2
+ nominal_api/_impl.py,sha256=DoPwgFoR8k_0x6Z7YvUKuxSWR3fzjzqiTywpDnF1Zgs,3485042
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=PMREKP7UhxJ1_gHkrlJET46qlDHksKMm6-woR1p6WnU,1970
5
5
  nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
@@ -37,7 +37,7 @@ nominal_api/scout_compute_api/__init__.py,sha256=UkZrC3WZu27mxPq7NH9RDlulaNfRf39
37
37
  nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
38
38
  nominal_api/scout_compute_resolved_api/__init__.py,sha256=2t1dsfXgVxsHrI3BUn2geGMVsDctW96FMTYdvmALt_Y,16561
39
39
  nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
40
- nominal_api/scout_datareview_api/__init__.py,sha256=kTDvcuav5bBm3IPhvmDrBTYyVD26iQVkyzdZnu75omE,11695
40
+ nominal_api/scout_datareview_api/__init__.py,sha256=ITQR6pdPseU9vS2bKDeleafiBhurtHmcHeKz_6J8Ab8,12229
41
41
  nominal_api/scout_datasource/__init__.py,sha256=Z1Msu1Daf8GlLuM3w5imyB-6DhTNZojxI6xpH1sSvhM,141
42
42
  nominal_api/scout_datasource_connection/__init__.py,sha256=vT-OJYR5a--THheuxH1T1n553ZHp8pwsWBVzB7qvuKs,285
43
43
  nominal_api/scout_datasource_connection_api/__init__.py,sha256=qsgop-L20mSfE0yxlgtqPkcj_S-AJLm9V-75jqdASFQ,6717
@@ -75,7 +75,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
75
75
  nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
76
76
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
77
77
  nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
78
- nominal_api-0.797.0.dist-info/METADATA,sha256=H_cjpad0hFE_qclpywJ5hnE0Spmoriegd2WQCDg_6kY,199
79
- nominal_api-0.797.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
- nominal_api-0.797.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
81
- nominal_api-0.797.0.dist-info/RECORD,,
78
+ nominal_api-0.799.0.dist-info/METADATA,sha256=iKFpsrZ7VKL1-wxQ5o505k-AkqcIlHRWpqZK5a3IPIg,199
79
+ nominal_api-0.799.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
80
+ nominal_api-0.799.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
81
+ nominal_api-0.799.0.dist-info/RECORD,,