nominal-api 0.888.1__py3-none-any.whl → 0.890.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 +1 -1
- nominal_api/_impl.py +11 -3
- {nominal_api-0.888.1.dist-info → nominal_api-0.890.0.dist-info}/METADATA +1 -1
- {nominal_api-0.888.1.dist-info → nominal_api-0.890.0.dist-info}/RECORD +6 -6
- {nominal_api-0.888.1.dist-info → nominal_api-0.890.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.888.1.dist-info → nominal_api-0.890.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
@@ -91147,16 +91147,18 @@ class themes_api_TimeSeriesChartThemeV1(ConjureBeanType):
|
|
91147
91147
|
'x_axis_tick_font_size': ConjureFieldDefinition('xAxisTickFontSize', int),
|
91148
91148
|
'x_axis_tick_font_color': ConjureFieldDefinition('xAxisTickFontColor', themes_api_HexColor),
|
91149
91149
|
'y_axis_title_font_size': ConjureFieldDefinition('yAxisTitleFontSize', int),
|
91150
|
-
'y_axis_tick_font_size': ConjureFieldDefinition('yAxisTickFontSize', int)
|
91150
|
+
'y_axis_tick_font_size': ConjureFieldDefinition('yAxisTickFontSize', int),
|
91151
|
+
'threshold_line_width': ConjureFieldDefinition('thresholdLineWidth', OptionalTypeWrapper[int])
|
91151
91152
|
}
|
91152
91153
|
|
91153
|
-
__slots__: List[str] = ['_x_axis_tick_font_size', '_x_axis_tick_font_color', '_y_axis_title_font_size', '_y_axis_tick_font_size']
|
91154
|
+
__slots__: List[str] = ['_x_axis_tick_font_size', '_x_axis_tick_font_color', '_y_axis_title_font_size', '_y_axis_tick_font_size', '_threshold_line_width']
|
91154
91155
|
|
91155
|
-
def __init__(self, x_axis_tick_font_color: str, x_axis_tick_font_size: int, y_axis_tick_font_size: int, y_axis_title_font_size: int) -> None:
|
91156
|
+
def __init__(self, x_axis_tick_font_color: str, x_axis_tick_font_size: int, y_axis_tick_font_size: int, y_axis_title_font_size: int, threshold_line_width: Optional[int] = None) -> None:
|
91156
91157
|
self._x_axis_tick_font_size = x_axis_tick_font_size
|
91157
91158
|
self._x_axis_tick_font_color = x_axis_tick_font_color
|
91158
91159
|
self._y_axis_title_font_size = y_axis_title_font_size
|
91159
91160
|
self._y_axis_tick_font_size = y_axis_tick_font_size
|
91161
|
+
self._threshold_line_width = threshold_line_width
|
91160
91162
|
|
91161
91163
|
@builtins.property
|
91162
91164
|
def x_axis_tick_font_size(self) -> int:
|
@@ -91182,6 +91184,12 @@ class themes_api_TimeSeriesChartThemeV1(ConjureBeanType):
|
|
91182
91184
|
"""
|
91183
91185
|
return self._y_axis_tick_font_size
|
91184
91186
|
|
91187
|
+
@builtins.property
|
91188
|
+
def threshold_line_width(self) -> Optional[int]:
|
91189
|
+
"""The line thickness in px of the threshold line.
|
91190
|
+
"""
|
91191
|
+
return self._threshold_line_width
|
91192
|
+
|
91185
91193
|
|
91186
91194
|
themes_api_TimeSeriesChartThemeV1.__name__ = "TimeSeriesChartThemeV1"
|
91187
91195
|
themes_api_TimeSeriesChartThemeV1.__qualname__ = "TimeSeriesChartThemeV1"
|
@@ -1,5 +1,5 @@
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
2
|
-
nominal_api/_impl.py,sha256=
|
1
|
+
nominal_api/__init__.py,sha256=DnVfyWh-dY-vYb1N_2TTX05wHu596AvPbMYs_CWNI9k,2088
|
2
|
+
nominal_api/_impl.py,sha256=BjEP4Nyb1aHAMcBQ_n8H7hcLjltJ9_cFwaxuAcDk0gA,3770346
|
3
3
|
nominal_api/py.typed,sha256=eoZ6GfifbqhMLNzjlqRDVil-yyBkOmVN9ujSgJWNBlY,15
|
4
4
|
nominal_api/api/__init__.py,sha256=ZiGjcYwIBCrZR5pPqyqX2ggRJmVcSlOCazMtF2xCZzw,2171
|
5
5
|
nominal_api/api_ids/__init__.py,sha256=sxqN5dMk6bOx0SKOd0ANG3_kmx1VtdSVotzEGn_q6sE,114
|
@@ -78,7 +78,7 @@ nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrR
|
|
78
78
|
nominal_api/timeseries_seriescache_api/__init__.py,sha256=USBxFmNnVFdnhTPLvWi3UgsvBZ4Iz4ycNgBTi10F-zI,1603
|
79
79
|
nominal_api/upload_api/__init__.py,sha256=7-XXuZUqKPV4AMWvxNpZPZ5vBun4x-AomXj3Vol_BN4,123
|
80
80
|
nominal_api/usercreation_api/__init__.py,sha256=Q6M70SlKFVfIxZqRohD4XYmBz5t2DP1DB0a0Q6glqGA,171
|
81
|
-
nominal_api-0.
|
82
|
-
nominal_api-0.
|
83
|
-
nominal_api-0.
|
84
|
-
nominal_api-0.
|
81
|
+
nominal_api-0.890.0.dist-info/METADATA,sha256=bZWXLcb-WLmDCJDu1AaXYhyx23WdXRNslelyuxdjkXI,199
|
82
|
+
nominal_api-0.890.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
83
|
+
nominal_api-0.890.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
84
|
+
nominal_api-0.890.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|