nominal-api 0.1048.1__py3-none-any.whl → 0.1056.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 +1 -1
- nominal_api/_impl.py +541 -11
- nominal_api/api/__init__.py +4 -0
- nominal_api/authentication_api/__init__.py +8 -0
- nominal_api/nominal-api.conjure.json +694 -5
- nominal_api/persistent_compute_api/__init__.py +8 -0
- {nominal_api-0.1048.1.dist-info → nominal_api-0.1056.0.dist-info}/METADATA +1 -1
- {nominal_api-0.1048.1.dist-info → nominal_api-0.1056.0.dist-info}/RECORD +10 -10
- {nominal_api-0.1048.1.dist-info → nominal_api-0.1056.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.1048.1.dist-info → nominal_api-0.1056.0.dist-info}/top_level.txt +0 -0
nominal_api/api/__init__.py
CHANGED
|
@@ -5,6 +5,8 @@ from .._impl import (
|
|
|
5
5
|
api_ColumnName as ColumnName,
|
|
6
6
|
api_DataSourceRefName as DataSourceRefName,
|
|
7
7
|
api_DataSourceType as DataSourceType,
|
|
8
|
+
api_Deleted as Deleted,
|
|
9
|
+
api_DeletionInProgress as DeletionInProgress,
|
|
8
10
|
api_Empty as Empty,
|
|
9
11
|
api_ErrorResult as ErrorResult,
|
|
10
12
|
api_ErrorType as ErrorType,
|
|
@@ -47,6 +49,8 @@ __all__ = [
|
|
|
47
49
|
'ColumnName',
|
|
48
50
|
'DataSourceRefName',
|
|
49
51
|
'DataSourceType',
|
|
52
|
+
'Deleted',
|
|
53
|
+
'DeletionInProgress',
|
|
50
54
|
'Empty',
|
|
51
55
|
'ErrorResult',
|
|
52
56
|
'ErrorType',
|
|
@@ -3,9 +3,13 @@ from .._impl import (
|
|
|
3
3
|
authentication_api_AppearanceSetting as AppearanceSetting,
|
|
4
4
|
authentication_api_AuthenticationServiceV2 as AuthenticationServiceV2,
|
|
5
5
|
authentication_api_ChartTooltipModeSetting as ChartTooltipModeSetting,
|
|
6
|
+
authentication_api_CoachmarkDismissal as CoachmarkDismissal,
|
|
6
7
|
authentication_api_DefaultTimeRangeTypeSetting as DefaultTimeRangeTypeSetting,
|
|
8
|
+
authentication_api_DismissCoachmarkRequest as DismissCoachmarkRequest,
|
|
7
9
|
authentication_api_GenerateMediaMtxTokenRequest as GenerateMediaMtxTokenRequest,
|
|
8
10
|
authentication_api_GenerateMediaMtxTokenResponse as GenerateMediaMtxTokenResponse,
|
|
11
|
+
authentication_api_GetCoachmarkDismissalsRequest as GetCoachmarkDismissalsRequest,
|
|
12
|
+
authentication_api_GetCoachmarkDismissalsResponse as GetCoachmarkDismissalsResponse,
|
|
9
13
|
authentication_api_Jwk as Jwk,
|
|
10
14
|
authentication_api_Jwks as Jwks,
|
|
11
15
|
authentication_api_MediaMtxPermission as MediaMtxPermission,
|
|
@@ -27,9 +31,13 @@ from .._impl import (
|
|
|
27
31
|
__all__ = [
|
|
28
32
|
'AppearanceSetting',
|
|
29
33
|
'ChartTooltipModeSetting',
|
|
34
|
+
'CoachmarkDismissal',
|
|
30
35
|
'DefaultTimeRangeTypeSetting',
|
|
36
|
+
'DismissCoachmarkRequest',
|
|
31
37
|
'GenerateMediaMtxTokenRequest',
|
|
32
38
|
'GenerateMediaMtxTokenResponse',
|
|
39
|
+
'GetCoachmarkDismissalsRequest',
|
|
40
|
+
'GetCoachmarkDismissalsResponse',
|
|
33
41
|
'Jwk',
|
|
34
42
|
'Jwks',
|
|
35
43
|
'MediaMtxPermission',
|