nominal-api 0.832.2__py3-none-any.whl → 0.833.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 +196 -778
- nominal_api/ingest_api/__init__.py +6 -0
- nominal_api/ingest_workflow_api/__init__.py +2 -0
- nominal_api/scout_compute_api/__init__.py +0 -16
- nominal_api/scout_compute_resolved_api/__init__.py +0 -2
- {nominal_api-0.832.2.dist-info → nominal_api-0.833.0.dist-info}/METADATA +1 -1
- {nominal_api-0.832.2.dist-info → nominal_api-0.833.0.dist-info}/RECORD +10 -10
- {nominal_api-0.832.2.dist-info → nominal_api-0.833.0.dist-info}/WHEEL +0 -0
- {nominal_api-0.832.2.dist-info → nominal_api-0.833.0.dist-info}/top_level.txt +0 -0
|
@@ -45,9 +45,11 @@ from .._impl import (
|
|
|
45
45
|
ingest_api_IngestDestinationVisitor as IngestDestinationVisitor,
|
|
46
46
|
ingest_api_IngestDetails as IngestDetails,
|
|
47
47
|
ingest_api_IngestDetailsVisitor as IngestDetailsVisitor,
|
|
48
|
+
ingest_api_IngestJob as IngestJob,
|
|
48
49
|
ingest_api_IngestJobRequest as IngestJobRequest,
|
|
49
50
|
ingest_api_IngestJobRequestVisitor as IngestJobRequestVisitor,
|
|
50
51
|
ingest_api_IngestJobRid as IngestJobRid,
|
|
52
|
+
ingest_api_IngestJobStatus as IngestJobStatus,
|
|
51
53
|
ingest_api_IngestMcapRequest as IngestMcapRequest,
|
|
52
54
|
ingest_api_IngestMcapResponse as IngestMcapResponse,
|
|
53
55
|
ingest_api_IngestMetadata as IngestMetadata,
|
|
@@ -64,6 +66,7 @@ from .._impl import (
|
|
|
64
66
|
ingest_api_IngestSourceMetadata as IngestSourceMetadata,
|
|
65
67
|
ingest_api_IngestSourceVisitor as IngestSourceVisitor,
|
|
66
68
|
ingest_api_IngestStatus as IngestStatus,
|
|
69
|
+
ingest_api_IngestType as IngestType,
|
|
67
70
|
ingest_api_IngestVideoFileDetails as IngestVideoFileDetails,
|
|
68
71
|
ingest_api_IngestVideoRequest as IngestVideoRequest,
|
|
69
72
|
ingest_api_IngestVideoResponse as IngestVideoResponse,
|
|
@@ -176,9 +179,11 @@ __all__ = [
|
|
|
176
179
|
'IngestDestinationVisitor',
|
|
177
180
|
'IngestDetails',
|
|
178
181
|
'IngestDetailsVisitor',
|
|
182
|
+
'IngestJob',
|
|
179
183
|
'IngestJobRequest',
|
|
180
184
|
'IngestJobRequestVisitor',
|
|
181
185
|
'IngestJobRid',
|
|
186
|
+
'IngestJobStatus',
|
|
182
187
|
'IngestMcapRequest',
|
|
183
188
|
'IngestMcapResponse',
|
|
184
189
|
'IngestMetadata',
|
|
@@ -194,6 +199,7 @@ __all__ = [
|
|
|
194
199
|
'IngestSourceVisitor',
|
|
195
200
|
'IngestSourceMetadata',
|
|
196
201
|
'IngestStatus',
|
|
202
|
+
'IngestType',
|
|
197
203
|
'IngestVideoFileDetails',
|
|
198
204
|
'IngestVideoRequest',
|
|
199
205
|
'IngestVideoResponse',
|
|
@@ -15,6 +15,7 @@ from .._impl import (
|
|
|
15
15
|
ingest_workflow_api_GetExtractorJobStateResponse as GetExtractorJobStateResponse,
|
|
16
16
|
ingest_workflow_api_IngestDataflashRequest as IngestDataflashRequest,
|
|
17
17
|
ingest_workflow_api_IngestDataflashResponse as IngestDataflashResponse,
|
|
18
|
+
ingest_workflow_api_IngestInternalService as IngestInternalService,
|
|
18
19
|
ingest_workflow_api_IngestMcapProtobufRequest as IngestMcapProtobufRequest,
|
|
19
20
|
ingest_workflow_api_IngestMcapProtobufResponse as IngestMcapProtobufResponse,
|
|
20
21
|
ingest_workflow_api_McapProtoChannels as McapProtoChannels,
|
|
@@ -55,5 +56,6 @@ __all__ = [
|
|
|
55
56
|
'PresignedUrl',
|
|
56
57
|
'TimeUnitSeconds',
|
|
57
58
|
'ValidatedFileInput',
|
|
59
|
+
'IngestInternalService',
|
|
58
60
|
]
|
|
59
61
|
|
|
@@ -60,8 +60,6 @@ from .._impl import (
|
|
|
60
60
|
scout_compute_api_CompactEnumPoint as CompactEnumPoint,
|
|
61
61
|
scout_compute_api_ComputableNode as ComputableNode,
|
|
62
62
|
scout_compute_api_ComputableNodeVisitor as ComputableNodeVisitor,
|
|
63
|
-
scout_compute_api_ComputeEventQuery as ComputeEventQuery,
|
|
64
|
-
scout_compute_api_ComputeEventQueryVisitor as ComputeEventQueryVisitor,
|
|
65
63
|
scout_compute_api_ComputeNode as ComputeNode,
|
|
66
64
|
scout_compute_api_ComputeNodeFromReferenceRequest as ComputeNodeFromReferenceRequest,
|
|
67
65
|
scout_compute_api_ComputeNodeRequest as ComputeNodeRequest,
|
|
@@ -130,10 +128,6 @@ from .._impl import (
|
|
|
130
128
|
scout_compute_api_ErrorCode as ErrorCode,
|
|
131
129
|
scout_compute_api_ErrorResult as ErrorResult,
|
|
132
130
|
scout_compute_api_ErrorType as ErrorType,
|
|
133
|
-
scout_compute_api_EventDispositionStatus as EventDispositionStatus,
|
|
134
|
-
scout_compute_api_EventTimeFilter as EventTimeFilter,
|
|
135
|
-
scout_compute_api_EventTimeFilterCondition as EventTimeFilterCondition,
|
|
136
|
-
scout_compute_api_EventType as EventType,
|
|
137
131
|
scout_compute_api_EventsSearchRanges as EventsSearchRanges,
|
|
138
132
|
scout_compute_api_ExcludeNegativeValues as ExcludeNegativeValues,
|
|
139
133
|
scout_compute_api_ExponentialCurve as ExponentialCurve,
|
|
@@ -253,7 +247,6 @@ from .._impl import (
|
|
|
253
247
|
scout_compute_api_PowerCurve as PowerCurve,
|
|
254
248
|
scout_compute_api_PowerResultDetails as PowerResultDetails,
|
|
255
249
|
scout_compute_api_ProductSeries as ProductSeries,
|
|
256
|
-
scout_compute_api_Property as Property,
|
|
257
250
|
scout_compute_api_Range as Range,
|
|
258
251
|
scout_compute_api_RangeAggregation as RangeAggregation,
|
|
259
252
|
scout_compute_api_RangeAggregationOperation as RangeAggregationOperation,
|
|
@@ -281,7 +274,6 @@ from .._impl import (
|
|
|
281
274
|
scout_compute_api_ScatterFitOptions as ScatterFitOptions,
|
|
282
275
|
scout_compute_api_ScatterSummarizationStrategy as ScatterSummarizationStrategy,
|
|
283
276
|
scout_compute_api_ScatterSummarizationStrategyVisitor as ScatterSummarizationStrategyVisitor,
|
|
284
|
-
scout_compute_api_SearchEventOriginType as SearchEventOriginType,
|
|
285
277
|
scout_compute_api_SelectIndexFrom1dEnumArraySeries as SelectIndexFrom1dEnumArraySeries,
|
|
286
278
|
scout_compute_api_SelectIndexFrom1dNumericArraySeries as SelectIndexFrom1dNumericArraySeries,
|
|
287
279
|
scout_compute_api_SelectNewestPointsSeries as SelectNewestPointsSeries,
|
|
@@ -412,8 +404,6 @@ __all__ = [
|
|
|
412
404
|
'CompactEnumPoint',
|
|
413
405
|
'ComputableNode',
|
|
414
406
|
'ComputableNodeVisitor',
|
|
415
|
-
'ComputeEventQuery',
|
|
416
|
-
'ComputeEventQueryVisitor',
|
|
417
407
|
'ComputeNode',
|
|
418
408
|
'ComputeNodeVisitor',
|
|
419
409
|
'ComputeNodeFromReferenceRequest',
|
|
@@ -481,10 +471,6 @@ __all__ = [
|
|
|
481
471
|
'ErrorCode',
|
|
482
472
|
'ErrorResult',
|
|
483
473
|
'ErrorType',
|
|
484
|
-
'EventDispositionStatus',
|
|
485
|
-
'EventTimeFilter',
|
|
486
|
-
'EventTimeFilterCondition',
|
|
487
|
-
'EventType',
|
|
488
474
|
'EventsSearchRanges',
|
|
489
475
|
'ExcludeNegativeValues',
|
|
490
476
|
'ExponentialCurve',
|
|
@@ -604,7 +590,6 @@ __all__ = [
|
|
|
604
590
|
'PowerCurve',
|
|
605
591
|
'PowerResultDetails',
|
|
606
592
|
'ProductSeries',
|
|
607
|
-
'Property',
|
|
608
593
|
'Range',
|
|
609
594
|
'RangeAggregation',
|
|
610
595
|
'RangeAggregationOperation',
|
|
@@ -632,7 +617,6 @@ __all__ = [
|
|
|
632
617
|
'ScatterFitOptions',
|
|
633
618
|
'ScatterSummarizationStrategy',
|
|
634
619
|
'ScatterSummarizationStrategyVisitor',
|
|
635
|
-
'SearchEventOriginType',
|
|
636
620
|
'SelectIndexFrom1dEnumArraySeries',
|
|
637
621
|
'SelectIndexFrom1dNumericArraySeries',
|
|
638
622
|
'SelectNewestPointsSeries',
|
|
@@ -41,7 +41,6 @@ from .._impl import (
|
|
|
41
41
|
scout_compute_resolved_api_EnumTimeRangeFilterSeriesNode as EnumTimeRangeFilterSeriesNode,
|
|
42
42
|
scout_compute_resolved_api_EnumTimeShiftSeriesNode as EnumTimeShiftSeriesNode,
|
|
43
43
|
scout_compute_resolved_api_EnumUnionSeriesNode as EnumUnionSeriesNode,
|
|
44
|
-
scout_compute_resolved_api_EventSearchNode as EventSearchNode,
|
|
45
44
|
scout_compute_resolved_api_ExponentialCurve as ExponentialCurve,
|
|
46
45
|
scout_compute_resolved_api_ExtremaRangesNode as ExtremaRangesNode,
|
|
47
46
|
scout_compute_resolved_api_FftNode as FftNode,
|
|
@@ -200,7 +199,6 @@ __all__ = [
|
|
|
200
199
|
'EnumTimeRangeFilterSeriesNode',
|
|
201
200
|
'EnumTimeShiftSeriesNode',
|
|
202
201
|
'EnumUnionSeriesNode',
|
|
203
|
-
'EventSearchNode',
|
|
204
202
|
'ExponentialCurve',
|
|
205
203
|
'ExtremaRangesNode',
|
|
206
204
|
'FftNode',
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
nominal_api/__init__.py,sha256=
|
|
2
|
-
nominal_api/_impl.py,sha256=
|
|
1
|
+
nominal_api/__init__.py,sha256=2KAWoonWOswsDbcRwY8OzelJJuWvaG-Cp9oHz6OTtks,2064
|
|
2
|
+
nominal_api/_impl.py,sha256=8NrOJdc9z5cUkPOUF_WFR4o-oEVS_PBGecuhRlwJJpA,3628305
|
|
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
|
|
@@ -15,8 +15,8 @@ nominal_api/datasource_logset/__init__.py,sha256=SGt5PmLgYpLfhcoESk69aVufuZugg8d
|
|
|
15
15
|
nominal_api/datasource_logset_api/__init__.py,sha256=QydoWxNXCVgIV8HWnZAKA77N5G6mTSqSzGkj36tPe4U,1376
|
|
16
16
|
nominal_api/datasource_pagination_api/__init__.py,sha256=WeENj6yqi2XfInU8YgjFwqwiR8L0jDHCBZfucJ0ahyY,283
|
|
17
17
|
nominal_api/event/__init__.py,sha256=kXgNJmtAyPqinPrDRt-fMG7SD2DhRdyufzwKUpdhVrU,3028
|
|
18
|
-
nominal_api/ingest_api/__init__.py,sha256=
|
|
19
|
-
nominal_api/ingest_workflow_api/__init__.py,sha256=
|
|
18
|
+
nominal_api/ingest_api/__init__.py,sha256=AC96BjSf9nNo8pfwvvGbZXTyTvVuhBVpuyDbhOys6MU,11455
|
|
19
|
+
nominal_api/ingest_workflow_api/__init__.py,sha256=pNfJTaKs2pcnt2p5uRJAOmLia5nx8TiFLk8sSAlSI2I,3055
|
|
20
20
|
nominal_api/module/__init__.py,sha256=IouRrNUGOZ8QafmhhusUQFjJMwqFaqkJoREgvtEcG5E,4855
|
|
21
21
|
nominal_api/module_internal/__init__.py,sha256=8bVJ_pfUQ2ZONdAVEJW6hLNABpf6JvEHGgvrS9XHK98,1128
|
|
22
22
|
nominal_api/modules_api/__init__.py,sha256=686IO0NDXIYDX1mJkE7YBwqYOTayga6JYs1AZzO_lRQ,202
|
|
@@ -33,9 +33,9 @@ nominal_api/scout_checklistexecution_api/__init__.py,sha256=iVeUjPTlbpQ3vlQkQjHr
|
|
|
33
33
|
nominal_api/scout_checks_api/__init__.py,sha256=uCmiNrVwLDlkg8YnpP-uZr9nFFFN52sM644Qo6YNy3k,6972
|
|
34
34
|
nominal_api/scout_comparisonnotebook_api/__init__.py,sha256=F5cQo_KqeTpFwqKBDV-iEjrND7xQgkycC1yocpxq1Qk,6277
|
|
35
35
|
nominal_api/scout_comparisonrun_api/__init__.py,sha256=y5SlDoXvskyTKjg2O8o3cBhGSN-KA7iVlVjyy3vb3Co,652
|
|
36
|
-
nominal_api/scout_compute_api/__init__.py,sha256=
|
|
36
|
+
nominal_api/scout_compute_api/__init__.py,sha256=YJs_eK18EyVeBvbqWomBin-q6kJ3Q3oWoBV6rK5AcbQ,30919
|
|
37
37
|
nominal_api/scout_compute_api_deprecated/__init__.py,sha256=JrZKbt1ulYECTdUSkXn6On22Alu_cPUBjCRWTN3ctxk,5041
|
|
38
|
-
nominal_api/scout_compute_resolved_api/__init__.py,sha256=
|
|
38
|
+
nominal_api/scout_compute_resolved_api/__init__.py,sha256=2t1dsfXgVxsHrI3BUn2geGMVsDctW96FMTYdvmALt_Y,16561
|
|
39
39
|
nominal_api/scout_dataexport_api/__init__.py,sha256=CF2vuo8kUXLJ4B7w95STrU0UMoBGuziacH5Eo3uxYf4,2068
|
|
40
40
|
nominal_api/scout_datareview_api/__init__.py,sha256=ITQR6pdPseU9vS2bKDeleafiBhurtHmcHeKz_6J8Ab8,12229
|
|
41
41
|
nominal_api/scout_datasource/__init__.py,sha256=Z1Msu1Daf8GlLuM3w5imyB-6DhTNZojxI6xpH1sSvhM,141
|
|
@@ -77,7 +77,7 @@ nominal_api/timeseries_logicalseries_api/__init__.py,sha256=BwdqHLq_98LOsRV14JA3
|
|
|
77
77
|
nominal_api/timeseries_seriescache/__init__.py,sha256=hL5hN8jKLEGE_fDiZzdASmWIrRjU6tncpmDeuc_47P4,150
|
|
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
|
-
nominal_api-0.
|
|
81
|
-
nominal_api-0.
|
|
82
|
-
nominal_api-0.
|
|
83
|
-
nominal_api-0.
|
|
80
|
+
nominal_api-0.833.0.dist-info/METADATA,sha256=Ekk2PvjjxUImJgwAo2yyQ0c4pZViRbOeYo0jVVRXxUk,199
|
|
81
|
+
nominal_api-0.833.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
82
|
+
nominal_api-0.833.0.dist-info/top_level.txt,sha256=gI1ZdNJbuHcJZeKtCzzBXsEtpU1GX6XJKs6ksi_gCRA,12
|
|
83
|
+
nominal_api-0.833.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|