unified-video-framework 1.4.433 → 1.4.435

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "unified-video-framework",
3
- "version": "1.4.433",
3
+ "version": "1.4.435",
4
4
  "description": "Cross-platform video player framework supporting iOS, Android, Web, Smart TVs (Samsung/LG), Roku, and more",
5
5
  "main": "packages/core/dist/index.js",
6
6
  "types": "packages/core/dist/index.d.ts",
@@ -1,2 +1,2 @@
1
- export declare const VERSION = "1.4.433";
1
+ export declare const VERSION = "1.4.435";
2
2
  //# sourceMappingURL=version.d.ts.map
@@ -1,2 +1,2 @@
1
- export const VERSION = '1.4.433';
1
+ export const VERSION = '1.4.435';
2
2
  //# sourceMappingURL=version.js.map
@@ -1 +1 @@
1
- export const VERSION = '1.4.433';
1
+ export const VERSION = '1.4.435';
@@ -1,4 +1,15 @@
1
- export { DRMManager } from '../../dist/drm/DRMManager';
2
- export { DRMErrorHandler } from '../../dist/drm/utils/DRMErrorHandler';
3
- export type { DRMInitResult, DRMError } from '../../dist/drm/types/DRMTypes';
4
- //# sourceMappingURL=index.d.ts.map
1
+ export { DRMManager } from './DRMManager';
2
+ export { BunnyNetProvider } from './providers/BunnyNetProvider';
3
+ export { GenericProvider } from './providers/GenericProvider';
4
+ export type { ExtendedDRMConfig, DRMCapabilities, LicenseRequest, LicenseResponse, DRMInitResult, DRMError, } from './types/DRMTypes';
5
+ export { DRMErrorCode, KEY_SYSTEMS } from './types/DRMTypes';
6
+ export type { BunnyNetConfig, BunnyNetEndpoints } from './types/BunnyNetTypes';
7
+ export { BUNNY_NET_BASE_URL, BUNNY_NET_ENDPOINTS } from './types/BunnyNetTypes';
8
+ export { BrowserDetector } from './utils/BrowserDetector';
9
+ export { DRMErrorHandler } from './utils/DRMErrorHandler';
10
+ export { CertificateManager } from './utils/CertificateManager';
11
+ export { BaseDRM } from './systems/BaseDRM';
12
+ export { WidevineDRM } from './systems/WidevineDRM';
13
+ export { FairPlayDRM } from './systems/FairPlayDRM';
14
+ export { PlayReadyDRM } from './systems/PlayReadyDRM';
15
+ //# sourceMappingURL=index.d.ts.map
@@ -1,3 +1,13 @@
1
- export { DRMManager } from "../../dist/drm/DRMManager.js";
2
- export { DRMErrorHandler } from "../../dist/drm/utils/DRMErrorHandler.js";
3
- //# sourceMappingURL=index.js.map
1
+ export { DRMManager } from './DRMManager.js';
2
+ export { BunnyNetProvider } from './providers/BunnyNetProvider.js';
3
+ export { GenericProvider } from './providers/GenericProvider.js';
4
+ export { DRMErrorCode, KEY_SYSTEMS } from './types/DRMTypes.js';
5
+ export { BUNNY_NET_BASE_URL, BUNNY_NET_ENDPOINTS } from './types/BunnyNetTypes.js';
6
+ export { BrowserDetector } from './utils/BrowserDetector.js';
7
+ export { DRMErrorHandler } from './utils/DRMErrorHandler.js';
8
+ export { CertificateManager } from './utils/CertificateManager.js';
9
+ export { BaseDRM } from './systems/BaseDRM.js';
10
+ export { WidevineDRM } from './systems/WidevineDRM.js';
11
+ export { FairPlayDRM } from './systems/FairPlayDRM.js';
12
+ export { PlayReadyDRM } from './systems/PlayReadyDRM.js';
13
+ //# sourceMappingURL=index.js.map
@@ -0,0 +1,4 @@
1
+ /**
2
+ * Type declarations - re-export all DRM types from the drm folder
3
+ */
4
+ export * from './drm/index';
@@ -0,0 +1,5 @@
1
+ /**
2
+ * Re-export all DRM modules from the drm folder
3
+ * This file exists to support import from './drm.js'
4
+ */
5
+ export * from './drm/index.js';
@@ -0,0 +1,20 @@
1
+ /**
2
+ * Type declarations for the pre-compiled DRM module
3
+ * The actual implementation exists in ../dist/drm/
4
+ */
5
+
6
+ // Re-export all types from the compiled DRM module
7
+ export { DRMManager } from '../dist/drm/DRMManager';
8
+ export { BunnyNetProvider } from '../dist/drm/providers/BunnyNetProvider';
9
+ export { GenericProvider } from '../dist/drm/providers/GenericProvider';
10
+ export type { ExtendedDRMConfig, DRMCapabilities, LicenseRequest, LicenseResponse, DRMInitResult, DRMError } from '../dist/drm/types/DRMTypes';
11
+ export { DRMErrorCode, KEY_SYSTEMS } from '../dist/drm/types/DRMTypes';
12
+ export type { BunnyNetConfig, BunnyNetEndpoints } from '../dist/drm/types/BunnyNetTypes';
13
+ export { BUNNY_NET_BASE_URL, BUNNY_NET_ENDPOINTS } from '../dist/drm/types/BunnyNetTypes';
14
+ export { BrowserDetector } from '../dist/drm/utils/BrowserDetector';
15
+ export { DRMErrorHandler } from '../dist/drm/utils/DRMErrorHandler';
16
+ export { CertificateManager } from '../dist/drm/utils/CertificateManager';
17
+ export { BaseDRM } from '../dist/drm/systems/BaseDRM';
18
+ export { WidevineDRM } from '../dist/drm/systems/WidevineDRM';
19
+ export { FairPlayDRM } from '../dist/drm/systems/FairPlayDRM';
20
+ export { PlayReadyDRM } from '../dist/drm/systems/PlayReadyDRM';
@@ -1,9 +0,0 @@
1
- /**
2
- * DRM module - re-exports from compiled distribution
3
- * The DRM implementation is pre-compiled and exists only in dist/drm
4
- */
5
-
6
- // Re-export types and classes from the compiled distribution
7
- export { DRMManager } from '../../dist/drm/DRMManager';
8
- export { DRMErrorHandler } from '../../dist/drm/utils/DRMErrorHandler';
9
- export type { DRMInitResult, DRMError } from '../../dist/drm/types/DRMTypes';
@@ -1 +0,0 @@
1
- /c/Users/Webnexs/Documents/OfficeBackup/AI/VideoPlayer FrameWork/unified-video-framework/packages/web/src/drm
@@ -1 +0,0 @@
1
- /c/Users/Webnexs/Documents/OfficeBackup/AI/VideoPlayer FrameWork/unified-video-framework/packages/web/src/drm