@neuracore/types 11.5.0 → 11.6.0-main.126.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.
@@ -1620,6 +1620,16 @@ export interface SynchronizeDatasetRequest {
1620
1620
  dataset_id: string;
1621
1621
  synchronization_details: SynchronizationDetails;
1622
1622
  }
1623
+ /**
1624
+ * Current preparation state returned by the polling endpoint.
1625
+ */
1626
+ export interface SynchronizeRecordingProgress {
1627
+ recording_id: string;
1628
+ synchronize_recording_id: string;
1629
+ status: SynchronizeRecordingStatus;
1630
+ download_url?: string | null;
1631
+ error?: string | null;
1632
+ }
1623
1633
  /**
1624
1634
  * Request model for synchronizing a recording.
1625
1635
  *
@@ -1631,6 +1641,14 @@ export interface SynchronizeRecordingRequest {
1631
1641
  recording_id: string;
1632
1642
  synchronization_details: SynchronizationDetails;
1633
1643
  }
1644
+ /**
1645
+ * Tracking information returned when recording synchronization starts.
1646
+ */
1647
+ export interface SynchronizeRecordingStartResponse {
1648
+ recording_id: string;
1649
+ synchronized_recording_id: string;
1650
+ status?: SynchronizeRecordingStatus1;
1651
+ }
1634
1652
  /**
1635
1653
  * Represents a synchronized dataset of episodes.
1636
1654
  *
@@ -2249,6 +2267,22 @@ export declare enum RecordingNotificationType {
2249
2267
  DISCARDED = "DISCARDED",
2250
2268
  EXPIRED = "EXPIRED"
2251
2269
  }
2270
+ /**
2271
+ * Lifecycle stage of an asynchronous recording synchronization.
2272
+ */
2273
+ export declare enum SynchronizeRecordingStatus {
2274
+ PENDING = "PENDING",
2275
+ READY = "READY",
2276
+ FAILED = "FAILED"
2277
+ }
2278
+ /**
2279
+ * Lifecycle stage of an asynchronous recording synchronization.
2280
+ */
2281
+ export declare enum SynchronizeRecordingStatus1 {
2282
+ PENDING = "PENDING",
2283
+ READY = "READY",
2284
+ FAILED = "FAILED"
2285
+ }
2252
2286
  /**
2253
2287
  * Training job status.
2254
2288
  */
@@ -7,7 +7,7 @@
7
7
  */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
9
  exports.RecordingDataTraceStatus1 = exports.Type16 = 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 = void 0;
10
+ exports.GPUType2 = exports.TrainingJobStatus = exports.SynchronizeRecordingStatus1 = exports.SynchronizeRecordingStatus = exports.RecordingNotificationType = void 0;
11
11
  /**
12
12
  * Enumeration of supported data types in the Neuracore system.
13
13
  *
@@ -429,6 +429,24 @@ var RecordingNotificationType;
429
429
  RecordingNotificationType["DISCARDED"] = "DISCARDED";
430
430
  RecordingNotificationType["EXPIRED"] = "EXPIRED";
431
431
  })(RecordingNotificationType || (exports.RecordingNotificationType = RecordingNotificationType = {}));
432
+ /**
433
+ * Lifecycle stage of an asynchronous recording synchronization.
434
+ */
435
+ var SynchronizeRecordingStatus;
436
+ (function (SynchronizeRecordingStatus) {
437
+ SynchronizeRecordingStatus["PENDING"] = "PENDING";
438
+ SynchronizeRecordingStatus["READY"] = "READY";
439
+ SynchronizeRecordingStatus["FAILED"] = "FAILED";
440
+ })(SynchronizeRecordingStatus || (exports.SynchronizeRecordingStatus = SynchronizeRecordingStatus = {}));
441
+ /**
442
+ * Lifecycle stage of an asynchronous recording synchronization.
443
+ */
444
+ var SynchronizeRecordingStatus1;
445
+ (function (SynchronizeRecordingStatus1) {
446
+ SynchronizeRecordingStatus1["PENDING"] = "PENDING";
447
+ SynchronizeRecordingStatus1["READY"] = "READY";
448
+ SynchronizeRecordingStatus1["FAILED"] = "FAILED";
449
+ })(SynchronizeRecordingStatus1 || (exports.SynchronizeRecordingStatus1 = SynchronizeRecordingStatus1 = {}));
432
450
  /**
433
451
  * Training job status.
434
452
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "11.5.0",
3
+ "version": "11.6.0-main.126.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"