nominal-api 0.951.0__py3-none-any.whl → 0.951.2__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 +1 -1
- nominal_api/_impl.py +24 -3
- {nominal_api-0.951.0.dist-info → nominal_api-0.951.2.dist-info}/METADATA +1 -1
- {nominal_api-0.951.0.dist-info → nominal_api-0.951.2.dist-info}/RECORD +6 -6
- {nominal_api-0.951.0.dist-info → nominal_api-0.951.2.dist-info}/WHEEL +0 -0
- {nominal_api-0.951.0.dist-info → nominal_api-0.951.2.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
@@ -30297,14 +30297,21 @@ class scout_chartdefinition_api_NumberFormat(ConjureBeanType):
|
|
30297
30297
|
|
30298
30298
|
@builtins.property
|
30299
30299
|
def sig_figs(self) -> Optional[int]:
|
30300
|
+
"""Include the specified number of significant figures, rounding if needed.
|
30301
|
+
"""
|
30300
30302
|
return self._sig_figs
|
30301
30303
|
|
30302
30304
|
@builtins.property
|
30303
30305
|
def display_option(self) -> Optional["scout_chartdefinition_api_NumberFormatDisplayOption"]:
|
30306
|
+
"""The base display format for the number.
|
30307
|
+
"""
|
30304
30308
|
return self._display_option
|
30305
30309
|
|
30306
30310
|
@builtins.property
|
30307
30311
|
def fixed_decimal_places(self) -> Optional[int]:
|
30312
|
+
"""The number of decimal places to display, rounding or padding the number's decimal places as needed.
|
30313
|
+
If this field returns fewer digits than specified in sigFigs, this field will take precedence.
|
30314
|
+
"""
|
30308
30315
|
return self._fixed_decimal_places
|
30309
30316
|
|
30310
30317
|
|
@@ -30315,6 +30322,8 @@ scout_chartdefinition_api_NumberFormat.__module__ = "nominal_api.scout_chartdefi
|
|
30315
30322
|
|
30316
30323
|
class scout_chartdefinition_api_NumberFormatDisplayOption(ConjureEnumType):
|
30317
30324
|
|
30325
|
+
SCIENTIFIC = 'SCIENTIFIC'
|
30326
|
+
'''SCIENTIFIC'''
|
30318
30327
|
SUCCINCT = 'SUCCINCT'
|
30319
30328
|
'''SUCCINCT'''
|
30320
30329
|
LOCALE = 'LOCALE'
|
@@ -32213,12 +32222,14 @@ class scout_chartdefinition_api_ValueAxis(ConjureBeanType):
|
|
32213
32222
|
'range': ConjureFieldDefinition('range', scout_chartdefinition_api_AxisRange),
|
32214
32223
|
'limit': ConjureFieldDefinition('limit', scout_chartdefinition_api_AxisRange),
|
32215
32224
|
'position': ConjureFieldDefinition('position', scout_chartdefinition_api_AxisPosition),
|
32216
|
-
'domain_type': ConjureFieldDefinition('domainType', scout_chartdefinition_api_AxisDomainType)
|
32225
|
+
'domain_type': ConjureFieldDefinition('domainType', scout_chartdefinition_api_AxisDomainType),
|
32226
|
+
'tick_number_format': ConjureFieldDefinition('tickNumberFormat', OptionalTypeWrapper[scout_chartdefinition_api_NumberFormat]),
|
32227
|
+
'tooltip_number_format': ConjureFieldDefinition('tooltipNumberFormat', OptionalTypeWrapper[scout_chartdefinition_api_NumberFormat])
|
32217
32228
|
}
|
32218
32229
|
|
32219
|
-
__slots__: List[str] = ['_id', '_title', '_display_options', '_range', '_limit', '_position', '_domain_type']
|
32230
|
+
__slots__: List[str] = ['_id', '_title', '_display_options', '_range', '_limit', '_position', '_domain_type', '_tick_number_format', '_tooltip_number_format']
|
32220
32231
|
|
32221
|
-
def __init__(self, display_options: "scout_chartdefinition_api_AxisDisplayOptions", domain_type: "scout_chartdefinition_api_AxisDomainType", id: str, limit: "scout_chartdefinition_api_AxisRange", position: "scout_chartdefinition_api_AxisPosition", range: "scout_chartdefinition_api_AxisRange", title: str) -> None:
|
32232
|
+
def __init__(self, display_options: "scout_chartdefinition_api_AxisDisplayOptions", domain_type: "scout_chartdefinition_api_AxisDomainType", id: str, limit: "scout_chartdefinition_api_AxisRange", position: "scout_chartdefinition_api_AxisPosition", range: "scout_chartdefinition_api_AxisRange", title: str, tick_number_format: Optional["scout_chartdefinition_api_NumberFormat"] = None, tooltip_number_format: Optional["scout_chartdefinition_api_NumberFormat"] = None) -> None:
|
32222
32233
|
self._id = id
|
32223
32234
|
self._title = title
|
32224
32235
|
self._display_options = display_options
|
@@ -32226,6 +32237,8 @@ class scout_chartdefinition_api_ValueAxis(ConjureBeanType):
|
|
32226
32237
|
self._limit = limit
|
32227
32238
|
self._position = position
|
32228
32239
|
self._domain_type = domain_type
|
32240
|
+
self._tick_number_format = tick_number_format
|
32241
|
+
self._tooltip_number_format = tooltip_number_format
|
32229
32242
|
|
32230
32243
|
@builtins.property
|
32231
32244
|
def id(self) -> str:
|
@@ -32255,6 +32268,14 @@ class scout_chartdefinition_api_ValueAxis(ConjureBeanType):
|
|
32255
32268
|
def domain_type(self) -> "scout_chartdefinition_api_AxisDomainType":
|
32256
32269
|
return self._domain_type
|
32257
32270
|
|
32271
|
+
@builtins.property
|
32272
|
+
def tick_number_format(self) -> Optional["scout_chartdefinition_api_NumberFormat"]:
|
32273
|
+
return self._tick_number_format
|
32274
|
+
|
32275
|
+
@builtins.property
|
32276
|
+
def tooltip_number_format(self) -> Optional["scout_chartdefinition_api_NumberFormat"]:
|
32277
|
+
return self._tooltip_number_format
|
32278
|
+
|
32258
32279
|
|
32259
32280
|
scout_chartdefinition_api_ValueAxis.__name__ = "ValueAxis"
|
32260
32281
|
scout_chartdefinition_api_ValueAxis.__qualname__ = "ValueAxis"
|
@@ -1,5 +1,5 @@
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
2
|
-
nominal_api/_impl.py,sha256=
|
1
|
+
nominal_api/__init__.py,sha256=LIBIVcFGG9zg10Ys1Ae9Rn7lpFPdfFl9I-O2aDsvcz4,2109
|
2
|
+
nominal_api/_impl.py,sha256=u2JUVZMhIkNyaCphO7rAhtqlPEctdj2aFzgxyU7-KT8,3817519
|
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
|
@@ -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.951.
|
83
|
-
nominal_api-0.951.
|
84
|
-
nominal_api-0.951.
|
85
|
-
nominal_api-0.951.
|
82
|
+
nominal_api-0.951.2.dist-info/METADATA,sha256=2Zwh2QTUrT8yMV6Pv2cUhqQQdZRXnG3zRCv6qsovinU,199
|
83
|
+
nominal_api-0.951.2.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
84
|
+
nominal_api-0.951.2.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
85
|
+
nominal_api-0.951.2.dist-info/RECORD,,
|
File without changes
|
File without changes
|