@arcware-cloud/pixelstreaming-websdk 1.2.7 → 1.2.8

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.2.7",
4
+ "version": "1.2.8",
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.2.7";
29
+ readonly VERSION = "1.2.8";
30
30
  constructor(config: ArcwareConfigParams);
31
31
  /** Setup connection string. */
32
32
  get urlFlags(): string;
@@ -10,9 +10,6 @@ declare const ZOptions: z.ZodObject<{
10
10
  keepSession?: number;
11
11
  }>;
12
12
  type Options = z.infer<typeof ZOptions>;
13
- /** The sessionId is stored in the localStorage to allow for reconnection and
14
- * to prevent spamming start requests of instances, when smashing F5.
15
- */
16
13
  export declare class Session {
17
14
  private _current?;
18
15
  get current(): string;
@@ -21,9 +18,7 @@ export declare class Session {
21
18
  private options;
22
19
  private get localStorageKey();
23
20
  constructor(options?: Options);
24
- /** Set's the session with creation date for the given storage key to the localStorage. */
25
21
  set(sessionId: string): void;
26
- /** Removes a session from the localStorage. */
27
22
  unset(): void;
28
23
  }
29
24
  export {};