@webex/web-media-effects-types 2.30.2 → 2.31.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.
Files changed (2) hide show
  1. package/index.d.ts +1 -2
  2. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -347,7 +347,6 @@ interface VirtualBackgroundEffectOptions extends EffectOptions {
347
347
  bgVideoUrl?: string;
348
348
  mirror: boolean;
349
349
  preventBackgroundThrottling?: boolean;
350
- canvasResolutionScaling?: number;
351
350
  modelOverrides?: LadonOverrides;
352
351
  }
353
352
 
@@ -380,7 +379,6 @@ declare class VirtualBackgroundEffect extends BaseCameraEffect {
380
379
  private pluginManager;
381
380
  private beforeInferenceCallbacks;
382
381
  private afterInferenceCallbacks;
383
- private offscreenCanvas?;
384
382
  private inputCanvasContext?;
385
383
  private configBuilder;
386
384
  private debugStatsGenerator;
@@ -427,6 +425,7 @@ declare class VirtualBackgroundEffect extends BaseCameraEffect {
427
425
  getPlugin: <T extends PluginType>(name: string) => T | undefined;
428
426
  getPluginManager: () => PluginManager;
429
427
  getStats(): DebugStats;
428
+ private optimizeBackgroundImage;
430
429
  }
431
430
  declare const createVirtualBackgroundEffect: (options?: VirtualBackgroundEffectOptions, preloadAssets?: boolean) => Promise<VirtualBackgroundEffect>;
432
431
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@webex/web-media-effects-types",
3
- "version": "2.30.2",
3
+ "version": "2.31.1",
4
4
  "description": "TypeScript definitions for @webex/web-media-effects",
5
5
  "main": "",
6
6
  "types": "index.d.ts",