nominal-api 0.889.0__py3-none-any.whl → 0.891.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 +21 -13
- {nominal_api-0.889.0.dist-info → nominal_api-0.891.0.dist-info}/METADATA +1 -1
- {nominal_api-0.889.0.dist-info → nominal_api-0.891.0.dist-info}/RECORD +6 -6
- {nominal_api-0.889.0.dist-info → nominal_api-0.891.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.889.0.dist-info → nominal_api-0.891.0.dist-info}/top_level.txt +0 -0
nominal_api/__init__.py
CHANGED
nominal_api/_impl.py
CHANGED
@@ -76770,7 +76770,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
76770
76770
|
_draft_state: Optional[bool] = None
|
76771
76771
|
_archived: Optional[bool] = None
|
76772
76772
|
_workspace: Optional[str] = None
|
76773
|
-
_author_is_current_user: Optional[
|
76773
|
+
_author_is_current_user: Optional[bool] = None
|
76774
76774
|
_author_rids: Optional[List[str]] = None
|
76775
76775
|
|
76776
76776
|
@builtins.classmethod
|
@@ -76791,7 +76791,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
76791
76791
|
'draft_state': ConjureFieldDefinition('draftState', bool),
|
76792
76792
|
'archived': ConjureFieldDefinition('archived', bool),
|
76793
76793
|
'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
|
76794
|
-
'author_is_current_user': ConjureFieldDefinition('authorIsCurrentUser',
|
76794
|
+
'author_is_current_user': ConjureFieldDefinition('authorIsCurrentUser', bool),
|
76795
76795
|
'author_rids': ConjureFieldDefinition('authorRids', List[scout_rids_api_UserRid])
|
76796
76796
|
}
|
76797
76797
|
|
@@ -76812,7 +76812,7 @@ class scout_notebook_api_SearchNotebooksQuery(ConjureUnionType):
|
|
76812
76812
|
draft_state: Optional[bool] = None,
|
76813
76813
|
archived: Optional[bool] = None,
|
76814
76814
|
workspace: Optional[str] = None,
|
76815
|
-
author_is_current_user: Optional[
|
76815
|
+
author_is_current_user: Optional[bool] = None,
|
76816
76816
|
author_rids: Optional[List[str]] = None,
|
76817
76817
|
type_of_union: Optional[str] = None
|
76818
76818
|
) -> None:
|
@@ -77024,7 +77024,7 @@ To do a partial match, use an "and" on AssetRid queries.
|
|
77024
77024
|
return self._workspace
|
77025
77025
|
|
77026
77026
|
@builtins.property
|
77027
|
-
def author_is_current_user(self) -> Optional[
|
77027
|
+
def author_is_current_user(self) -> Optional[bool]:
|
77028
77028
|
return self._author_is_current_user
|
77029
77029
|
|
77030
77030
|
@builtins.property
|
@@ -77138,7 +77138,7 @@ class scout_notebook_api_SearchNotebooksQueryVisitor:
|
|
77138
77138
|
pass
|
77139
77139
|
|
77140
77140
|
@abstractmethod
|
77141
|
-
def _author_is_current_user(self, author_is_current_user:
|
77141
|
+
def _author_is_current_user(self, author_is_current_user: bool) -> Any:
|
77142
77142
|
pass
|
77143
77143
|
|
77144
77144
|
@abstractmethod
|
@@ -81913,7 +81913,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
81913
81913
|
_is_archived: Optional[bool] = None
|
81914
81914
|
_is_published: Optional[bool] = None
|
81915
81915
|
_workspace: Optional[str] = None
|
81916
|
-
_author_is_current_user: Optional[
|
81916
|
+
_author_is_current_user: Optional[bool] = None
|
81917
81917
|
_author_rids: Optional[List[str]] = None
|
81918
81918
|
|
81919
81919
|
@builtins.classmethod
|
@@ -81930,7 +81930,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
81930
81930
|
'is_archived': ConjureFieldDefinition('isArchived', bool),
|
81931
81931
|
'is_published': ConjureFieldDefinition('isPublished', bool),
|
81932
81932
|
'workspace': ConjureFieldDefinition('workspace', api_rids_WorkspaceRid),
|
81933
|
-
'author_is_current_user': ConjureFieldDefinition('authorIsCurrentUser',
|
81933
|
+
'author_is_current_user': ConjureFieldDefinition('authorIsCurrentUser', bool),
|
81934
81934
|
'author_rids': ConjureFieldDefinition('authorRids', List[scout_rids_api_UserRid])
|
81935
81935
|
}
|
81936
81936
|
|
@@ -81947,7 +81947,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
81947
81947
|
is_archived: Optional[bool] = None,
|
81948
81948
|
is_published: Optional[bool] = None,
|
81949
81949
|
workspace: Optional[str] = None,
|
81950
|
-
author_is_current_user: Optional[
|
81950
|
+
author_is_current_user: Optional[bool] = None,
|
81951
81951
|
author_rids: Optional[List[str]] = None,
|
81952
81952
|
type_of_union: Optional[str] = None
|
81953
81953
|
) -> None:
|
@@ -82110,7 +82110,7 @@ class scout_template_api_SearchTemplatesQuery(ConjureUnionType):
|
|
82110
82110
|
return self._workspace
|
82111
82111
|
|
82112
82112
|
@builtins.property
|
82113
|
-
def author_is_current_user(self) -> Optional[
|
82113
|
+
def author_is_current_user(self) -> Optional[bool]:
|
82114
82114
|
return self._author_is_current_user
|
82115
82115
|
|
82116
82116
|
@builtins.property
|
@@ -82200,7 +82200,7 @@ class scout_template_api_SearchTemplatesQueryVisitor:
|
|
82200
82200
|
pass
|
82201
82201
|
|
82202
82202
|
@abstractmethod
|
82203
|
-
def _author_is_current_user(self, author_is_current_user:
|
82203
|
+
def _author_is_current_user(self, author_is_current_user: bool) -> Any:
|
82204
82204
|
pass
|
82205
82205
|
|
82206
82206
|
@abstractmethod
|
@@ -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=qhJ6hHwFZOCJTx9gwxi-9ZcNnQoNDapZ8ED19YWxd5o,2088
|
2
|
+
nominal_api/_impl.py,sha256=SL6BDMrEbDD_ML4tPyaWowfP74tExXunjGIAi5EnCxc,3770280
|
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.891.0.dist-info/METADATA,sha256=T_Kc7wW74_ME6ozTb1L_hWRCNqn7UoIJqoAyNwgrZa0,199
|
82
|
+
nominal_api-0.891.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
83
|
+
nominal_api-0.891.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
84
|
+
nominal_api-0.891.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|