@neuracore/types 11.4.0 → 11.5.0-main.117.1
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.
- package/dist/neuracore_types.d.ts +22 -1
- package/dist/neuracore_types.js +11 -2
- package/package.json +1 -2
|
@@ -1461,6 +1461,19 @@ export interface PoseData {
|
|
|
1461
1461
|
type: Type15;
|
|
1462
1462
|
pose: unknown[];
|
|
1463
1463
|
}
|
|
1464
|
+
/**
|
|
1465
|
+
* Result when a recording fails a QA check.
|
|
1466
|
+
*/
|
|
1467
|
+
export interface QAFailureResult {
|
|
1468
|
+
passed: false;
|
|
1469
|
+
reason: QAFailureReason;
|
|
1470
|
+
}
|
|
1471
|
+
/**
|
|
1472
|
+
* Result when a recording passes a QA check.
|
|
1473
|
+
*/
|
|
1474
|
+
export interface QAPassResult {
|
|
1475
|
+
passed: true;
|
|
1476
|
+
}
|
|
1464
1477
|
/**
|
|
1465
1478
|
* RGB camera data subclass.
|
|
1466
1479
|
*
|
|
@@ -2207,7 +2220,8 @@ export declare enum Type13 {
|
|
|
2207
2220
|
*/
|
|
2208
2221
|
export declare enum RecordingStatus {
|
|
2209
2222
|
NORMAL = "NORMAL",
|
|
2210
|
-
FLAGGED = "FLAGGED"
|
|
2223
|
+
FLAGGED = "FLAGGED",
|
|
2224
|
+
QA_FLAGGED = "QA_FLAGGED"
|
|
2211
2225
|
}
|
|
2212
2226
|
/**
|
|
2213
2227
|
* Pending recording status.
|
|
@@ -2227,6 +2241,13 @@ export declare enum Type14 {
|
|
|
2227
2241
|
export declare enum Type15 {
|
|
2228
2242
|
PoseData = "PoseData"
|
|
2229
2243
|
}
|
|
2244
|
+
/**
|
|
2245
|
+
* Reasons why a recording can fail QA.
|
|
2246
|
+
*/
|
|
2247
|
+
export declare enum QAFailureReason {
|
|
2248
|
+
LARGE_GAPS = "LARGE_GAPS",
|
|
2249
|
+
INCONSISTENT_START_TIME = "INCONSISTENT_START_TIME"
|
|
2250
|
+
}
|
|
2230
2251
|
export declare enum Type16 {
|
|
2231
2252
|
RGBCameraData = "RGBCameraData"
|
|
2232
2253
|
}
|
package/dist/neuracore_types.js
CHANGED
|
@@ -6,8 +6,8 @@
|
|
|
6
6
|
/* Do not modify it by hand - just update the pydantic models and then re-run the script
|
|
7
7
|
*/
|
|
8
8
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
9
|
-
exports.
|
|
10
|
-
exports.GPUType2 = exports.TrainingJobStatus = exports.RecordingNotificationType = void 0;
|
|
9
|
+
exports.Type16 = exports.QAFailureReason = exports.Type15 = exports.Type14 = exports.PendingRecordingStatus = exports.RecordingStatus = exports.Type13 = exports.VideoFormat = exports.Type12 = exports.Type11 = exports.Type10 = exports.Type9 = exports.Type8 = exports.Type7 = exports.Type6 = exports.MessageType = exports.GPUType1 = exports.EndpointStatus = exports.Type5 = exports.Type4 = exports.Type3 = exports.GPUType = exports.DatasetStatisticsJobStatus = exports.DatasetTypeConfig = exports.Type2 = exports.IntrinsicsConfig = exports.PoseConfig1 = exports.ActionSpaceConfig = exports.ActionTypeConfig = exports.JointPositionInputTypeConfig = exports.VisualJointInputTypeConfig = exports.LanguageConfig = exports.EndEffectorPoseInputTypeConfig = exports.Frame = exports.AngleConfig1 = exports.EulerOrderConfig = exports.QuaternionOrderConfig = exports.RotationConfig = exports.PoseConfig = exports.DistanceUnitsConfig = exports.TorqueUnitsConfig = exports.AngleConfig = exports.ImageChannelOrderConfig = exports.ImageConventionConfig = exports.Type1 = exports.Type = exports.RecordingDataTraceStatus = exports.RobotAvailabilityEventType1 = exports.RobotAvailabilityEventType = exports.DataType = void 0;
|
|
10
|
+
exports.GPUType2 = exports.TrainingJobStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus1 = void 0;
|
|
11
11
|
/**
|
|
12
12
|
* Enumeration of supported data types in the Neuracore system.
|
|
13
13
|
*
|
|
@@ -382,6 +382,7 @@ var RecordingStatus;
|
|
|
382
382
|
(function (RecordingStatus) {
|
|
383
383
|
RecordingStatus["NORMAL"] = "NORMAL";
|
|
384
384
|
RecordingStatus["FLAGGED"] = "FLAGGED";
|
|
385
|
+
RecordingStatus["QA_FLAGGED"] = "QA_FLAGGED";
|
|
385
386
|
})(RecordingStatus || (exports.RecordingStatus = RecordingStatus = {}));
|
|
386
387
|
/**
|
|
387
388
|
* Pending recording status.
|
|
@@ -404,6 +405,14 @@ var Type15;
|
|
|
404
405
|
(function (Type15) {
|
|
405
406
|
Type15["PoseData"] = "PoseData";
|
|
406
407
|
})(Type15 || (exports.Type15 = Type15 = {}));
|
|
408
|
+
/**
|
|
409
|
+
* Reasons why a recording can fail QA.
|
|
410
|
+
*/
|
|
411
|
+
var QAFailureReason;
|
|
412
|
+
(function (QAFailureReason) {
|
|
413
|
+
QAFailureReason["LARGE_GAPS"] = "LARGE_GAPS";
|
|
414
|
+
QAFailureReason["INCONSISTENT_START_TIME"] = "INCONSISTENT_START_TIME";
|
|
415
|
+
})(QAFailureReason || (exports.QAFailureReason = QAFailureReason = {}));
|
|
407
416
|
var Type16;
|
|
408
417
|
(function (Type16) {
|
|
409
418
|
Type16["RGBCameraData"] = "RGBCameraData";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@neuracore/types",
|
|
3
|
-
"version": "11.
|
|
3
|
+
"version": "11.5.0-main.117.1",
|
|
4
4
|
"description": "Shared TypeScript type definitions for Neuracore robotics platform",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -27,7 +27,6 @@
|
|
|
27
27
|
"devDependencies": {
|
|
28
28
|
"typescript": "^5.3.0",
|
|
29
29
|
"grpc-tools": "^1.13.0"
|
|
30
|
-
|
|
31
30
|
},
|
|
32
31
|
"publishConfig": {
|
|
33
32
|
"access": "public"
|