@arcware-cloud/pixelstreaming-websdk 1.0.2 → 1.0.6
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/.npmiognore +1 -0
- package/LICENSE.md +2 -2
- package/index.cjs.js +72386 -4
- package/index.esm.js +72348 -4
- package/index.umd.js +72401 -10
- package/package.json +2 -12
- package/types/lib/ArcwareConfig.d.ts +2 -2
- package/types/lib/ArcwarePixelStreaming.d.ts +16 -17
- package/types/lib/domain/ArcwareSettingsSchema.d.ts +122 -119
- package/types/lib/domain/Session.d.ts +5 -5
- package/types/shared/lib/Messages/ErrorMessage.d.ts +8 -8
- package/types/shared/lib/Messages/LoveLetter.d.ts +8 -8
- package/types/shared/lib/Messages/Ping.d.ts +4 -4
- package/types/shared/lib/Messages/Queue.d.ts +28 -28
- package/types/shared/lib/Messages/SessionId.d.ts +4 -4
- package/types/shared/lib/Messages/Stats.d.ts +66 -54
- package/types/shared/lib/Messages/StreamInfo.d.ts +248 -248
- package/types/shared/lib/Messages/Version.d.ts +4 -4
- package/types/shared/lib/Messages/WebSdkSettings.d.ts +64 -64
- package/types/shared/lib/Messages/index.d.ts +66 -54
- package/DEPENDENCY_LICENSE.md +0 -136
|
@@ -11,15 +11,15 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
11
11
|
dynamic: z.ZodOptional<z.ZodBoolean>;
|
|
12
12
|
fixed: z.ZodOptional<z.ZodBoolean>;
|
|
13
13
|
}, "strip", z.ZodTypeAny, {
|
|
14
|
-
width
|
|
15
|
-
height
|
|
16
|
-
dynamic?: boolean
|
|
17
|
-
fixed?: boolean
|
|
14
|
+
width?: number;
|
|
15
|
+
height?: number;
|
|
16
|
+
dynamic?: boolean;
|
|
17
|
+
fixed?: boolean;
|
|
18
18
|
}, {
|
|
19
|
-
width
|
|
20
|
-
height
|
|
21
|
-
dynamic?: boolean
|
|
22
|
-
fixed?: boolean
|
|
19
|
+
width?: number;
|
|
20
|
+
height?: number;
|
|
21
|
+
dynamic?: boolean;
|
|
22
|
+
fixed?: boolean;
|
|
23
23
|
}>>;
|
|
24
24
|
meta: z.ZodOptional<z.ZodObject<{
|
|
25
25
|
friendlyName: z.ZodOptional<z.ZodString>;
|
|
@@ -29,19 +29,19 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
29
29
|
ueVersion: z.ZodOptional<z.ZodString>;
|
|
30
30
|
version: z.ZodOptional<z.ZodString>;
|
|
31
31
|
}, "strip", z.ZodTypeAny, {
|
|
32
|
-
friendlyName?: string
|
|
33
|
-
isTrial?: boolean
|
|
34
|
-
mouseLock?: boolean
|
|
35
|
-
poweredBy?: boolean
|
|
36
|
-
ueVersion?: string
|
|
37
|
-
version?: string
|
|
32
|
+
friendlyName?: string;
|
|
33
|
+
isTrial?: boolean;
|
|
34
|
+
mouseLock?: boolean;
|
|
35
|
+
poweredBy?: boolean;
|
|
36
|
+
ueVersion?: string;
|
|
37
|
+
version?: string;
|
|
38
38
|
}, {
|
|
39
|
-
friendlyName?: string
|
|
40
|
-
isTrial?: boolean
|
|
41
|
-
mouseLock?: boolean
|
|
42
|
-
poweredBy?: boolean
|
|
43
|
-
ueVersion?: string
|
|
44
|
-
version?: string
|
|
39
|
+
friendlyName?: string;
|
|
40
|
+
isTrial?: boolean;
|
|
41
|
+
mouseLock?: boolean;
|
|
42
|
+
poweredBy?: boolean;
|
|
43
|
+
ueVersion?: string;
|
|
44
|
+
version?: string;
|
|
45
45
|
}>>;
|
|
46
46
|
webSdkSettings: z.ZodOptional<z.ZodObject<{
|
|
47
47
|
conf: z.ZodOptional<z.ZodObject<{
|
|
@@ -53,21 +53,21 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
53
53
|
settingsButton: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
54
54
|
connectionStrengthIcon: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
55
55
|
}, "strip", z.ZodTypeAny, {
|
|
56
|
-
fullscreenButton?: boolean
|
|
57
|
-
stopButton?: boolean
|
|
58
|
-
audioButton?: boolean
|
|
59
|
-
infoButton?: boolean
|
|
60
|
-
micButton?: boolean
|
|
61
|
-
settingsButton?: boolean
|
|
62
|
-
connectionStrengthIcon?: boolean
|
|
56
|
+
fullscreenButton?: boolean;
|
|
57
|
+
stopButton?: boolean;
|
|
58
|
+
audioButton?: boolean;
|
|
59
|
+
infoButton?: boolean;
|
|
60
|
+
micButton?: boolean;
|
|
61
|
+
settingsButton?: boolean;
|
|
62
|
+
connectionStrengthIcon?: boolean;
|
|
63
63
|
}, {
|
|
64
|
-
fullscreenButton?: boolean
|
|
65
|
-
stopButton?: boolean
|
|
66
|
-
audioButton?: boolean
|
|
67
|
-
infoButton?: boolean
|
|
68
|
-
micButton?: boolean
|
|
69
|
-
settingsButton?: boolean
|
|
70
|
-
connectionStrengthIcon?: boolean
|
|
64
|
+
fullscreenButton?: boolean;
|
|
65
|
+
stopButton?: boolean;
|
|
66
|
+
audioButton?: boolean;
|
|
67
|
+
infoButton?: boolean;
|
|
68
|
+
micButton?: boolean;
|
|
69
|
+
settingsButton?: boolean;
|
|
70
|
+
connectionStrengthIcon?: boolean;
|
|
71
71
|
}>>;
|
|
72
72
|
init: z.ZodOptional<z.ZodObject<{
|
|
73
73
|
KeyboardInput: z.ZodOptional<z.ZodDefault<z.ZodBoolean>>;
|
|
@@ -79,64 +79,64 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
79
79
|
ForceMonoAudio: z.ZodOptional<z.ZodBoolean>;
|
|
80
80
|
HoveringMouse: z.ZodOptional<z.ZodBoolean>;
|
|
81
81
|
}, "strip", z.ZodTypeAny, {
|
|
82
|
-
KeyboardInput?: boolean
|
|
83
|
-
MouseInput?: boolean
|
|
84
|
-
GamepadInput?: boolean
|
|
85
|
-
TouchInput?: boolean
|
|
86
|
-
XRControllerInput?: boolean
|
|
87
|
-
FakeMouseWithTouches?: boolean
|
|
88
|
-
ForceMonoAudio?: boolean
|
|
89
|
-
HoveringMouse?: boolean
|
|
82
|
+
KeyboardInput?: boolean;
|
|
83
|
+
MouseInput?: boolean;
|
|
84
|
+
GamepadInput?: boolean;
|
|
85
|
+
TouchInput?: boolean;
|
|
86
|
+
XRControllerInput?: boolean;
|
|
87
|
+
FakeMouseWithTouches?: boolean;
|
|
88
|
+
ForceMonoAudio?: boolean;
|
|
89
|
+
HoveringMouse?: boolean;
|
|
90
90
|
}, {
|
|
91
|
-
KeyboardInput?: boolean
|
|
92
|
-
MouseInput?: boolean
|
|
93
|
-
GamepadInput?: boolean
|
|
94
|
-
TouchInput?: boolean
|
|
95
|
-
XRControllerInput?: boolean
|
|
96
|
-
FakeMouseWithTouches?: boolean
|
|
97
|
-
ForceMonoAudio?: boolean
|
|
98
|
-
HoveringMouse?: boolean
|
|
91
|
+
KeyboardInput?: boolean;
|
|
92
|
+
MouseInput?: boolean;
|
|
93
|
+
GamepadInput?: boolean;
|
|
94
|
+
TouchInput?: boolean;
|
|
95
|
+
XRControllerInput?: boolean;
|
|
96
|
+
FakeMouseWithTouches?: boolean;
|
|
97
|
+
ForceMonoAudio?: boolean;
|
|
98
|
+
HoveringMouse?: boolean;
|
|
99
99
|
}>>;
|
|
100
100
|
}, "strict", z.ZodTypeAny, {
|
|
101
101
|
conf?: {
|
|
102
|
-
fullscreenButton?: boolean
|
|
103
|
-
stopButton?: boolean
|
|
104
|
-
audioButton?: boolean
|
|
105
|
-
infoButton?: boolean
|
|
106
|
-
micButton?: boolean
|
|
107
|
-
settingsButton?: boolean
|
|
108
|
-
connectionStrengthIcon?: boolean
|
|
109
|
-
}
|
|
102
|
+
fullscreenButton?: boolean;
|
|
103
|
+
stopButton?: boolean;
|
|
104
|
+
audioButton?: boolean;
|
|
105
|
+
infoButton?: boolean;
|
|
106
|
+
micButton?: boolean;
|
|
107
|
+
settingsButton?: boolean;
|
|
108
|
+
connectionStrengthIcon?: boolean;
|
|
109
|
+
};
|
|
110
110
|
init?: {
|
|
111
|
-
KeyboardInput?: boolean
|
|
112
|
-
MouseInput?: boolean
|
|
113
|
-
GamepadInput?: boolean
|
|
114
|
-
TouchInput?: boolean
|
|
115
|
-
XRControllerInput?: boolean
|
|
116
|
-
FakeMouseWithTouches?: boolean
|
|
117
|
-
ForceMonoAudio?: boolean
|
|
118
|
-
HoveringMouse?: boolean
|
|
119
|
-
}
|
|
111
|
+
KeyboardInput?: boolean;
|
|
112
|
+
MouseInput?: boolean;
|
|
113
|
+
GamepadInput?: boolean;
|
|
114
|
+
TouchInput?: boolean;
|
|
115
|
+
XRControllerInput?: boolean;
|
|
116
|
+
FakeMouseWithTouches?: boolean;
|
|
117
|
+
ForceMonoAudio?: boolean;
|
|
118
|
+
HoveringMouse?: boolean;
|
|
119
|
+
};
|
|
120
120
|
}, {
|
|
121
121
|
conf?: {
|
|
122
|
-
fullscreenButton?: boolean
|
|
123
|
-
stopButton?: boolean
|
|
124
|
-
audioButton?: boolean
|
|
125
|
-
infoButton?: boolean
|
|
126
|
-
micButton?: boolean
|
|
127
|
-
settingsButton?: boolean
|
|
128
|
-
connectionStrengthIcon?: boolean
|
|
129
|
-
}
|
|
122
|
+
fullscreenButton?: boolean;
|
|
123
|
+
stopButton?: boolean;
|
|
124
|
+
audioButton?: boolean;
|
|
125
|
+
infoButton?: boolean;
|
|
126
|
+
micButton?: boolean;
|
|
127
|
+
settingsButton?: boolean;
|
|
128
|
+
connectionStrengthIcon?: boolean;
|
|
129
|
+
};
|
|
130
130
|
init?: {
|
|
131
|
-
KeyboardInput?: boolean
|
|
132
|
-
MouseInput?: boolean
|
|
133
|
-
GamepadInput?: boolean
|
|
134
|
-
TouchInput?: boolean
|
|
135
|
-
XRControllerInput?: boolean
|
|
136
|
-
FakeMouseWithTouches?: boolean
|
|
137
|
-
ForceMonoAudio?: boolean
|
|
138
|
-
HoveringMouse?: boolean
|
|
139
|
-
}
|
|
131
|
+
KeyboardInput?: boolean;
|
|
132
|
+
MouseInput?: boolean;
|
|
133
|
+
GamepadInput?: boolean;
|
|
134
|
+
TouchInput?: boolean;
|
|
135
|
+
XRControllerInput?: boolean;
|
|
136
|
+
FakeMouseWithTouches?: boolean;
|
|
137
|
+
ForceMonoAudio?: boolean;
|
|
138
|
+
HoveringMouse?: boolean;
|
|
139
|
+
};
|
|
140
140
|
}>>;
|
|
141
141
|
afk: z.ZodOptional<z.ZodObject<{
|
|
142
142
|
enabled: z.ZodBoolean;
|
|
@@ -144,202 +144,202 @@ export declare const ZStreamInfo: z.ZodObject<{
|
|
|
144
144
|
error: z.ZodNumber;
|
|
145
145
|
action: z.ZodNumber;
|
|
146
146
|
}, "strip", z.ZodTypeAny, {
|
|
147
|
-
|
|
148
|
-
|
|
149
|
-
|
|
150
|
-
action
|
|
147
|
+
enabled?: boolean;
|
|
148
|
+
warn?: number;
|
|
149
|
+
error?: number;
|
|
150
|
+
action?: number;
|
|
151
151
|
}, {
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
action
|
|
152
|
+
enabled?: boolean;
|
|
153
|
+
warn?: number;
|
|
154
|
+
error?: number;
|
|
155
|
+
action?: number;
|
|
156
156
|
}>>;
|
|
157
157
|
}, "strip", z.ZodTypeAny, {
|
|
158
|
-
guid
|
|
159
|
-
autoPlay?: boolean
|
|
160
|
-
touchCapable?: boolean
|
|
158
|
+
guid?: string;
|
|
159
|
+
autoPlay?: boolean;
|
|
160
|
+
touchCapable?: boolean;
|
|
161
161
|
resolution?: {
|
|
162
|
-
width
|
|
163
|
-
height
|
|
164
|
-
dynamic?: boolean
|
|
165
|
-
fixed?: boolean
|
|
166
|
-
}
|
|
162
|
+
width?: number;
|
|
163
|
+
height?: number;
|
|
164
|
+
dynamic?: boolean;
|
|
165
|
+
fixed?: boolean;
|
|
166
|
+
};
|
|
167
167
|
meta?: {
|
|
168
|
-
friendlyName?: string
|
|
169
|
-
isTrial?: boolean
|
|
170
|
-
mouseLock?: boolean
|
|
171
|
-
poweredBy?: boolean
|
|
172
|
-
ueVersion?: string
|
|
173
|
-
version?: string
|
|
174
|
-
}
|
|
168
|
+
friendlyName?: string;
|
|
169
|
+
isTrial?: boolean;
|
|
170
|
+
mouseLock?: boolean;
|
|
171
|
+
poweredBy?: boolean;
|
|
172
|
+
ueVersion?: string;
|
|
173
|
+
version?: string;
|
|
174
|
+
};
|
|
175
175
|
webSdkSettings?: {
|
|
176
176
|
conf?: {
|
|
177
|
-
fullscreenButton?: boolean
|
|
178
|
-
stopButton?: boolean
|
|
179
|
-
audioButton?: boolean
|
|
180
|
-
infoButton?: boolean
|
|
181
|
-
micButton?: boolean
|
|
182
|
-
settingsButton?: boolean
|
|
183
|
-
connectionStrengthIcon?: boolean
|
|
184
|
-
}
|
|
177
|
+
fullscreenButton?: boolean;
|
|
178
|
+
stopButton?: boolean;
|
|
179
|
+
audioButton?: boolean;
|
|
180
|
+
infoButton?: boolean;
|
|
181
|
+
micButton?: boolean;
|
|
182
|
+
settingsButton?: boolean;
|
|
183
|
+
connectionStrengthIcon?: boolean;
|
|
184
|
+
};
|
|
185
185
|
init?: {
|
|
186
|
-
KeyboardInput?: boolean
|
|
187
|
-
MouseInput?: boolean
|
|
188
|
-
GamepadInput?: boolean
|
|
189
|
-
TouchInput?: boolean
|
|
190
|
-
XRControllerInput?: boolean
|
|
191
|
-
FakeMouseWithTouches?: boolean
|
|
192
|
-
ForceMonoAudio?: boolean
|
|
193
|
-
HoveringMouse?: boolean
|
|
194
|
-
}
|
|
195
|
-
}
|
|
186
|
+
KeyboardInput?: boolean;
|
|
187
|
+
MouseInput?: boolean;
|
|
188
|
+
GamepadInput?: boolean;
|
|
189
|
+
TouchInput?: boolean;
|
|
190
|
+
XRControllerInput?: boolean;
|
|
191
|
+
FakeMouseWithTouches?: boolean;
|
|
192
|
+
ForceMonoAudio?: boolean;
|
|
193
|
+
HoveringMouse?: boolean;
|
|
194
|
+
};
|
|
195
|
+
};
|
|
196
196
|
afk?: {
|
|
197
|
-
|
|
198
|
-
|
|
199
|
-
|
|
200
|
-
action
|
|
201
|
-
}
|
|
197
|
+
enabled?: boolean;
|
|
198
|
+
warn?: number;
|
|
199
|
+
error?: number;
|
|
200
|
+
action?: number;
|
|
201
|
+
};
|
|
202
202
|
}, {
|
|
203
|
-
guid
|
|
204
|
-
autoPlay?: boolean
|
|
205
|
-
touchCapable?: boolean
|
|
203
|
+
guid?: string;
|
|
204
|
+
autoPlay?: boolean;
|
|
205
|
+
touchCapable?: boolean;
|
|
206
206
|
resolution?: {
|
|
207
|
-
width
|
|
208
|
-
height
|
|
209
|
-
dynamic?: boolean
|
|
210
|
-
fixed?: boolean
|
|
211
|
-
}
|
|
207
|
+
width?: number;
|
|
208
|
+
height?: number;
|
|
209
|
+
dynamic?: boolean;
|
|
210
|
+
fixed?: boolean;
|
|
211
|
+
};
|
|
212
212
|
meta?: {
|
|
213
|
-
friendlyName?: string
|
|
214
|
-
isTrial?: boolean
|
|
215
|
-
mouseLock?: boolean
|
|
216
|
-
poweredBy?: boolean
|
|
217
|
-
ueVersion?: string
|
|
218
|
-
version?: string
|
|
219
|
-
}
|
|
213
|
+
friendlyName?: string;
|
|
214
|
+
isTrial?: boolean;
|
|
215
|
+
mouseLock?: boolean;
|
|
216
|
+
poweredBy?: boolean;
|
|
217
|
+
ueVersion?: string;
|
|
218
|
+
version?: string;
|
|
219
|
+
};
|
|
220
220
|
webSdkSettings?: {
|
|
221
221
|
conf?: {
|
|
222
|
-
fullscreenButton?: boolean
|
|
223
|
-
stopButton?: boolean
|
|
224
|
-
audioButton?: boolean
|
|
225
|
-
infoButton?: boolean
|
|
226
|
-
micButton?: boolean
|
|
227
|
-
settingsButton?: boolean
|
|
228
|
-
connectionStrengthIcon?: boolean
|
|
229
|
-
}
|
|
222
|
+
fullscreenButton?: boolean;
|
|
223
|
+
stopButton?: boolean;
|
|
224
|
+
audioButton?: boolean;
|
|
225
|
+
infoButton?: boolean;
|
|
226
|
+
micButton?: boolean;
|
|
227
|
+
settingsButton?: boolean;
|
|
228
|
+
connectionStrengthIcon?: boolean;
|
|
229
|
+
};
|
|
230
230
|
init?: {
|
|
231
|
-
KeyboardInput?: boolean
|
|
232
|
-
MouseInput?: boolean
|
|
233
|
-
GamepadInput?: boolean
|
|
234
|
-
TouchInput?: boolean
|
|
235
|
-
XRControllerInput?: boolean
|
|
236
|
-
FakeMouseWithTouches?: boolean
|
|
237
|
-
ForceMonoAudio?: boolean
|
|
238
|
-
HoveringMouse?: boolean
|
|
239
|
-
}
|
|
240
|
-
}
|
|
231
|
+
KeyboardInput?: boolean;
|
|
232
|
+
MouseInput?: boolean;
|
|
233
|
+
GamepadInput?: boolean;
|
|
234
|
+
TouchInput?: boolean;
|
|
235
|
+
XRControllerInput?: boolean;
|
|
236
|
+
FakeMouseWithTouches?: boolean;
|
|
237
|
+
ForceMonoAudio?: boolean;
|
|
238
|
+
HoveringMouse?: boolean;
|
|
239
|
+
};
|
|
240
|
+
};
|
|
241
241
|
afk?: {
|
|
242
|
-
|
|
243
|
-
|
|
244
|
-
|
|
245
|
-
action
|
|
246
|
-
}
|
|
242
|
+
enabled?: boolean;
|
|
243
|
+
warn?: number;
|
|
244
|
+
error?: number;
|
|
245
|
+
action?: number;
|
|
246
|
+
};
|
|
247
247
|
}>;
|
|
248
248
|
}, "strip", z.ZodTypeAny, {
|
|
249
|
-
type
|
|
250
|
-
streamInfo
|
|
251
|
-
guid
|
|
252
|
-
autoPlay?: boolean
|
|
253
|
-
touchCapable?: boolean
|
|
249
|
+
type?: "streamInfo";
|
|
250
|
+
streamInfo?: {
|
|
251
|
+
guid?: string;
|
|
252
|
+
autoPlay?: boolean;
|
|
253
|
+
touchCapable?: boolean;
|
|
254
254
|
resolution?: {
|
|
255
|
-
width
|
|
256
|
-
height
|
|
257
|
-
dynamic?: boolean
|
|
258
|
-
fixed?: boolean
|
|
259
|
-
}
|
|
255
|
+
width?: number;
|
|
256
|
+
height?: number;
|
|
257
|
+
dynamic?: boolean;
|
|
258
|
+
fixed?: boolean;
|
|
259
|
+
};
|
|
260
260
|
meta?: {
|
|
261
|
-
friendlyName?: string
|
|
262
|
-
isTrial?: boolean
|
|
263
|
-
mouseLock?: boolean
|
|
264
|
-
poweredBy?: boolean
|
|
265
|
-
ueVersion?: string
|
|
266
|
-
version?: string
|
|
267
|
-
}
|
|
261
|
+
friendlyName?: string;
|
|
262
|
+
isTrial?: boolean;
|
|
263
|
+
mouseLock?: boolean;
|
|
264
|
+
poweredBy?: boolean;
|
|
265
|
+
ueVersion?: string;
|
|
266
|
+
version?: string;
|
|
267
|
+
};
|
|
268
268
|
webSdkSettings?: {
|
|
269
269
|
conf?: {
|
|
270
|
-
fullscreenButton?: boolean
|
|
271
|
-
stopButton?: boolean
|
|
272
|
-
audioButton?: boolean
|
|
273
|
-
infoButton?: boolean
|
|
274
|
-
micButton?: boolean
|
|
275
|
-
settingsButton?: boolean
|
|
276
|
-
connectionStrengthIcon?: boolean
|
|
277
|
-
}
|
|
270
|
+
fullscreenButton?: boolean;
|
|
271
|
+
stopButton?: boolean;
|
|
272
|
+
audioButton?: boolean;
|
|
273
|
+
infoButton?: boolean;
|
|
274
|
+
micButton?: boolean;
|
|
275
|
+
settingsButton?: boolean;
|
|
276
|
+
connectionStrengthIcon?: boolean;
|
|
277
|
+
};
|
|
278
278
|
init?: {
|
|
279
|
-
KeyboardInput?: boolean
|
|
280
|
-
MouseInput?: boolean
|
|
281
|
-
GamepadInput?: boolean
|
|
282
|
-
TouchInput?: boolean
|
|
283
|
-
XRControllerInput?: boolean
|
|
284
|
-
FakeMouseWithTouches?: boolean
|
|
285
|
-
ForceMonoAudio?: boolean
|
|
286
|
-
HoveringMouse?: boolean
|
|
287
|
-
}
|
|
288
|
-
}
|
|
279
|
+
KeyboardInput?: boolean;
|
|
280
|
+
MouseInput?: boolean;
|
|
281
|
+
GamepadInput?: boolean;
|
|
282
|
+
TouchInput?: boolean;
|
|
283
|
+
XRControllerInput?: boolean;
|
|
284
|
+
FakeMouseWithTouches?: boolean;
|
|
285
|
+
ForceMonoAudio?: boolean;
|
|
286
|
+
HoveringMouse?: boolean;
|
|
287
|
+
};
|
|
288
|
+
};
|
|
289
289
|
afk?: {
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
action
|
|
294
|
-
}
|
|
290
|
+
enabled?: boolean;
|
|
291
|
+
warn?: number;
|
|
292
|
+
error?: number;
|
|
293
|
+
action?: number;
|
|
294
|
+
};
|
|
295
295
|
};
|
|
296
296
|
}, {
|
|
297
|
-
type
|
|
298
|
-
streamInfo
|
|
299
|
-
guid
|
|
300
|
-
autoPlay?: boolean
|
|
301
|
-
touchCapable?: boolean
|
|
297
|
+
type?: "streamInfo";
|
|
298
|
+
streamInfo?: {
|
|
299
|
+
guid?: string;
|
|
300
|
+
autoPlay?: boolean;
|
|
301
|
+
touchCapable?: boolean;
|
|
302
302
|
resolution?: {
|
|
303
|
-
width
|
|
304
|
-
height
|
|
305
|
-
dynamic?: boolean
|
|
306
|
-
fixed?: boolean
|
|
307
|
-
}
|
|
303
|
+
width?: number;
|
|
304
|
+
height?: number;
|
|
305
|
+
dynamic?: boolean;
|
|
306
|
+
fixed?: boolean;
|
|
307
|
+
};
|
|
308
308
|
meta?: {
|
|
309
|
-
friendlyName?: string
|
|
310
|
-
isTrial?: boolean
|
|
311
|
-
mouseLock?: boolean
|
|
312
|
-
poweredBy?: boolean
|
|
313
|
-
ueVersion?: string
|
|
314
|
-
version?: string
|
|
315
|
-
}
|
|
309
|
+
friendlyName?: string;
|
|
310
|
+
isTrial?: boolean;
|
|
311
|
+
mouseLock?: boolean;
|
|
312
|
+
poweredBy?: boolean;
|
|
313
|
+
ueVersion?: string;
|
|
314
|
+
version?: string;
|
|
315
|
+
};
|
|
316
316
|
webSdkSettings?: {
|
|
317
317
|
conf?: {
|
|
318
|
-
fullscreenButton?: boolean
|
|
319
|
-
stopButton?: boolean
|
|
320
|
-
audioButton?: boolean
|
|
321
|
-
infoButton?: boolean
|
|
322
|
-
micButton?: boolean
|
|
323
|
-
settingsButton?: boolean
|
|
324
|
-
connectionStrengthIcon?: boolean
|
|
325
|
-
}
|
|
318
|
+
fullscreenButton?: boolean;
|
|
319
|
+
stopButton?: boolean;
|
|
320
|
+
audioButton?: boolean;
|
|
321
|
+
infoButton?: boolean;
|
|
322
|
+
micButton?: boolean;
|
|
323
|
+
settingsButton?: boolean;
|
|
324
|
+
connectionStrengthIcon?: boolean;
|
|
325
|
+
};
|
|
326
326
|
init?: {
|
|
327
|
-
KeyboardInput?: boolean
|
|
328
|
-
MouseInput?: boolean
|
|
329
|
-
GamepadInput?: boolean
|
|
330
|
-
TouchInput?: boolean
|
|
331
|
-
XRControllerInput?: boolean
|
|
332
|
-
FakeMouseWithTouches?: boolean
|
|
333
|
-
ForceMonoAudio?: boolean
|
|
334
|
-
HoveringMouse?: boolean
|
|
335
|
-
}
|
|
336
|
-
}
|
|
327
|
+
KeyboardInput?: boolean;
|
|
328
|
+
MouseInput?: boolean;
|
|
329
|
+
GamepadInput?: boolean;
|
|
330
|
+
TouchInput?: boolean;
|
|
331
|
+
XRControllerInput?: boolean;
|
|
332
|
+
FakeMouseWithTouches?: boolean;
|
|
333
|
+
ForceMonoAudio?: boolean;
|
|
334
|
+
HoveringMouse?: boolean;
|
|
335
|
+
};
|
|
336
|
+
};
|
|
337
337
|
afk?: {
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
action
|
|
342
|
-
}
|
|
338
|
+
enabled?: boolean;
|
|
339
|
+
warn?: number;
|
|
340
|
+
error?: number;
|
|
341
|
+
action?: number;
|
|
342
|
+
};
|
|
343
343
|
};
|
|
344
344
|
}>;
|
|
345
345
|
export type StreamInfo = z.infer<typeof ZStreamInfo>;
|
|
@@ -3,10 +3,10 @@ export declare const ZVersion: z.ZodObject<{
|
|
|
3
3
|
type: z.ZodLiteral<"version">;
|
|
4
4
|
version: z.ZodOptional<z.ZodString>;
|
|
5
5
|
}, "strip", z.ZodTypeAny, {
|
|
6
|
-
type
|
|
7
|
-
version?: string
|
|
6
|
+
type?: "version";
|
|
7
|
+
version?: string;
|
|
8
8
|
}, {
|
|
9
|
-
type
|
|
10
|
-
version?: string
|
|
9
|
+
type?: "version";
|
|
10
|
+
version?: string;
|
|
11
11
|
}>;
|
|
12
12
|
export type Version = z.infer<typeof ZVersion>;
|