@zezosoft/zezo-ott-react-native-video-player 1.0.0 → 1.0.1

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/README.md CHANGED
@@ -273,7 +273,17 @@ yarn add react-native-orientation-locker
273
273
  npm install react-native-orientation-locker
274
274
  ```
275
275
 
276
- 🔗 Known issues: [react-native-orientation-locker issues](https://github.com/wonday/react-native-orientation-locker/issues)
276
+ ## React Native Orientation Locker
277
+
278
+ ### 🔹 Known Issues
279
+
280
+ If you encounter any problems with react-native-orientation-locker, check the official issues page:
281
+ [View Known Issues](https://github.com/wonday/react-native-orientation-locker/issues)
282
+
283
+ ### 🔹 Setup & Installation
284
+
285
+ Follow the official guide to properly set up react-native-orientation-locker:
286
+ [View Setup Guide](https://github.com/wonday/react-native-orientation-locker)
277
287
 
278
288
  ---
279
289
 
@@ -6,15 +6,17 @@ export declare const mmkvStorage: {
6
6
  getItem: (key: string) => string | null;
7
7
  removeItem: (key: string) => void;
8
8
  };
9
- export declare const useVideoPlayerStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<VideoPlayerStore>, "persist"> & {
9
+ export declare const useVideoPlayerStore: import("zustand").UseBoundStore<Omit<import("zustand").StoreApi<VideoPlayerStore>, "setState" | "persist"> & {
10
+ setState(partial: VideoPlayerStore | Partial<VideoPlayerStore> | ((state: VideoPlayerStore) => VideoPlayerStore | Partial<VideoPlayerStore>), replace?: false | undefined): unknown;
11
+ setState(state: VideoPlayerStore | ((state: VideoPlayerStore) => VideoPlayerStore), replace: true): unknown;
10
12
  persist: {
11
- setOptions: (options: Partial<import("zustand/middleware").PersistOptions<VideoPlayerStore, unknown>>) => void;
13
+ setOptions: (options: Partial<import("zustand/middleware").PersistOptions<VideoPlayerStore, unknown, unknown>>) => void;
12
14
  clearStorage: () => void;
13
15
  rehydrate: () => Promise<void> | void;
14
16
  hasHydrated: () => boolean;
15
17
  onHydrate: (fn: (state: VideoPlayerStore) => void) => () => void;
16
18
  onFinishHydration: (fn: (state: VideoPlayerStore) => void) => () => void;
17
- getOptions: () => Partial<import("zustand/middleware").PersistOptions<VideoPlayerStore, unknown>>;
19
+ getOptions: () => Partial<import("zustand/middleware").PersistOptions<VideoPlayerStore, unknown, unknown>>;
18
20
  };
19
21
  }>;
20
22
  //# sourceMappingURL=videoPlayerStore.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"videoPlayerStore.d.ts","sourceRoot":"","sources":["../../../../../src/VideoPlayer/store/videoPlayerStore.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAEzC,OAAO,KAAK,EAAkB,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAE3E,eAAO,MAAM,OAAO,MAGlB,CAAC;AAEH,eAAO,MAAM,WAAW;mBACP,MAAM,SAAS,MAAM;mBACrB,MAAM;sBACH,MAAM;CACzB,CAAC;AAgCF,eAAO,MAAM,mBAAmB;;;;;;;;;;EAiD/B,CAAC"}
1
+ {"version":3,"file":"videoPlayerStore.d.ts","sourceRoot":"","sources":["../../../../../src/VideoPlayer/store/videoPlayerStore.ts"],"names":[],"mappings":"AAMA,OAAO,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAEzC,OAAO,KAAK,EAAkB,gBAAgB,EAAE,MAAM,oBAAoB,CAAC;AAE3E,eAAO,MAAM,OAAO,MAGlB,CAAC;AAEH,eAAO,MAAM,WAAW;mBACP,MAAM,SAAS,MAAM;mBACrB,MAAM;sBACH,MAAM;CACzB,CAAC;AAgCF,eAAO,MAAM,mBAAmB;;;;;;;;;;;;EAiD/B,CAAC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@zezosoft/zezo-ott-react-native-video-player",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "React Native OTT Video Player for Android & iOS. Supports playlists, seasons, auto-next playback, subtitles, theming, analytics, fullscreen mode, and custom controls. 🚀 Powered by ZezoSoft.",
5
5
  "main": "./lib/module/index.js",
6
6
  "types": "./lib/typescript/src/index.d.ts",
@@ -91,21 +91,24 @@
91
91
  "eslint-config-prettier": "^10.1.1",
92
92
  "eslint-plugin-prettier": "^5.2.3",
93
93
  "jest": "^29.7.0",
94
+ "nodemon": "^3.1.10",
94
95
  "prettier": "^3.0.3",
95
96
  "react": "19.0.0",
96
- "react-native": "0.79.5",
97
+ "react-native": "0.79.6",
97
98
  "react-native-builder-bob": "^0.40.13",
99
+ "react-native-reanimated": "^4.1.0",
100
+ "react-native-video": "^6.16.1",
98
101
  "release-it": "^17.10.0",
99
102
  "typescript": "^5.8.3"
100
103
  },
101
104
  "peerDependencies": {
102
105
  "react": "*",
103
- "react-native": "*"
106
+ "react-native": "*",
107
+ "react-native-reanimated": "*"
104
108
  },
105
109
  "workspaces": [
106
110
  "example"
107
111
  ],
108
- "packageManager": "yarn@3.6.1",
109
112
  "jest": {
110
113
  "preset": "react-native",
111
114
  "modulePathIgnorePatterns": [
@@ -171,21 +174,18 @@
171
174
  "@react-native-community/slider": "^4.5.7",
172
175
  "axios": "^1.11.0",
173
176
  "lucide-react-native": "^0.539.0",
174
- "nodemon": "^3.1.10",
175
177
  "react-native-awesome-slider": "^2.9.0",
176
178
  "react-native-fast-image": "^8.6.3",
177
179
  "react-native-gesture-handler": "^2.28.0",
178
180
  "react-native-mmkv": "^3.3.0",
179
181
  "react-native-orientation-locker": "1.6.0",
180
182
  "react-native-popup-menu": "^0.18.0",
181
- "react-native-reanimated": "~3.17.4",
182
183
  "react-native-responsive-fontsize": "^0.5.1",
183
184
  "react-native-safe-area-context": "^5.6.0",
184
185
  "react-native-size-matters": "^0.4.2",
185
186
  "react-native-subtitles": "^5.0.5",
186
187
  "react-native-svg": "^15.12.1",
187
188
  "react-native-system-navigation-bar": "^2.6.4",
188
- "react-native-video": "^6.16.1",
189
189
  "zustand": "^5.0.7"
190
190
  }
191
191
  }