@bits-innovate/react-native-vstarcam 1.0.33 → 1.0.34
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 +1 -1
- package/src/index.ts +2 -0
package/package.json
CHANGED
package/src/index.ts
CHANGED
|
@@ -151,6 +151,7 @@ export interface DeviceInfo {
|
|
|
151
151
|
motionDetection: boolean;
|
|
152
152
|
wifi: boolean;
|
|
153
153
|
};
|
|
154
|
+
responsive?: boolean;
|
|
154
155
|
}
|
|
155
156
|
|
|
156
157
|
// Connection result
|
|
@@ -430,6 +431,7 @@ class VStarCamClient {
|
|
|
430
431
|
motionDetection: params["support_alarm"] === "1",
|
|
431
432
|
wifi: params["haveWifi"] === "1",
|
|
432
433
|
},
|
|
434
|
+
responsive: true,
|
|
433
435
|
});
|
|
434
436
|
};
|
|
435
437
|
|