@arcware-cloud/pixelstreaming-websdk 1.1.21 → 1.1.23-beta.0
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/LICENSE.md +0 -1
- package/README.md +10 -2
- package/index.cjs.js +14 -15
- package/index.esm.js +14 -15
- package/index.umd.js +14 -15
- package/package.json +2 -2
- package/types/lib/ArcwareConfig.d.ts +1 -1
- package/types/shared/lib/Messages/StreamInfo.d.ts +0 -7
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.
|
|
4
|
+
"version": "1.1.23-beta.0",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./index.umd.js",
|
|
7
7
|
"module": "./index.umd.js",
|
|
@@ -24,4 +24,4 @@
|
|
|
24
24
|
"@epicgames-ps/lib-pixelstreamingfrontend-ue5.5": "1.1.0",
|
|
25
25
|
"@epicgames-ps/lib-pixelstreamingfrontend-ui-ue5.5": "1.2.0"
|
|
26
26
|
}
|
|
27
|
-
}
|
|
27
|
+
}
|
|
@@ -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.
|
|
29
|
+
readonly VERSION = "1.1.22";
|
|
30
30
|
constructor(config: ArcwareConfigParams);
|
|
31
31
|
/** Setup connection string. */
|
|
32
32
|
get urlFlags(): string;
|
|
@@ -26,21 +26,18 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
26
26
|
isTrial: z.ZodOptional<z.ZodBoolean>;
|
|
27
27
|
mouseLock: z.ZodOptional<z.ZodBoolean>;
|
|
28
28
|
poweredBy: z.ZodOptional<z.ZodBoolean>;
|
|
29
|
-
ueVersion: z.ZodOptional<z.ZodString>;
|
|
30
29
|
version: z.ZodOptional<z.ZodString>;
|
|
31
30
|
}, "strip", z.ZodTypeAny, {
|
|
32
31
|
friendlyName?: string;
|
|
33
32
|
isTrial?: boolean;
|
|
34
33
|
mouseLock?: boolean;
|
|
35
34
|
poweredBy?: boolean;
|
|
36
|
-
ueVersion?: string;
|
|
37
35
|
version?: string;
|
|
38
36
|
}, {
|
|
39
37
|
friendlyName?: string;
|
|
40
38
|
isTrial?: boolean;
|
|
41
39
|
mouseLock?: boolean;
|
|
42
40
|
poweredBy?: boolean;
|
|
43
|
-
ueVersion?: string;
|
|
44
41
|
version?: string;
|
|
45
42
|
}>>;
|
|
46
43
|
webSdkSettings: z.ZodOptional<z.ZodObject<{
|
|
@@ -169,7 +166,6 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
169
166
|
isTrial?: boolean;
|
|
170
167
|
mouseLock?: boolean;
|
|
171
168
|
poweredBy?: boolean;
|
|
172
|
-
ueVersion?: string;
|
|
173
169
|
version?: string;
|
|
174
170
|
};
|
|
175
171
|
webSdkSettings?: {
|
|
@@ -214,7 +210,6 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
214
210
|
isTrial?: boolean;
|
|
215
211
|
mouseLock?: boolean;
|
|
216
212
|
poweredBy?: boolean;
|
|
217
|
-
ueVersion?: string;
|
|
218
213
|
version?: string;
|
|
219
214
|
};
|
|
220
215
|
webSdkSettings?: {
|
|
@@ -262,7 +257,6 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
262
257
|
isTrial?: boolean;
|
|
263
258
|
mouseLock?: boolean;
|
|
264
259
|
poweredBy?: boolean;
|
|
265
|
-
ueVersion?: string;
|
|
266
260
|
version?: string;
|
|
267
261
|
};
|
|
268
262
|
webSdkSettings?: {
|
|
@@ -310,7 +304,6 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
310
304
|
isTrial?: boolean;
|
|
311
305
|
mouseLock?: boolean;
|
|
312
306
|
poweredBy?: boolean;
|
|
313
|
-
ueVersion?: string;
|
|
314
307
|
version?: string;
|
|
315
308
|
};
|
|
316
309
|
webSdkSettings?: {
|