@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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@wandelbots/nova-api",
3
- "version": "25.5.0-dev.19",
3
+ "version": "25.5.0-dev.20",
4
4
  "description": "API Client to interact with Wandelbots Public API.",
5
5
  "files": [
6
6
  "*",
package/v2/api.d.ts CHANGED
@@ -4904,6 +4904,18 @@ export interface SafetyZoneLimits {
4904
4904
  */
4905
4905
  'limits': PlanningLimits;
4906
4906
  }
4907
+ /**
4908
+ *
4909
+ * @export
4910
+ * @enum {string}
4911
+ */
4912
+ export declare const ServiceGroup: {
4913
+ readonly SystemService: "SystemService";
4914
+ readonly CellService: "CellService";
4915
+ readonly RobotController: "RobotController";
4916
+ readonly App: "App";
4917
+ };
4918
+ export type ServiceGroup = typeof ServiceGroup[keyof typeof ServiceGroup];
4907
4919
  /**
4908
4920
  *
4909
4921
  * @export
@@ -4916,6 +4928,12 @@ export interface ServiceStatus {
4916
4928
  * @memberof ServiceStatus
4917
4929
  */
4918
4930
  'service': string;
4931
+ /**
4932
+ *
4933
+ * @type {ServiceGroup}
4934
+ * @memberof ServiceStatus
4935
+ */
4936
+ 'group': ServiceGroup;
4919
4937
  /**
4920
4938
  *
4921
4939
  * @type {ServiceStatusStatus}
package/v2/api.js CHANGED
@@ -499,6 +499,17 @@ export const SafetyType = {
499
499
  SafetyNormal: 'SAFETY_NORMAL',
500
500
  SafetyReduced: 'SAFETY_REDUCED'
501
501
  };
502
+ /**
503
+ *
504
+ * @export
505
+ * @enum {string}
506
+ */
507
+ export const ServiceGroup = {
508
+ SystemService: 'SystemService',
509
+ CellService: 'CellService',
510
+ RobotController: 'RobotController',
511
+ App: 'App'
512
+ };
502
513
  /**
503
514
  *
504
515
  * @export