nominal-api 0.571.0__py3-none-any.whl → 0.572.1__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
@@ -70,5 +70,5 @@ __all__ = [
70
70
 
71
71
  __conjure_generator_version__ = "4.9.0"
72
72
 
73
- __version__ = "0.571.0"
73
+ __version__ = "0.572.1"
74
74
 
nominal_api/_impl.py CHANGED
@@ -15063,12 +15063,13 @@ class scout_catalog_Dataset(ConjureBeanType):
15063
15063
  'bounds': ConjureFieldDefinition('bounds', OptionalTypeWrapper[scout_catalog_Bounds]),
15064
15064
  'properties': ConjureFieldDefinition('properties', Dict[api_PropertyName, api_PropertyValue]),
15065
15065
  'labels': ConjureFieldDefinition('labels', List[api_Label]),
15066
- 'timestamp_type': ConjureFieldDefinition('timestampType', scout_catalog_WeakTimestampType)
15066
+ 'timestamp_type': ConjureFieldDefinition('timestampType', scout_catalog_WeakTimestampType),
15067
+ 'allow_streaming': ConjureFieldDefinition('allowStreaming', bool)
15067
15068
  }
15068
15069
 
15069
- __slots__: List[str] = ['_rid', '_name', '_handle', '_description', '_origin_metadata', '_bounds', '_properties', '_labels', '_timestamp_type']
15070
+ __slots__: List[str] = ['_rid', '_name', '_handle', '_description', '_origin_metadata', '_bounds', '_properties', '_labels', '_timestamp_type', '_allow_streaming']
15070
15071
 
15071
- def __init__(self, labels: List[str], name: str, origin_metadata: "scout_catalog_DatasetOriginMetadata", properties: Dict[str, str], rid: str, timestamp_type: "scout_catalog_WeakTimestampType", bounds: Optional["scout_catalog_Bounds"] = None, description: Optional[str] = None, handle: Optional["scout_catalog_Handle"] = None) -> None:
15072
+ def __init__(self, allow_streaming: bool, labels: List[str], name: str, origin_metadata: "scout_catalog_DatasetOriginMetadata", properties: Dict[str, str], rid: str, timestamp_type: "scout_catalog_WeakTimestampType", bounds: Optional["scout_catalog_Bounds"] = None, description: Optional[str] = None, handle: Optional["scout_catalog_Handle"] = None) -> None:
15072
15073
  self._rid = rid
15073
15074
  self._name = name
15074
15075
  self._handle = handle
@@ -15078,6 +15079,7 @@ class scout_catalog_Dataset(ConjureBeanType):
15078
15079
  self._properties = properties
15079
15080
  self._labels = labels
15080
15081
  self._timestamp_type = timestamp_type
15082
+ self._allow_streaming = allow_streaming
15081
15083
 
15082
15084
  @builtins.property
15083
15085
  def rid(self) -> str:
@@ -15115,6 +15117,10 @@ class scout_catalog_Dataset(ConjureBeanType):
15115
15117
  def timestamp_type(self) -> "scout_catalog_WeakTimestampType":
15116
15118
  return self._timestamp_type
15117
15119
 
15120
+ @builtins.property
15121
+ def allow_streaming(self) -> bool:
15122
+ return self._allow_streaming
15123
+
15118
15124
 
15119
15125
  scout_catalog_Dataset.__name__ = "Dataset"
15120
15126
  scout_catalog_Dataset.__qualname__ = "Dataset"
@@ -38695,6 +38701,8 @@ class scout_compute_api_UnaryArithmeticOperation(ConjureEnumType):
38695
38701
  '''LOG'''
38696
38702
  LN = 'LN'
38697
38703
  '''LN'''
38704
+ SQRT = 'SQRT'
38705
+ '''SQRT'''
38698
38706
  UNKNOWN = 'UNKNOWN'
38699
38707
  '''UNKNOWN'''
38700
38708
 
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.2
2
2
  Name: nominal-api
3
- Version: 0.571.0
3
+ Version: 0.572.1
4
4
  Requires-Python: >=3.8
5
5
  Requires-Dist: requests
6
6
  Requires-Dist: conjure-python-client<3,>=2.8.0
@@ -1,5 +1,5 @@
1
- nominal_api/__init__.py,sha256=acep2BwCp-3yYQnYdCFWELpzkQyUov-ngNwbyxkNq8Q,1823
2
- nominal_api/_impl.py,sha256=T2aMV_ZvPAVewNOeikOpbo8tmFytoSSrKMuR540IT1I,2796554
1
+ nominal_api/__init__.py,sha256=GN1R7hvL8p57x3LXRhMzGgBB6wSmx2J_Syq8sd9-em8,1823
2
+ nominal_api/_impl.py,sha256=2IHz9LHhQj8u1iolBxMU8SEN2upgkuW0a7UHzz1r1P8,2796857
3
3
  nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
4
4
  nominal_api/api/__init__.py,sha256=kJBEE_HLVpKYdLH12KyO-cSAVzwxYpBwaaDutCtT-LM,1236
5
5
  nominal_api/api_rids/__init__.py,sha256=Bu-pKUh3aS9_f5m-DZf6W_BUlVo9qYE7EDvaT-rvWQ0,423
@@ -67,7 +67,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=7NlQhIzOKOcjwMNUI89f
67
67
  nominal_api/timeseries_seriescache/__init__.py,sha256=tFCkNuyrVMgtj-HIl1pOYPJHaL2VikI4C_x97bX_Lcs,109
68
68
  nominal_api/timeseries_seriescache_api/__init__.py,sha256=U9EhlqdF9qzD1O9al0vcvcdgS_C5lq-lN3Kmr0K3g84,1191
69
69
  nominal_api/upload_api/__init__.py,sha256=ZMudWMSqCrNozohbHaJKuxJnT9Edepe7nxxXMz_pT9k,87
70
- nominal_api-0.571.0.dist-info/METADATA,sha256=dmGfOYgNG-FwJGzDUFFUmEKVWEb_2-QTplNbin6b6SE,199
71
- nominal_api-0.571.0.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
72
- nominal_api-0.571.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
73
- nominal_api-0.571.0.dist-info/RECORD,,
70
+ nominal_api-0.572.1.dist-info/METADATA,sha256=Zgfst7y7WjaK8Ps4TXRhaUUHInPZPE-wYEF7-hduHLU,199
71
+ nominal_api-0.572.1.dist-info/WHEEL,sha256=jB7zZ3N9hIM9adW7qlTAyycLYW9npaWKLRzaoVcLKcM,91
72
+ nominal_api-0.572.1.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
73
+ nominal_api-0.572.1.dist-info/RECORD,,