@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.
Files changed (2) hide show
  1. package/package.json +1 -1
  2. package/src/index.ts +2 -0
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bits-innovate/react-native-vstarcam",
3
- "version": "1.0.33",
3
+ "version": "1.0.34",
4
4
  "description": "React Native bridge for VStarCam P2P SDK",
5
5
  "main": "src/index.ts",
6
6
  "types": "src/index.ts",
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