@neuracore/types 11.8.0-main.137.1 → 11.8.0

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.
@@ -1418,11 +1418,6 @@ export interface PendingRecording {
1418
1418
  [k: string]: string[];
1419
1419
  };
1420
1420
  deleted: boolean;
1421
- encoding: {
1422
- [k: string]: {
1423
- [k: string]: Codec;
1424
- };
1425
- };
1426
1421
  saved_dataset_id?: string | null;
1427
1422
  status: PendingRecordingStatus;
1428
1423
  progress: number;
@@ -1529,13 +1524,6 @@ export interface RGBCameraData {
1529
1524
  * (recordings/{id}/{data_type}/{sensor}/trace.json) without listing the
1530
1525
  * bucket. Empty for recordings finalized before this field existed.
1531
1526
  * deleted: Whether the recording has been deleted
1532
- * encoding: Codec used per sensor, nested under DataType, captured at
1533
- * finalize. Sensors under the same DataType may hold different
1534
- * codecs (e.g. after a mid-recording encoding change), so each
1535
- * camera's value is preserved rather than collapsed into one.
1536
- * Empty means either no camera data types or a recording
1537
- * predating the field. Non-empty must cover every camera data
1538
- * type present in data_types.
1539
1527
  */
1540
1528
  export interface Recording {
1541
1529
  id: string;
@@ -1553,11 +1541,6 @@ export interface Recording {
1553
1541
  [k: string]: string[];
1554
1542
  };
1555
1543
  deleted: boolean;
1556
- encoding: {
1557
- [k: string]: {
1558
- [k: string]: Codec;
1559
- };
1560
- };
1561
1544
  }
1562
1545
  /**
1563
1546
  * Represents a single data trace belonging to a recording.
@@ -1570,7 +1553,6 @@ export interface RecordingDataTrace {
1570
1553
  recording_id: string;
1571
1554
  data_type: DataType;
1572
1555
  sensor_name: string | null;
1573
- encoding?: Codec | null;
1574
1556
  status: RecordingDataTraceStatus1;
1575
1557
  created_at: number;
1576
1558
  uploaded_at: number | null;
@@ -2286,18 +2268,6 @@ export declare enum QAFailureReason {
2286
2268
  TOO_FEW_POINTS = "TOO_FEW_POINTS",
2287
2269
  LOW_COVERAGE = "LOW_COVERAGE"
2288
2270
  }
2289
- /**
2290
- * Codecs available for recorded camera video.
2291
- *
2292
- * Attributes:
2293
- * H264_LOSSLESS: Default. Lossless archive plus a small lossy preview.
2294
- * H264_MEDIUM: Lossy-only single libx264 CRF 23 video, used for both
2295
- * preview and training.
2296
- */
2297
- export declare enum Codec {
2298
- h264_lossless = "h264_lossless",
2299
- h264_medium = "h264_medium"
2300
- }
2301
2271
  /**
2302
2272
  * Pending recording status.
2303
2273
  *
@@ -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.Type15 = exports.Type14 = exports.PendingRecordingStatus = exports.Codec = exports.QAFailureReason = 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.SynchronizeRecordingStatus1 = exports.SynchronizeRecordingStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus1 = exports.Type16 = void 0;
9
+ exports.Type16 = exports.Type15 = exports.Type14 = exports.PendingRecordingStatus = exports.QAFailureReason = 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.SynchronizeRecordingStatus1 = exports.SynchronizeRecordingStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus1 = void 0;
11
11
  /**
12
12
  * Enumeration of supported data types in the Neuracore system.
13
13
  *
@@ -395,19 +395,6 @@ var QAFailureReason;
395
395
  QAFailureReason["TOO_FEW_POINTS"] = "TOO_FEW_POINTS";
396
396
  QAFailureReason["LOW_COVERAGE"] = "LOW_COVERAGE";
397
397
  })(QAFailureReason || (exports.QAFailureReason = QAFailureReason = {}));
398
- /**
399
- * Codecs available for recorded camera video.
400
- *
401
- * Attributes:
402
- * H264_LOSSLESS: Default. Lossless archive plus a small lossy preview.
403
- * H264_MEDIUM: Lossy-only single libx264 CRF 23 video, used for both
404
- * preview and training.
405
- */
406
- var Codec;
407
- (function (Codec) {
408
- Codec["h264_lossless"] = "h264_lossless";
409
- Codec["h264_medium"] = "h264_medium";
410
- })(Codec || (exports.Codec = Codec = {}));
411
398
  /**
412
399
  * Pending recording status.
413
400
  *
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "11.8.0-main.137.1",
3
+ "version": "11.8.0",
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,6 +27,7 @@
27
27
  "devDependencies": {
28
28
  "typescript": "^5.3.0",
29
29
  "grpc-tools": "^1.13.0"
30
+
30
31
  },
31
32
  "publishConfig": {
32
33
  "access": "public"