@robotbas/robotcloud-client 0.3.1 → 0.3.2

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
@@ -283,11 +283,11 @@ interface RoomGuestStatusConfigurationParams {
283
283
 
284
284
 
285
285
  interface RoomGroupingConfigurationParams {
286
- replica_1_active: boolean;
287
- replica_2_active: boolean;
288
- replica_3_active: boolean;
289
- associate_clime: boolean;
290
- associate_presence: boolean;
286
+ replica_1_active?: boolean;
287
+ replica_2_active?: boolean;
288
+ replica_3_active?: boolean;
289
+ associate_clime?: boolean;
290
+ associate_presence?: boolean;
291
291
  }
292
292
 
293
293
  declare class GenericInstanceConfigClient<T> implements ServiceInstanceConfigClient<T> {
package/dist/index.d.ts CHANGED
@@ -283,11 +283,11 @@ interface RoomGuestStatusConfigurationParams {
283
283
 
284
284
 
285
285
  interface RoomGroupingConfigurationParams {
286
- replica_1_active: boolean;
287
- replica_2_active: boolean;
288
- replica_3_active: boolean;
289
- associate_clime: boolean;
290
- associate_presence: boolean;
286
+ replica_1_active?: boolean;
287
+ replica_2_active?: boolean;
288
+ replica_3_active?: boolean;
289
+ associate_clime?: boolean;
290
+ associate_presence?: boolean;
291
291
  }
292
292
 
293
293
  declare class GenericInstanceConfigClient<T> implements ServiceInstanceConfigClient<T> {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@robotbas/robotcloud-client",
3
- "version": "0.3.1",
3
+ "version": "0.3.2",
4
4
  "description": "RobotCloud API client",
5
5
  "author": {
6
6
  "name": "Bernat Galmés Rubert",
@@ -34,9 +34,9 @@ export interface RoomGuestStatusConfigurationParams {
34
34
 
35
35
 
36
36
  export interface RoomGroupingConfigurationParams {
37
- replica_1_active: boolean;
38
- replica_2_active: boolean;
39
- replica_3_active: boolean;
40
- associate_clime: boolean;
41
- associate_presence: boolean;
37
+ replica_1_active?: boolean;
38
+ replica_2_active?: boolean;
39
+ replica_3_active?: boolean;
40
+ associate_clime?: boolean;
41
+ associate_presence?: boolean;
42
42
  }