@arcware-cloud/pixelstreaming-websdk 1.2.2-beta.0 → 1.2.3
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/index.cjs.js +18 -10
- package/index.esm.js +18 -10
- package/index.umd.js +18 -10
- package/package.json +2 -2
- package/types/lib/ArcwareConfig.d.ts +1 -1
- package/types/lib/domain/ArcwareSettingsSchema.d.ts +8 -0
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.
|
|
4
|
+
"version": "1.2.3",
|
|
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.2.
|
|
29
|
+
readonly VERSION = "1.2.3";
|
|
30
30
|
constructor(config: ArcwareConfigParams);
|
|
31
31
|
/** Setup connection string. */
|
|
32
32
|
get urlFlags(): string;
|
|
@@ -119,6 +119,10 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
|
|
|
119
119
|
loveLetterLogging: z.ZodOptional<z.ZodBoolean>;
|
|
120
120
|
/** Enable/Disable Connection Identifier logging to the console. */
|
|
121
121
|
connectionIdentifierLoggingDisabled: z.ZodOptional<z.ZodBoolean>;
|
|
122
|
+
/** Width with which instance should be started */
|
|
123
|
+
startWidth: z.ZodOptional<z.ZodNumber>;
|
|
124
|
+
/** Height with which instance should be started */
|
|
125
|
+
startHeight: z.ZodOptional<z.ZodNumber>;
|
|
122
126
|
}, "strip", z.ZodTypeAny, {
|
|
123
127
|
session?: string;
|
|
124
128
|
token?: string;
|
|
@@ -158,6 +162,8 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
|
|
|
158
162
|
projectId?: string;
|
|
159
163
|
loveLetterLogging?: boolean;
|
|
160
164
|
connectionIdentifierLoggingDisabled?: boolean;
|
|
165
|
+
startWidth?: number;
|
|
166
|
+
startHeight?: number;
|
|
161
167
|
}, {
|
|
162
168
|
session?: string;
|
|
163
169
|
token?: string;
|
|
@@ -197,5 +203,7 @@ export declare const ArcwareSettingsSchema: z.ZodObject<{
|
|
|
197
203
|
projectId?: string;
|
|
198
204
|
loveLetterLogging?: boolean;
|
|
199
205
|
connectionIdentifierLoggingDisabled?: boolean;
|
|
206
|
+
startWidth?: number;
|
|
207
|
+
startHeight?: number;
|
|
200
208
|
}>;
|
|
201
209
|
export type Settings = z.infer<typeof ArcwareSettingsSchema>;
|