@robotbas/robotcloud-client 0.3.10 → 0.3.11

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/dist/index.d.mts CHANGED
@@ -144,9 +144,13 @@ interface AlertsByLocation {
144
144
  initial_index: number;
145
145
  locations: {
146
146
  location: string;
147
- classifier: string;
148
- alert_name: string;
149
147
  activation_count: number;
148
+ alerts: {
149
+ instance: string;
150
+ classifier: string;
151
+ alert_name: string;
152
+ activation_count: number;
153
+ }[];
150
154
  }[];
151
155
  };
152
156
  }
package/dist/index.d.ts CHANGED
@@ -144,9 +144,13 @@ interface AlertsByLocation {
144
144
  initial_index: number;
145
145
  locations: {
146
146
  location: string;
147
- classifier: string;
148
- alert_name: string;
149
147
  activation_count: number;
148
+ alerts: {
149
+ instance: string;
150
+ classifier: string;
151
+ alert_name: string;
152
+ activation_count: number;
153
+ }[];
150
154
  }[];
151
155
  };
152
156
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robotbas/robotcloud-client",
3
- "version": "0.3.10",
3
+ "version": "0.3.11",
4
4
  "description": "RobotCloud API client",
5
5
  "author": {
6
6
  "name": "Bernat Galmés Rubert",
package/types/alerts.d.ts CHANGED
@@ -61,9 +61,13 @@ export interface AlertsByLocation {
61
61
  initial_index: number;
62
62
  locations: {
63
63
  location: string;
64
- classifier: string;
65
- alert_name: string;
66
64
  activation_count: number;
65
+ alerts: {
66
+ instance: string;
67
+ classifier: string;
68
+ alert_name: string;
69
+ activation_count: number;
70
+ }[];
67
71
  }[];
68
72
  };
69
73
  }