@wandelbots/nova-api 25.5.0-dev.19 → 25.5.0-dev.20

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/v2/api.ts CHANGED
@@ -5084,6 +5084,22 @@ export interface SafetyZoneLimits {
5084
5084
  */
5085
5085
  'limits': PlanningLimits;
5086
5086
  }
5087
+ /**
5088
+ *
5089
+ * @export
5090
+ * @enum {string}
5091
+ */
5092
+
5093
+ export const ServiceGroup = {
5094
+ SystemService: 'SystemService',
5095
+ CellService: 'CellService',
5096
+ RobotController: 'RobotController',
5097
+ App: 'App'
5098
+ } as const;
5099
+
5100
+ export type ServiceGroup = typeof ServiceGroup[keyof typeof ServiceGroup];
5101
+
5102
+
5087
5103
  /**
5088
5104
  *
5089
5105
  * @export
@@ -5096,6 +5112,12 @@ export interface ServiceStatus {
5096
5112
  * @memberof ServiceStatus
5097
5113
  */
5098
5114
  'service': string;
5115
+ /**
5116
+ *
5117
+ * @type {ServiceGroup}
5118
+ * @memberof ServiceStatus
5119
+ */
5120
+ 'group': ServiceGroup;
5099
5121
  /**
5100
5122
  *
5101
5123
  * @type {ServiceStatusStatus}
@@ -5103,6 +5125,8 @@ export interface ServiceStatus {
5103
5125
  */
5104
5126
  'status': ServiceStatusStatus;
5105
5127
  }
5128
+
5129
+
5106
5130
  /**
5107
5131
  *
5108
5132
  * @export