@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 +5 -5
- package/dist/index.d.ts +5 -5
- package/package.json +1 -1
- package/types/services-configuration.d.ts +5 -5
package/dist/index.d.mts
CHANGED
|
@@ -283,11 +283,11 @@ interface RoomGuestStatusConfigurationParams {
|
|
|
283
283
|
|
|
284
284
|
|
|
285
285
|
interface RoomGroupingConfigurationParams {
|
|
286
|
-
replica_1_active
|
|
287
|
-
replica_2_active
|
|
288
|
-
replica_3_active
|
|
289
|
-
associate_clime
|
|
290
|
-
associate_presence
|
|
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
|
|
287
|
-
replica_2_active
|
|
288
|
-
replica_3_active
|
|
289
|
-
associate_clime
|
|
290
|
-
associate_presence
|
|
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
|
@@ -34,9 +34,9 @@ export interface RoomGuestStatusConfigurationParams {
|
|
|
34
34
|
|
|
35
35
|
|
|
36
36
|
export interface RoomGroupingConfigurationParams {
|
|
37
|
-
replica_1_active
|
|
38
|
-
replica_2_active
|
|
39
|
-
replica_3_active
|
|
40
|
-
associate_clime
|
|
41
|
-
associate_presence
|
|
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
|
}
|