@neuracore/types 11.10.0 → 11.11.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.
@@ -2377,3 +2377,14 @@ export declare enum GPUType2 {
2377
2377
  NVIDIA_TESLA_T4 = "NVIDIA_TESLA_T4",
2378
2378
  NVIDIA_L4 = "NVIDIA_L4"
2379
2379
  }
2380
+ /**
2381
+ * Direction to walk the keyset cursor when listing recordings.
2382
+ *
2383
+ * Attributes:
2384
+ * FORWARD: Return the records immediately after the cursor.
2385
+ * BACKWARD: Return the records immediately before the cursor.
2386
+ */
2387
+ export declare enum PaginationDirection {
2388
+ FORWARD = "FORWARD",
2389
+ BACKWARD = "BACKWARD"
2390
+ }
@@ -7,7 +7,7 @@
7
7
  */
8
8
  Object.defineProperty(exports, "__esModule", { value: true });
9
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;
10
+ exports.PaginationDirection = exports.GPUType2 = exports.TrainingJobStatus = exports.SynchronizeRecordingStatus1 = exports.SynchronizeRecordingStatus = exports.RecordingNotificationType = exports.RecordingDataTraceStatus1 = exports.Type16 = void 0;
11
11
  /**
12
12
  * Enumeration of supported data types in the Neuracore system.
13
13
  *
@@ -497,3 +497,15 @@ var GPUType2;
497
497
  GPUType2["NVIDIA_TESLA_T4"] = "NVIDIA_TESLA_T4";
498
498
  GPUType2["NVIDIA_L4"] = "NVIDIA_L4";
499
499
  })(GPUType2 || (exports.GPUType2 = GPUType2 = {}));
500
+ /**
501
+ * Direction to walk the keyset cursor when listing recordings.
502
+ *
503
+ * Attributes:
504
+ * FORWARD: Return the records immediately after the cursor.
505
+ * BACKWARD: Return the records immediately before the cursor.
506
+ */
507
+ var PaginationDirection;
508
+ (function (PaginationDirection) {
509
+ PaginationDirection["FORWARD"] = "FORWARD";
510
+ PaginationDirection["BACKWARD"] = "BACKWARD";
511
+ })(PaginationDirection || (exports.PaginationDirection = PaginationDirection = {}));
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@neuracore/types",
3
- "version": "11.10.0",
3
+ "version": "11.11.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",