@arcware-cloud/pixelstreaming-websdk 1.1.20 → 1.1.21

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,7 +1,7 @@
1
1
  {
2
2
  "name": "@arcware-cloud/pixelstreaming-websdk",
3
3
  "description": "WebSDK for easy implementation of pixel streaming with Arcware Cloud Services. Heavily based on the '@epicgames-ps' library.",
4
- "version": "1.1.20",
4
+ "version": "1.1.21",
5
5
  "type": "commonjs",
6
6
  "main": "./index.umd.js",
7
7
  "module": "./index.umd.js",
@@ -26,7 +26,7 @@ export declare class ArcwareConfig extends Config {
26
26
  readonly session: Session;
27
27
  readonly settings: Settings;
28
28
  private _initialSettings;
29
- readonly VERSION = "1.1.20";
29
+ readonly VERSION = "1.1.21";
30
30
  constructor(config: ArcwareConfigParams);
31
31
  /** Setup connection string. */
32
32
  get urlFlags(): string;
@@ -7,7 +7,7 @@ type DeepPartial<T> = T extends Function ? T : T extends object ? {
7
7
  export declare function ArcwareInit({ shareId, projectId }: {
8
8
  shareId?: string;
9
9
  projectId?: string;
10
- }, configuration?: DeepPartial<ArcwareConfigParams>): {
10
+ }, configuration?: DeepPartial<ArcwareConfigParams>, forceRefresh?: boolean): {
11
11
  Config: ArcwareConfig;
12
12
  PixelStreaming: ArcwarePixelStreaming;
13
13
  Application: ArcwareApplication;
@@ -0,0 +1 @@
1
+ export default function debounce<T extends (...args: any[]) => void>(func: T, wait: number): (...args: Parameters<T>) => void;
@@ -2,4 +2,5 @@ export declare class ArcwareLogoLoader {
2
2
  arcwareLogoLoader: HTMLDivElement;
3
3
  constructor();
4
4
  private createArcwareLogoLoader;
5
+ private getSvg;
5
6
  }