@workadventure/iframe-api-typings 1.20.1 → 1.21.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/libs/shared-utils/src/Events/ChatEvent.d.ts +20 -17
- package/package.json +2 -2
- package/play/src/front/Api/Events/AddPlayerEvent.d.ts +23 -17
- package/play/src/front/Api/Events/AskPositionEvent.d.ts +2 -2
- package/play/src/front/Api/Events/CameraFollowPlayerEvent.d.ts +2 -2
- package/play/src/front/Api/Events/CameraSetEvent.d.ts +4 -4
- package/play/src/front/Api/Events/CreateDynamicAreaEvent.d.ts +4 -4
- package/play/src/front/Api/Events/EmbeddedWebsiteEvent.d.ts +10 -10
- package/play/src/front/Api/Events/GameStateEvent.d.ts +16 -16
- package/play/src/front/Api/Events/HasPlayerMovedEvent.d.ts +3 -3
- package/play/src/front/Api/Events/IframeEvent.d.ts +625 -640
- package/play/src/front/Api/Events/ModalEvent.d.ts +4 -4
- package/play/src/front/Api/Events/MovePlayerToEvent.d.ts +2 -2
- package/play/src/front/Api/Events/OpenCoWebsiteEvent.d.ts +4 -4
- package/play/src/front/Api/Events/OpenPopupEvent.d.ts +6 -6
- package/play/src/front/Api/Events/PlaySoundEvent.d.ts +2 -2
- package/play/src/front/Api/Events/ProximityMeeting/JoinProximityMeetingEvent.d.ts +21 -16
- package/play/src/front/Api/Events/ProximityMeeting/ParticipantProximityMeetingEvent.d.ts +21 -16
- package/play/src/front/Api/Events/ReceiveEventEvent.d.ts +6 -6
- package/play/src/front/Api/Events/SendEventEvent.d.ts +6 -6
- package/play/src/front/Api/Events/SetAreaPropertyEvent.d.ts +2 -2
- package/play/src/front/Api/Events/SetPlayerVariableEvent.d.ts +5 -5
- package/play/src/front/Api/Events/SetPropertyEvent.d.ts +2 -2
- package/play/src/front/Api/Events/SetSharedPlayerVariableEvent.d.ts +4 -4
- package/play/src/front/Api/Events/SetVariableEvent.d.ts +6 -6
- package/play/src/front/Api/Events/SettingsEvent.d.ts +3 -3
- package/play/src/front/Api/Events/Ui/BannerEvent.d.ts +3 -3
- package/play/src/front/Api/Events/Ui/ButtonActionBarEvent.d.ts +2 -2
- package/play/src/front/Api/Events/Ui/MenuEvents.d.ts +4 -4
- package/play/src/front/Api/Events/Ui/UIWebsiteEvent.d.ts +35 -35
- package/play/src/front/Api/Events/UserInputChatEvent.d.ts +2 -2
- package/play/src/front/Api/Iframe/AbstractEvent.d.ts +2 -2
- package/play/src/front/Api/Iframe/AbstractState.d.ts +1 -1
- package/play/src/front/Api/Iframe/Player/ProximityMeeting.d.ts +25 -20
- package/play/src/front/Api/Iframe/Ui/Modal.d.ts +2 -2
- package/play/src/front/Api/Iframe/chat.d.ts +1 -1
- package/play/src/front/Api/Iframe/event.d.ts +1 -1
- package/play/src/front/Api/Iframe/mapEditor.d.ts +37 -0
- package/play/src/front/Api/Iframe/player.d.ts +2 -2
- package/play/src/front/Api/Iframe/playerState.d.ts +1 -1
- package/play/src/front/Api/Iframe/players.d.ts +11 -9
- package/play/src/front/Api/Iframe/state.d.ts +1 -1
- package/play/src/front/Api/Iframe/ui.d.ts +5 -4
- package/play/src/iframe_api.d.ts +1 -0
- package/play/src/front/Api/Events/NotificationEvent.d.ts +0 -18
|
@@ -80,11 +80,11 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
80
80
|
scope: z.ZodLiteral<"local">;
|
|
81
81
|
author: z.ZodOptional<z.ZodString>;
|
|
82
82
|
}, "strip", z.ZodTypeAny, {
|
|
83
|
-
author?: string | undefined;
|
|
84
83
|
scope: "local";
|
|
85
|
-
}, {
|
|
86
84
|
author?: string | undefined;
|
|
85
|
+
}, {
|
|
87
86
|
scope: "local";
|
|
87
|
+
author?: string | undefined;
|
|
88
88
|
}>, z.ZodObject<{
|
|
89
89
|
scope: z.ZodLiteral<"bubble">;
|
|
90
90
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -95,16 +95,16 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
95
95
|
}, "strip", z.ZodTypeAny, {
|
|
96
96
|
message: string;
|
|
97
97
|
options: {
|
|
98
|
-
author?: string | undefined;
|
|
99
98
|
scope: "local";
|
|
99
|
+
author?: string | undefined;
|
|
100
100
|
} | {
|
|
101
101
|
scope: "bubble";
|
|
102
102
|
};
|
|
103
103
|
}, {
|
|
104
104
|
message: string;
|
|
105
105
|
options: {
|
|
106
|
-
author?: string | undefined;
|
|
107
106
|
scope: "local";
|
|
107
|
+
author?: string | undefined;
|
|
108
108
|
} | {
|
|
109
109
|
scope: "bubble";
|
|
110
110
|
};
|
|
@@ -114,8 +114,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
114
114
|
data: {
|
|
115
115
|
message: string;
|
|
116
116
|
options: {
|
|
117
|
-
author?: string | undefined;
|
|
118
117
|
scope: "local";
|
|
118
|
+
author?: string | undefined;
|
|
119
119
|
} | {
|
|
120
120
|
scope: "bubble";
|
|
121
121
|
};
|
|
@@ -125,8 +125,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
125
125
|
data: {
|
|
126
126
|
message: string;
|
|
127
127
|
options: {
|
|
128
|
-
author?: string | undefined;
|
|
129
128
|
scope: "local";
|
|
129
|
+
author?: string | undefined;
|
|
130
130
|
} | {
|
|
131
131
|
scope: "bubble";
|
|
132
132
|
};
|
|
@@ -173,20 +173,20 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
173
173
|
type: z.ZodLiteral<"openChat">;
|
|
174
174
|
data: z.ZodUndefined;
|
|
175
175
|
}, "strip", z.ZodTypeAny, {
|
|
176
|
-
data?: undefined;
|
|
177
176
|
type: "openChat";
|
|
178
|
-
}, {
|
|
179
177
|
data?: undefined;
|
|
178
|
+
}, {
|
|
180
179
|
type: "openChat";
|
|
180
|
+
data?: undefined;
|
|
181
181
|
}>, z.ZodObject<{
|
|
182
182
|
type: z.ZodLiteral<"closeChat">;
|
|
183
183
|
data: z.ZodUndefined;
|
|
184
184
|
}, "strip", z.ZodTypeAny, {
|
|
185
|
-
data?: undefined;
|
|
186
185
|
type: "closeChat";
|
|
187
|
-
}, {
|
|
188
186
|
data?: undefined;
|
|
187
|
+
}, {
|
|
189
188
|
type: "closeChat";
|
|
189
|
+
data?: undefined;
|
|
190
190
|
}>, z.ZodObject<{
|
|
191
191
|
type: z.ZodLiteral<"addPersonnalMessage">;
|
|
192
192
|
data: z.ZodString;
|
|
@@ -211,23 +211,23 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
211
211
|
smooth: z.ZodBoolean;
|
|
212
212
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
213
213
|
}, "strip", z.ZodTypeAny, {
|
|
214
|
-
duration?: number | undefined;
|
|
215
214
|
smooth: boolean;
|
|
216
|
-
}, {
|
|
217
215
|
duration?: number | undefined;
|
|
216
|
+
}, {
|
|
218
217
|
smooth: boolean;
|
|
218
|
+
duration?: number | undefined;
|
|
219
219
|
}>;
|
|
220
220
|
}, "strip", z.ZodTypeAny, {
|
|
221
221
|
type: "cameraFollowPlayer";
|
|
222
222
|
data: {
|
|
223
|
-
duration?: number | undefined;
|
|
224
223
|
smooth: boolean;
|
|
224
|
+
duration?: number | undefined;
|
|
225
225
|
};
|
|
226
226
|
}, {
|
|
227
227
|
type: "cameraFollowPlayer";
|
|
228
228
|
data: {
|
|
229
|
-
duration?: number | undefined;
|
|
230
229
|
smooth: boolean;
|
|
230
|
+
duration?: number | undefined;
|
|
231
231
|
};
|
|
232
232
|
}>, z.ZodObject<{
|
|
233
233
|
type: z.ZodLiteral<"cameraSet">;
|
|
@@ -240,43 +240,43 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
240
240
|
smooth: z.ZodBoolean;
|
|
241
241
|
duration: z.ZodOptional<z.ZodNumber>;
|
|
242
242
|
}, "strip", z.ZodTypeAny, {
|
|
243
|
-
height?: number | undefined;
|
|
244
|
-
width?: number | undefined;
|
|
245
|
-
duration?: number | undefined;
|
|
246
243
|
x: number;
|
|
247
244
|
y: number;
|
|
248
245
|
lock: boolean;
|
|
249
246
|
smooth: boolean;
|
|
250
|
-
}, {
|
|
251
247
|
height?: number | undefined;
|
|
252
248
|
width?: number | undefined;
|
|
253
249
|
duration?: number | undefined;
|
|
250
|
+
}, {
|
|
254
251
|
x: number;
|
|
255
252
|
y: number;
|
|
256
253
|
lock: boolean;
|
|
257
254
|
smooth: boolean;
|
|
255
|
+
height?: number | undefined;
|
|
256
|
+
width?: number | undefined;
|
|
257
|
+
duration?: number | undefined;
|
|
258
258
|
}>;
|
|
259
259
|
}, "strip", z.ZodTypeAny, {
|
|
260
260
|
type: "cameraSet";
|
|
261
261
|
data: {
|
|
262
|
-
height?: number | undefined;
|
|
263
|
-
width?: number | undefined;
|
|
264
|
-
duration?: number | undefined;
|
|
265
262
|
x: number;
|
|
266
263
|
y: number;
|
|
267
264
|
lock: boolean;
|
|
268
265
|
smooth: boolean;
|
|
266
|
+
height?: number | undefined;
|
|
267
|
+
width?: number | undefined;
|
|
268
|
+
duration?: number | undefined;
|
|
269
269
|
};
|
|
270
270
|
}, {
|
|
271
271
|
type: "cameraSet";
|
|
272
272
|
data: {
|
|
273
|
-
height?: number | undefined;
|
|
274
|
-
width?: number | undefined;
|
|
275
|
-
duration?: number | undefined;
|
|
276
273
|
x: number;
|
|
277
274
|
y: number;
|
|
278
275
|
lock: boolean;
|
|
279
276
|
smooth: boolean;
|
|
277
|
+
height?: number | undefined;
|
|
278
|
+
width?: number | undefined;
|
|
279
|
+
duration?: number | undefined;
|
|
280
280
|
};
|
|
281
281
|
}>, z.ZodObject<{
|
|
282
282
|
type: z.ZodLiteral<"openPopup">;
|
|
@@ -288,27 +288,27 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
288
288
|
label: z.ZodString;
|
|
289
289
|
className: z.ZodOptional<z.ZodString>;
|
|
290
290
|
}, "strip", z.ZodTypeAny, {
|
|
291
|
-
className?: string | undefined;
|
|
292
291
|
label: string;
|
|
293
|
-
}, {
|
|
294
292
|
className?: string | undefined;
|
|
293
|
+
}, {
|
|
295
294
|
label: string;
|
|
295
|
+
className?: string | undefined;
|
|
296
296
|
}>, "many">;
|
|
297
297
|
}, "strip", z.ZodTypeAny, {
|
|
298
298
|
message: string;
|
|
299
299
|
popupId: number;
|
|
300
300
|
targetObject: string;
|
|
301
301
|
buttons: {
|
|
302
|
-
className?: string | undefined;
|
|
303
302
|
label: string;
|
|
303
|
+
className?: string | undefined;
|
|
304
304
|
}[];
|
|
305
305
|
}, {
|
|
306
306
|
message: string;
|
|
307
307
|
popupId: number;
|
|
308
308
|
targetObject: string;
|
|
309
309
|
buttons: {
|
|
310
|
-
className?: string | undefined;
|
|
311
310
|
label: string;
|
|
311
|
+
className?: string | undefined;
|
|
312
312
|
}[];
|
|
313
313
|
}>;
|
|
314
314
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -318,8 +318,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
318
318
|
popupId: number;
|
|
319
319
|
targetObject: string;
|
|
320
320
|
buttons: {
|
|
321
|
-
className?: string | undefined;
|
|
322
321
|
label: string;
|
|
322
|
+
className?: string | undefined;
|
|
323
323
|
}[];
|
|
324
324
|
};
|
|
325
325
|
}, {
|
|
@@ -329,8 +329,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
329
329
|
popupId: number;
|
|
330
330
|
targetObject: string;
|
|
331
331
|
buttons: {
|
|
332
|
-
className?: string | undefined;
|
|
333
332
|
label: string;
|
|
333
|
+
className?: string | undefined;
|
|
334
334
|
}[];
|
|
335
335
|
};
|
|
336
336
|
}>, z.ZodObject<{
|
|
@@ -394,128 +394,128 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
394
394
|
type: z.ZodLiteral<"turnOffMicrophone">;
|
|
395
395
|
data: z.ZodUndefined;
|
|
396
396
|
}, "strip", z.ZodTypeAny, {
|
|
397
|
-
data?: undefined;
|
|
398
397
|
type: "turnOffMicrophone";
|
|
399
|
-
}, {
|
|
400
398
|
data?: undefined;
|
|
399
|
+
}, {
|
|
401
400
|
type: "turnOffMicrophone";
|
|
401
|
+
data?: undefined;
|
|
402
402
|
}>, z.ZodObject<{
|
|
403
403
|
type: z.ZodLiteral<"turnOffWebcam">;
|
|
404
404
|
data: z.ZodUndefined;
|
|
405
405
|
}, "strip", z.ZodTypeAny, {
|
|
406
|
-
data?: undefined;
|
|
407
406
|
type: "turnOffWebcam";
|
|
408
|
-
}, {
|
|
409
407
|
data?: undefined;
|
|
408
|
+
}, {
|
|
410
409
|
type: "turnOffWebcam";
|
|
410
|
+
data?: undefined;
|
|
411
411
|
}>, z.ZodObject<{
|
|
412
412
|
type: z.ZodLiteral<"disableMicrophone">;
|
|
413
413
|
data: z.ZodUndefined;
|
|
414
414
|
}, "strip", z.ZodTypeAny, {
|
|
415
|
-
data?: undefined;
|
|
416
415
|
type: "disableMicrophone";
|
|
417
|
-
}, {
|
|
418
416
|
data?: undefined;
|
|
417
|
+
}, {
|
|
419
418
|
type: "disableMicrophone";
|
|
419
|
+
data?: undefined;
|
|
420
420
|
}>, z.ZodObject<{
|
|
421
421
|
type: z.ZodLiteral<"restoreMicrophone">;
|
|
422
422
|
data: z.ZodUndefined;
|
|
423
423
|
}, "strip", z.ZodTypeAny, {
|
|
424
|
-
data?: undefined;
|
|
425
424
|
type: "restoreMicrophone";
|
|
426
|
-
}, {
|
|
427
425
|
data?: undefined;
|
|
426
|
+
}, {
|
|
428
427
|
type: "restoreMicrophone";
|
|
428
|
+
data?: undefined;
|
|
429
429
|
}>, z.ZodObject<{
|
|
430
430
|
type: z.ZodLiteral<"disableWebcam">;
|
|
431
431
|
data: z.ZodUndefined;
|
|
432
432
|
}, "strip", z.ZodTypeAny, {
|
|
433
|
-
data?: undefined;
|
|
434
433
|
type: "disableWebcam";
|
|
435
|
-
}, {
|
|
436
434
|
data?: undefined;
|
|
435
|
+
}, {
|
|
437
436
|
type: "disableWebcam";
|
|
437
|
+
data?: undefined;
|
|
438
438
|
}>, z.ZodObject<{
|
|
439
439
|
type: z.ZodLiteral<"restoreWebcam">;
|
|
440
440
|
data: z.ZodUndefined;
|
|
441
441
|
}, "strip", z.ZodTypeAny, {
|
|
442
|
-
data?: undefined;
|
|
443
442
|
type: "restoreWebcam";
|
|
444
|
-
}, {
|
|
445
443
|
data?: undefined;
|
|
444
|
+
}, {
|
|
446
445
|
type: "restoreWebcam";
|
|
446
|
+
data?: undefined;
|
|
447
447
|
}>, z.ZodObject<{
|
|
448
448
|
type: z.ZodLiteral<"disablePlayerControls">;
|
|
449
449
|
data: z.ZodUndefined;
|
|
450
450
|
}, "strip", z.ZodTypeAny, {
|
|
451
|
-
data?: undefined;
|
|
452
451
|
type: "disablePlayerControls";
|
|
453
|
-
}, {
|
|
454
452
|
data?: undefined;
|
|
453
|
+
}, {
|
|
455
454
|
type: "disablePlayerControls";
|
|
455
|
+
data?: undefined;
|
|
456
456
|
}>, z.ZodObject<{
|
|
457
457
|
type: z.ZodLiteral<"restorePlayerControls">;
|
|
458
458
|
data: z.ZodUndefined;
|
|
459
459
|
}, "strip", z.ZodTypeAny, {
|
|
460
|
-
data?: undefined;
|
|
461
460
|
type: "restorePlayerControls";
|
|
462
|
-
}, {
|
|
463
461
|
data?: undefined;
|
|
462
|
+
}, {
|
|
464
463
|
type: "restorePlayerControls";
|
|
464
|
+
data?: undefined;
|
|
465
465
|
}>, z.ZodObject<{
|
|
466
466
|
type: z.ZodLiteral<"disablePlayerProximityMeeting">;
|
|
467
467
|
data: z.ZodUndefined;
|
|
468
468
|
}, "strip", z.ZodTypeAny, {
|
|
469
|
-
data?: undefined;
|
|
470
469
|
type: "disablePlayerProximityMeeting";
|
|
471
|
-
}, {
|
|
472
470
|
data?: undefined;
|
|
471
|
+
}, {
|
|
473
472
|
type: "disablePlayerProximityMeeting";
|
|
473
|
+
data?: undefined;
|
|
474
474
|
}>, z.ZodObject<{
|
|
475
475
|
type: z.ZodLiteral<"restorePlayerProximityMeeting">;
|
|
476
476
|
data: z.ZodUndefined;
|
|
477
477
|
}, "strip", z.ZodTypeAny, {
|
|
478
|
-
data?: undefined;
|
|
479
478
|
type: "restorePlayerProximityMeeting";
|
|
480
|
-
}, {
|
|
481
479
|
data?: undefined;
|
|
480
|
+
}, {
|
|
482
481
|
type: "restorePlayerProximityMeeting";
|
|
482
|
+
data?: undefined;
|
|
483
483
|
}>, z.ZodObject<{
|
|
484
484
|
type: z.ZodLiteral<"displayBubble">;
|
|
485
485
|
data: z.ZodUndefined;
|
|
486
486
|
}, "strip", z.ZodTypeAny, {
|
|
487
|
-
data?: undefined;
|
|
488
487
|
type: "displayBubble";
|
|
489
|
-
}, {
|
|
490
488
|
data?: undefined;
|
|
489
|
+
}, {
|
|
491
490
|
type: "displayBubble";
|
|
491
|
+
data?: undefined;
|
|
492
492
|
}>, z.ZodObject<{
|
|
493
493
|
type: z.ZodLiteral<"removeBubble">;
|
|
494
494
|
data: z.ZodUndefined;
|
|
495
495
|
}, "strip", z.ZodTypeAny, {
|
|
496
|
-
data?: undefined;
|
|
497
496
|
type: "removeBubble";
|
|
498
|
-
}, {
|
|
499
497
|
data?: undefined;
|
|
498
|
+
}, {
|
|
500
499
|
type: "removeBubble";
|
|
500
|
+
data?: undefined;
|
|
501
501
|
}>, z.ZodObject<{
|
|
502
502
|
type: z.ZodLiteral<"onPlayerMove">;
|
|
503
503
|
data: z.ZodUndefined;
|
|
504
504
|
}, "strip", z.ZodTypeAny, {
|
|
505
|
-
data?: undefined;
|
|
506
505
|
type: "onPlayerMove";
|
|
507
|
-
}, {
|
|
508
506
|
data?: undefined;
|
|
507
|
+
}, {
|
|
509
508
|
type: "onPlayerMove";
|
|
509
|
+
data?: undefined;
|
|
510
510
|
}>, z.ZodObject<{
|
|
511
511
|
type: z.ZodLiteral<"onCameraUpdate">;
|
|
512
512
|
data: z.ZodUndefined;
|
|
513
513
|
}, "strip", z.ZodTypeAny, {
|
|
514
|
-
data?: undefined;
|
|
515
514
|
type: "onCameraUpdate";
|
|
516
|
-
}, {
|
|
517
515
|
data?: undefined;
|
|
516
|
+
}, {
|
|
518
517
|
type: "onCameraUpdate";
|
|
518
|
+
data?: undefined;
|
|
519
519
|
}>, z.ZodObject<{
|
|
520
520
|
type: z.ZodLiteral<"showLayer">;
|
|
521
521
|
data: z.ZodObject<{
|
|
@@ -561,27 +561,27 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
561
561
|
propertyName: z.ZodString;
|
|
562
562
|
propertyValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
563
563
|
}, "strip", z.ZodTypeAny, {
|
|
564
|
-
propertyValue?: string | number | boolean | undefined;
|
|
565
564
|
layerName: string;
|
|
566
565
|
propertyName: string;
|
|
567
|
-
}, {
|
|
568
566
|
propertyValue?: string | number | boolean | undefined;
|
|
567
|
+
}, {
|
|
569
568
|
layerName: string;
|
|
570
569
|
propertyName: string;
|
|
570
|
+
propertyValue?: string | number | boolean | undefined;
|
|
571
571
|
}>;
|
|
572
572
|
}, "strip", z.ZodTypeAny, {
|
|
573
573
|
type: "setProperty";
|
|
574
574
|
data: {
|
|
575
|
-
propertyValue?: string | number | boolean | undefined;
|
|
576
575
|
layerName: string;
|
|
577
576
|
propertyName: string;
|
|
577
|
+
propertyValue?: string | number | boolean | undefined;
|
|
578
578
|
};
|
|
579
579
|
}, {
|
|
580
580
|
type: "setProperty";
|
|
581
581
|
data: {
|
|
582
|
-
propertyValue?: string | number | boolean | undefined;
|
|
583
582
|
layerName: string;
|
|
584
583
|
propertyName: string;
|
|
584
|
+
propertyValue?: string | number | boolean | undefined;
|
|
585
585
|
};
|
|
586
586
|
}>, z.ZodObject<{
|
|
587
587
|
type: z.ZodLiteral<"setAreaProperty">;
|
|
@@ -590,27 +590,27 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
590
590
|
propertyName: z.ZodString;
|
|
591
591
|
propertyValue: z.ZodOptional<z.ZodUnion<[z.ZodString, z.ZodNumber, z.ZodBoolean]>>;
|
|
592
592
|
}, "strip", z.ZodTypeAny, {
|
|
593
|
-
propertyValue?: string | number | boolean | undefined;
|
|
594
593
|
propertyName: string;
|
|
595
594
|
areaName: string;
|
|
596
|
-
}, {
|
|
597
595
|
propertyValue?: string | number | boolean | undefined;
|
|
596
|
+
}, {
|
|
598
597
|
propertyName: string;
|
|
599
598
|
areaName: string;
|
|
599
|
+
propertyValue?: string | number | boolean | undefined;
|
|
600
600
|
}>;
|
|
601
601
|
}, "strip", z.ZodTypeAny, {
|
|
602
602
|
type: "setAreaProperty";
|
|
603
603
|
data: {
|
|
604
|
-
propertyValue?: string | number | boolean | undefined;
|
|
605
604
|
propertyName: string;
|
|
606
605
|
areaName: string;
|
|
606
|
+
propertyValue?: string | number | boolean | undefined;
|
|
607
607
|
};
|
|
608
608
|
}, {
|
|
609
609
|
type: "setAreaProperty";
|
|
610
610
|
data: {
|
|
611
|
-
propertyValue?: string | number | boolean | undefined;
|
|
612
611
|
propertyName: string;
|
|
613
612
|
areaName: string;
|
|
613
|
+
propertyValue?: string | number | boolean | undefined;
|
|
614
614
|
};
|
|
615
615
|
}>, z.ZodObject<{
|
|
616
616
|
type: z.ZodLiteral<"loadSound">;
|
|
@@ -661,6 +661,7 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
661
661
|
delay?: number | undefined;
|
|
662
662
|
}>>;
|
|
663
663
|
}, "strip", z.ZodTypeAny, {
|
|
664
|
+
url: string;
|
|
664
665
|
config?: {
|
|
665
666
|
volume?: number | undefined;
|
|
666
667
|
loop?: boolean | undefined;
|
|
@@ -670,8 +671,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
670
671
|
seek?: number | undefined;
|
|
671
672
|
delay?: number | undefined;
|
|
672
673
|
} | undefined;
|
|
673
|
-
url: string;
|
|
674
674
|
}, {
|
|
675
|
+
url: string;
|
|
675
676
|
config?: {
|
|
676
677
|
volume?: number | undefined;
|
|
677
678
|
loop?: boolean | undefined;
|
|
@@ -681,11 +682,11 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
681
682
|
seek?: number | undefined;
|
|
682
683
|
delay?: number | undefined;
|
|
683
684
|
} | undefined;
|
|
684
|
-
url: string;
|
|
685
685
|
}>;
|
|
686
686
|
}, "strip", z.ZodTypeAny, {
|
|
687
687
|
type: "playSound";
|
|
688
688
|
data: {
|
|
689
|
+
url: string;
|
|
689
690
|
config?: {
|
|
690
691
|
volume?: number | undefined;
|
|
691
692
|
loop?: boolean | undefined;
|
|
@@ -695,11 +696,11 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
695
696
|
seek?: number | undefined;
|
|
696
697
|
delay?: number | undefined;
|
|
697
698
|
} | undefined;
|
|
698
|
-
url: string;
|
|
699
699
|
};
|
|
700
700
|
}, {
|
|
701
701
|
type: "playSound";
|
|
702
702
|
data: {
|
|
703
|
+
url: string;
|
|
703
704
|
config?: {
|
|
704
705
|
volume?: number | undefined;
|
|
705
706
|
loop?: boolean | undefined;
|
|
@@ -709,7 +710,6 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
709
710
|
seek?: number | undefined;
|
|
710
711
|
delay?: number | undefined;
|
|
711
712
|
} | undefined;
|
|
712
|
-
url: string;
|
|
713
713
|
};
|
|
714
714
|
}>, z.ZodObject<{
|
|
715
715
|
type: z.ZodLiteral<"stopSound">;
|
|
@@ -744,39 +744,39 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
744
744
|
allowApi: boolean;
|
|
745
745
|
}>;
|
|
746
746
|
}, "strip", z.ZodTypeAny, {
|
|
747
|
-
iframe?: string | undefined;
|
|
748
747
|
options: {
|
|
749
748
|
allowApi: boolean;
|
|
750
749
|
};
|
|
751
|
-
key: string;
|
|
752
750
|
name: string;
|
|
753
|
-
|
|
751
|
+
key: string;
|
|
754
752
|
iframe?: string | undefined;
|
|
753
|
+
}, {
|
|
755
754
|
options: {
|
|
756
755
|
allowApi: boolean;
|
|
757
756
|
};
|
|
758
|
-
key: string;
|
|
759
757
|
name: string;
|
|
758
|
+
key: string;
|
|
759
|
+
iframe?: string | undefined;
|
|
760
760
|
}>;
|
|
761
761
|
}, "strip", z.ZodTypeAny, {
|
|
762
762
|
type: "registerMenu";
|
|
763
763
|
data: {
|
|
764
|
-
iframe?: string | undefined;
|
|
765
764
|
options: {
|
|
766
765
|
allowApi: boolean;
|
|
767
766
|
};
|
|
768
|
-
key: string;
|
|
769
767
|
name: string;
|
|
768
|
+
key: string;
|
|
769
|
+
iframe?: string | undefined;
|
|
770
770
|
};
|
|
771
771
|
}, {
|
|
772
772
|
type: "registerMenu";
|
|
773
773
|
data: {
|
|
774
|
-
iframe?: string | undefined;
|
|
775
774
|
options: {
|
|
776
775
|
allowApi: boolean;
|
|
777
776
|
};
|
|
778
|
-
key: string;
|
|
779
777
|
name: string;
|
|
778
|
+
key: string;
|
|
779
|
+
iframe?: string | undefined;
|
|
780
780
|
};
|
|
781
781
|
}>, z.ZodObject<{
|
|
782
782
|
type: z.ZodLiteral<"unregisterMenu">;
|
|
@@ -865,59 +865,59 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
865
865
|
origin: z.ZodOptional<z.ZodEnum<["player", "map"]>>;
|
|
866
866
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
867
867
|
}, "strip", z.ZodTypeAny, {
|
|
868
|
+
name: string;
|
|
868
869
|
url?: string | undefined;
|
|
869
870
|
height?: number | undefined;
|
|
870
871
|
width?: number | undefined;
|
|
872
|
+
allowApi?: boolean | undefined;
|
|
871
873
|
x?: number | undefined;
|
|
872
874
|
y?: number | undefined;
|
|
873
|
-
allowApi?: boolean | undefined;
|
|
874
875
|
visible?: boolean | undefined;
|
|
875
876
|
allow?: string | undefined;
|
|
876
877
|
origin?: "map" | "player" | undefined;
|
|
877
878
|
scale?: number | undefined;
|
|
878
|
-
name: string;
|
|
879
879
|
}, {
|
|
880
|
+
name: string;
|
|
880
881
|
url?: string | undefined;
|
|
881
882
|
height?: number | undefined;
|
|
882
883
|
width?: number | undefined;
|
|
884
|
+
allowApi?: boolean | undefined;
|
|
883
885
|
x?: number | undefined;
|
|
884
886
|
y?: number | undefined;
|
|
885
|
-
allowApi?: boolean | undefined;
|
|
886
887
|
visible?: boolean | undefined;
|
|
887
888
|
allow?: string | undefined;
|
|
888
889
|
origin?: "map" | "player" | undefined;
|
|
889
890
|
scale?: number | undefined;
|
|
890
|
-
name: string;
|
|
891
891
|
}>;
|
|
892
892
|
}, "strip", z.ZodTypeAny, {
|
|
893
893
|
type: "modifyEmbeddedWebsite";
|
|
894
894
|
data: {
|
|
895
|
+
name: string;
|
|
895
896
|
url?: string | undefined;
|
|
896
897
|
height?: number | undefined;
|
|
897
898
|
width?: number | undefined;
|
|
899
|
+
allowApi?: boolean | undefined;
|
|
898
900
|
x?: number | undefined;
|
|
899
901
|
y?: number | undefined;
|
|
900
|
-
allowApi?: boolean | undefined;
|
|
901
902
|
visible?: boolean | undefined;
|
|
902
903
|
allow?: string | undefined;
|
|
903
904
|
origin?: "map" | "player" | undefined;
|
|
904
905
|
scale?: number | undefined;
|
|
905
|
-
name: string;
|
|
906
906
|
};
|
|
907
907
|
}, {
|
|
908
908
|
type: "modifyEmbeddedWebsite";
|
|
909
909
|
data: {
|
|
910
|
+
name: string;
|
|
910
911
|
url?: string | undefined;
|
|
911
912
|
height?: number | undefined;
|
|
912
913
|
width?: number | undefined;
|
|
914
|
+
allowApi?: boolean | undefined;
|
|
913
915
|
x?: number | undefined;
|
|
914
916
|
y?: number | undefined;
|
|
915
|
-
allowApi?: boolean | undefined;
|
|
916
917
|
visible?: boolean | undefined;
|
|
917
918
|
allow?: string | undefined;
|
|
918
919
|
origin?: "map" | "player" | undefined;
|
|
919
920
|
scale?: number | undefined;
|
|
920
|
-
name: string;
|
|
921
921
|
};
|
|
922
922
|
}>, z.ZodObject<{
|
|
923
923
|
type: z.ZodLiteral<"modifyUIWebsite">;
|
|
@@ -953,15 +953,16 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
953
953
|
}, "strip", z.ZodTypeAny, {
|
|
954
954
|
left?: string | undefined;
|
|
955
955
|
top?: string | undefined;
|
|
956
|
-
right?: string | undefined;
|
|
957
956
|
bottom?: string | undefined;
|
|
957
|
+
right?: string | undefined;
|
|
958
958
|
}, {
|
|
959
959
|
left?: string | undefined;
|
|
960
960
|
top?: string | undefined;
|
|
961
|
-
right?: string | undefined;
|
|
962
961
|
bottom?: string | undefined;
|
|
962
|
+
right?: string | undefined;
|
|
963
963
|
}>>;
|
|
964
964
|
}, "strip", z.ZodTypeAny, {
|
|
965
|
+
id: string;
|
|
965
966
|
url?: string | undefined;
|
|
966
967
|
position?: {
|
|
967
968
|
vertical: "top" | "bottom" | "middle";
|
|
@@ -975,11 +976,11 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
975
976
|
margin?: {
|
|
976
977
|
left?: string | undefined;
|
|
977
978
|
top?: string | undefined;
|
|
978
|
-
right?: string | undefined;
|
|
979
979
|
bottom?: string | undefined;
|
|
980
|
+
right?: string | undefined;
|
|
980
981
|
} | undefined;
|
|
981
|
-
id: string;
|
|
982
982
|
}, {
|
|
983
|
+
id: string;
|
|
983
984
|
url?: string | undefined;
|
|
984
985
|
position?: {
|
|
985
986
|
vertical: "top" | "bottom" | "middle";
|
|
@@ -993,14 +994,14 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
993
994
|
margin?: {
|
|
994
995
|
left?: string | undefined;
|
|
995
996
|
top?: string | undefined;
|
|
996
|
-
right?: string | undefined;
|
|
997
997
|
bottom?: string | undefined;
|
|
998
|
+
right?: string | undefined;
|
|
998
999
|
} | undefined;
|
|
999
|
-
id: string;
|
|
1000
1000
|
}>;
|
|
1001
1001
|
}, "strip", z.ZodTypeAny, {
|
|
1002
1002
|
type: "modifyUIWebsite";
|
|
1003
1003
|
data: {
|
|
1004
|
+
id: string;
|
|
1004
1005
|
url?: string | undefined;
|
|
1005
1006
|
position?: {
|
|
1006
1007
|
vertical: "top" | "bottom" | "middle";
|
|
@@ -1014,14 +1015,14 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1014
1015
|
margin?: {
|
|
1015
1016
|
left?: string | undefined;
|
|
1016
1017
|
top?: string | undefined;
|
|
1017
|
-
right?: string | undefined;
|
|
1018
1018
|
bottom?: string | undefined;
|
|
1019
|
+
right?: string | undefined;
|
|
1019
1020
|
} | undefined;
|
|
1020
|
-
id: string;
|
|
1021
1021
|
};
|
|
1022
1022
|
}, {
|
|
1023
1023
|
type: "modifyUIWebsite";
|
|
1024
1024
|
data: {
|
|
1025
|
+
id: string;
|
|
1025
1026
|
url?: string | undefined;
|
|
1026
1027
|
position?: {
|
|
1027
1028
|
vertical: "top" | "bottom" | "middle";
|
|
@@ -1035,10 +1036,9 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1035
1036
|
margin?: {
|
|
1036
1037
|
left?: string | undefined;
|
|
1037
1038
|
top?: string | undefined;
|
|
1038
|
-
right?: string | undefined;
|
|
1039
1039
|
bottom?: string | undefined;
|
|
1040
|
+
right?: string | undefined;
|
|
1040
1041
|
} | undefined;
|
|
1041
|
-
id: string;
|
|
1042
1042
|
};
|
|
1043
1043
|
}>, z.ZodObject<{
|
|
1044
1044
|
type: z.ZodLiteral<"modifyArea">;
|
|
@@ -1049,35 +1049,35 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1049
1049
|
width: z.ZodOptional<z.ZodNumber>;
|
|
1050
1050
|
height: z.ZodOptional<z.ZodNumber>;
|
|
1051
1051
|
}, "strip", z.ZodTypeAny, {
|
|
1052
|
+
name: string;
|
|
1052
1053
|
height?: number | undefined;
|
|
1053
1054
|
width?: number | undefined;
|
|
1054
1055
|
x?: number | undefined;
|
|
1055
1056
|
y?: number | undefined;
|
|
1056
|
-
name: string;
|
|
1057
1057
|
}, {
|
|
1058
|
+
name: string;
|
|
1058
1059
|
height?: number | undefined;
|
|
1059
1060
|
width?: number | undefined;
|
|
1060
1061
|
x?: number | undefined;
|
|
1061
1062
|
y?: number | undefined;
|
|
1062
|
-
name: string;
|
|
1063
1063
|
}>;
|
|
1064
1064
|
}, "strip", z.ZodTypeAny, {
|
|
1065
1065
|
type: "modifyArea";
|
|
1066
1066
|
data: {
|
|
1067
|
+
name: string;
|
|
1067
1068
|
height?: number | undefined;
|
|
1068
1069
|
width?: number | undefined;
|
|
1069
1070
|
x?: number | undefined;
|
|
1070
1071
|
y?: number | undefined;
|
|
1071
|
-
name: string;
|
|
1072
1072
|
};
|
|
1073
1073
|
}, {
|
|
1074
1074
|
type: "modifyArea";
|
|
1075
1075
|
data: {
|
|
1076
|
+
name: string;
|
|
1076
1077
|
height?: number | undefined;
|
|
1077
1078
|
width?: number | undefined;
|
|
1078
1079
|
x?: number | undefined;
|
|
1079
1080
|
y?: number | undefined;
|
|
1080
|
-
name: string;
|
|
1081
1081
|
};
|
|
1082
1082
|
}>, z.ZodObject<{
|
|
1083
1083
|
type: z.ZodLiteral<"askPosition">;
|
|
@@ -1085,89 +1085,51 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1085
1085
|
uuid: z.ZodString;
|
|
1086
1086
|
playUri: z.ZodString;
|
|
1087
1087
|
}, "strip", z.ZodTypeAny, {
|
|
1088
|
-
playUri: string;
|
|
1089
1088
|
uuid: string;
|
|
1090
|
-
}, {
|
|
1091
1089
|
playUri: string;
|
|
1090
|
+
}, {
|
|
1092
1091
|
uuid: string;
|
|
1092
|
+
playUri: string;
|
|
1093
1093
|
}>;
|
|
1094
1094
|
}, "strip", z.ZodTypeAny, {
|
|
1095
1095
|
type: "askPosition";
|
|
1096
1096
|
data: {
|
|
1097
|
-
playUri: string;
|
|
1098
1097
|
uuid: string;
|
|
1098
|
+
playUri: string;
|
|
1099
1099
|
};
|
|
1100
1100
|
}, {
|
|
1101
1101
|
type: "askPosition";
|
|
1102
1102
|
data: {
|
|
1103
|
-
playUri: string;
|
|
1104
1103
|
uuid: string;
|
|
1104
|
+
playUri: string;
|
|
1105
1105
|
};
|
|
1106
1106
|
}>, z.ZodObject<{
|
|
1107
1107
|
type: z.ZodLiteral<"openInviteMenu">;
|
|
1108
1108
|
data: z.ZodUndefined;
|
|
1109
1109
|
}, "strip", z.ZodTypeAny, {
|
|
1110
|
-
data?: undefined;
|
|
1111
1110
|
type: "openInviteMenu";
|
|
1112
|
-
}, {
|
|
1113
1111
|
data?: undefined;
|
|
1114
|
-
type: "openInviteMenu";
|
|
1115
|
-
}>, z.ZodObject<{
|
|
1116
|
-
type: z.ZodLiteral<"chatTotalMessagesToSee">;
|
|
1117
|
-
data: z.ZodNumber;
|
|
1118
|
-
}, "strip", z.ZodTypeAny, {
|
|
1119
|
-
type: "chatTotalMessagesToSee";
|
|
1120
|
-
data: number;
|
|
1121
|
-
}, {
|
|
1122
|
-
type: "chatTotalMessagesToSee";
|
|
1123
|
-
data: number;
|
|
1124
|
-
}>, z.ZodObject<{
|
|
1125
|
-
type: z.ZodLiteral<"notification">;
|
|
1126
|
-
data: z.ZodObject<{
|
|
1127
|
-
userName: z.ZodString;
|
|
1128
|
-
notificationType: z.ZodNumber;
|
|
1129
|
-
forum: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1130
|
-
}, "strip", z.ZodTypeAny, {
|
|
1131
|
-
forum?: string | null | undefined;
|
|
1132
|
-
userName: string;
|
|
1133
|
-
notificationType: number;
|
|
1134
|
-
}, {
|
|
1135
|
-
forum?: string | null | undefined;
|
|
1136
|
-
userName: string;
|
|
1137
|
-
notificationType: number;
|
|
1138
|
-
}>;
|
|
1139
|
-
}, "strip", z.ZodTypeAny, {
|
|
1140
|
-
type: "notification";
|
|
1141
|
-
data: {
|
|
1142
|
-
forum?: string | null | undefined;
|
|
1143
|
-
userName: string;
|
|
1144
|
-
notificationType: number;
|
|
1145
|
-
};
|
|
1146
1112
|
}, {
|
|
1147
|
-
type: "
|
|
1148
|
-
data
|
|
1149
|
-
forum?: string | null | undefined;
|
|
1150
|
-
userName: string;
|
|
1151
|
-
notificationType: number;
|
|
1152
|
-
};
|
|
1113
|
+
type: "openInviteMenu";
|
|
1114
|
+
data?: undefined;
|
|
1153
1115
|
}>, z.ZodObject<{
|
|
1154
1116
|
type: z.ZodLiteral<"login">;
|
|
1155
1117
|
data: z.ZodUndefined;
|
|
1156
1118
|
}, "strip", z.ZodTypeAny, {
|
|
1157
|
-
data?: undefined;
|
|
1158
1119
|
type: "login";
|
|
1159
|
-
}, {
|
|
1160
1120
|
data?: undefined;
|
|
1121
|
+
}, {
|
|
1161
1122
|
type: "login";
|
|
1123
|
+
data?: undefined;
|
|
1162
1124
|
}>, z.ZodObject<{
|
|
1163
1125
|
type: z.ZodLiteral<"refresh">;
|
|
1164
1126
|
data: z.ZodUndefined;
|
|
1165
1127
|
}, "strip", z.ZodTypeAny, {
|
|
1166
|
-
data?: undefined;
|
|
1167
1128
|
type: "refresh";
|
|
1168
|
-
}, {
|
|
1169
1129
|
data?: undefined;
|
|
1130
|
+
}, {
|
|
1170
1131
|
type: "refresh";
|
|
1132
|
+
data?: undefined;
|
|
1171
1133
|
}>, z.ZodObject<{
|
|
1172
1134
|
type: z.ZodLiteral<"showBusinessCard">;
|
|
1173
1135
|
data: z.ZodObject<{
|
|
@@ -1197,53 +1159,53 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1197
1159
|
allowApi: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1198
1160
|
}, "strip", z.ZodTypeAny, {
|
|
1199
1161
|
title: string;
|
|
1200
|
-
position: "left" | "right" | "center";
|
|
1201
|
-
src: string;
|
|
1202
1162
|
allowApi: boolean;
|
|
1163
|
+
position: "left" | "right" | "center";
|
|
1203
1164
|
allow: string | null;
|
|
1165
|
+
src: string;
|
|
1204
1166
|
}, {
|
|
1167
|
+
src: string;
|
|
1205
1168
|
title?: string | undefined;
|
|
1206
|
-
position?: "left" | "right" | "center" | undefined;
|
|
1207
1169
|
allowApi?: boolean | undefined;
|
|
1170
|
+
position?: "left" | "right" | "center" | undefined;
|
|
1208
1171
|
allow?: string | null | undefined;
|
|
1209
|
-
src: string;
|
|
1210
1172
|
}>;
|
|
1211
1173
|
}, "strip", z.ZodTypeAny, {
|
|
1212
1174
|
type: "openModal";
|
|
1213
1175
|
data: {
|
|
1214
1176
|
title: string;
|
|
1215
|
-
position: "left" | "right" | "center";
|
|
1216
|
-
src: string;
|
|
1217
1177
|
allowApi: boolean;
|
|
1178
|
+
position: "left" | "right" | "center";
|
|
1218
1179
|
allow: string | null;
|
|
1180
|
+
src: string;
|
|
1219
1181
|
};
|
|
1220
1182
|
}, {
|
|
1221
1183
|
type: "openModal";
|
|
1222
1184
|
data: {
|
|
1185
|
+
src: string;
|
|
1223
1186
|
title?: string | undefined;
|
|
1224
|
-
position?: "left" | "right" | "center" | undefined;
|
|
1225
1187
|
allowApi?: boolean | undefined;
|
|
1188
|
+
position?: "left" | "right" | "center" | undefined;
|
|
1226
1189
|
allow?: string | null | undefined;
|
|
1227
|
-
src: string;
|
|
1228
1190
|
};
|
|
1229
1191
|
}>, z.ZodObject<{
|
|
1230
1192
|
type: z.ZodLiteral<"closeModal">;
|
|
1231
1193
|
data: z.ZodUndefined;
|
|
1232
1194
|
}, "strip", z.ZodTypeAny, {
|
|
1233
|
-
data?: undefined;
|
|
1234
1195
|
type: "closeModal";
|
|
1235
|
-
}, {
|
|
1236
1196
|
data?: undefined;
|
|
1197
|
+
}, {
|
|
1237
1198
|
type: "closeModal";
|
|
1199
|
+
data?: undefined;
|
|
1238
1200
|
}>, z.ZodObject<{
|
|
1239
1201
|
type: z.ZodLiteral<"redirectPricing">;
|
|
1240
1202
|
data: z.ZodUndefined;
|
|
1241
1203
|
}, "strip", z.ZodTypeAny, {
|
|
1242
|
-
data?: undefined;
|
|
1243
1204
|
type: "redirectPricing";
|
|
1244
|
-
}, {
|
|
1245
1205
|
data?: undefined;
|
|
1206
|
+
}, {
|
|
1246
1207
|
type: "redirectPricing";
|
|
1208
|
+
data?: undefined;
|
|
1247
1209
|
}>, z.ZodObject<{
|
|
1248
1210
|
type: z.ZodLiteral<"addButtonActionBar">;
|
|
1249
1211
|
data: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1255,9 +1217,9 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1255
1217
|
label: string;
|
|
1256
1218
|
id: string;
|
|
1257
1219
|
}, {
|
|
1258
|
-
type?: "button" | undefined;
|
|
1259
1220
|
label: string;
|
|
1260
1221
|
id: string;
|
|
1222
|
+
type?: "button" | undefined;
|
|
1261
1223
|
}>, z.ZodObject<{
|
|
1262
1224
|
id: z.ZodString;
|
|
1263
1225
|
type: z.ZodEnum<["action"]>;
|
|
@@ -1289,9 +1251,9 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1289
1251
|
}, {
|
|
1290
1252
|
type: "addButtonActionBar";
|
|
1291
1253
|
data: {
|
|
1292
|
-
type?: "button" | undefined;
|
|
1293
1254
|
label: string;
|
|
1294
1255
|
id: string;
|
|
1256
|
+
type?: "button" | undefined;
|
|
1295
1257
|
} | {
|
|
1296
1258
|
type: "action";
|
|
1297
1259
|
id: string;
|
|
@@ -1317,15 +1279,6 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1317
1279
|
data: {
|
|
1318
1280
|
id: string;
|
|
1319
1281
|
};
|
|
1320
|
-
}>, z.ZodObject<{
|
|
1321
|
-
type: z.ZodLiteral<"chatReady">;
|
|
1322
|
-
data: z.ZodUndefined;
|
|
1323
|
-
}, "strip", z.ZodTypeAny, {
|
|
1324
|
-
data?: undefined;
|
|
1325
|
-
type: "chatReady";
|
|
1326
|
-
}, {
|
|
1327
|
-
data?: undefined;
|
|
1328
|
-
type: "chatReady";
|
|
1329
1282
|
}>, z.ZodObject<{
|
|
1330
1283
|
type: z.ZodLiteral<"openBanner">;
|
|
1331
1284
|
data: z.ZodObject<{
|
|
@@ -1346,6 +1299,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1346
1299
|
label: string;
|
|
1347
1300
|
}>>;
|
|
1348
1301
|
}, "strip", z.ZodTypeAny, {
|
|
1302
|
+
text: string;
|
|
1303
|
+
id: string;
|
|
1349
1304
|
link?: {
|
|
1350
1305
|
url: string;
|
|
1351
1306
|
label: string;
|
|
@@ -1354,9 +1309,9 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1354
1309
|
bgColor?: string | undefined;
|
|
1355
1310
|
textColor?: string | undefined;
|
|
1356
1311
|
timeToClose?: number | undefined;
|
|
1312
|
+
}, {
|
|
1357
1313
|
text: string;
|
|
1358
1314
|
id: string;
|
|
1359
|
-
}, {
|
|
1360
1315
|
link?: {
|
|
1361
1316
|
url: string;
|
|
1362
1317
|
label: string;
|
|
@@ -1365,12 +1320,12 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1365
1320
|
bgColor?: string | undefined;
|
|
1366
1321
|
textColor?: string | undefined;
|
|
1367
1322
|
timeToClose?: number | undefined;
|
|
1368
|
-
text: string;
|
|
1369
|
-
id: string;
|
|
1370
1323
|
}>;
|
|
1371
1324
|
}, "strip", z.ZodTypeAny, {
|
|
1372
1325
|
type: "openBanner";
|
|
1373
1326
|
data: {
|
|
1327
|
+
text: string;
|
|
1328
|
+
id: string;
|
|
1374
1329
|
link?: {
|
|
1375
1330
|
url: string;
|
|
1376
1331
|
label: string;
|
|
@@ -1379,12 +1334,12 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1379
1334
|
bgColor?: string | undefined;
|
|
1380
1335
|
textColor?: string | undefined;
|
|
1381
1336
|
timeToClose?: number | undefined;
|
|
1382
|
-
text: string;
|
|
1383
|
-
id: string;
|
|
1384
1337
|
};
|
|
1385
1338
|
}, {
|
|
1386
1339
|
type: "openBanner";
|
|
1387
1340
|
data: {
|
|
1341
|
+
text: string;
|
|
1342
|
+
id: string;
|
|
1388
1343
|
link?: {
|
|
1389
1344
|
url: string;
|
|
1390
1345
|
label: string;
|
|
@@ -1393,18 +1348,16 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1393
1348
|
bgColor?: string | undefined;
|
|
1394
1349
|
textColor?: string | undefined;
|
|
1395
1350
|
timeToClose?: number | undefined;
|
|
1396
|
-
text: string;
|
|
1397
|
-
id: string;
|
|
1398
1351
|
};
|
|
1399
1352
|
}>, z.ZodObject<{
|
|
1400
1353
|
type: z.ZodLiteral<"closeBanner">;
|
|
1401
1354
|
data: z.ZodUndefined;
|
|
1402
1355
|
}, "strip", z.ZodTypeAny, {
|
|
1403
|
-
data?: undefined;
|
|
1404
1356
|
type: "closeBanner";
|
|
1405
|
-
}, {
|
|
1406
1357
|
data?: undefined;
|
|
1358
|
+
}, {
|
|
1407
1359
|
type: "closeBanner";
|
|
1360
|
+
data?: undefined;
|
|
1408
1361
|
}>, z.ZodObject<{
|
|
1409
1362
|
type: z.ZodLiteral<"activity-picker-result">;
|
|
1410
1363
|
payload: z.ZodObject<{
|
|
@@ -1425,6 +1378,7 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1425
1378
|
title: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1426
1379
|
type: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1427
1380
|
}, "strip", z.ZodTypeAny, {
|
|
1381
|
+
url: string;
|
|
1428
1382
|
access_code?: string | null | undefined;
|
|
1429
1383
|
type?: string | null | undefined;
|
|
1430
1384
|
author?: {
|
|
@@ -1434,8 +1388,8 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1434
1388
|
imageUrl?: string | null | undefined;
|
|
1435
1389
|
lang?: string | null | undefined;
|
|
1436
1390
|
title?: string | null | undefined;
|
|
1437
|
-
url: string;
|
|
1438
1391
|
}, {
|
|
1392
|
+
url: string;
|
|
1439
1393
|
access_code?: string | null | undefined;
|
|
1440
1394
|
type?: string | null | undefined;
|
|
1441
1395
|
author?: {
|
|
@@ -1445,11 +1399,11 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1445
1399
|
imageUrl?: string | null | undefined;
|
|
1446
1400
|
lang?: string | null | undefined;
|
|
1447
1401
|
title?: string | null | undefined;
|
|
1448
|
-
url: string;
|
|
1449
1402
|
}>;
|
|
1450
1403
|
}, "strip", z.ZodTypeAny, {
|
|
1451
1404
|
type: "activity-picker-result";
|
|
1452
1405
|
payload: {
|
|
1406
|
+
url: string;
|
|
1453
1407
|
access_code?: string | null | undefined;
|
|
1454
1408
|
type?: string | null | undefined;
|
|
1455
1409
|
author?: {
|
|
@@ -1459,11 +1413,11 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1459
1413
|
imageUrl?: string | null | undefined;
|
|
1460
1414
|
lang?: string | null | undefined;
|
|
1461
1415
|
title?: string | null | undefined;
|
|
1462
|
-
url: string;
|
|
1463
1416
|
};
|
|
1464
1417
|
}, {
|
|
1465
1418
|
type: "activity-picker-result";
|
|
1466
1419
|
payload: {
|
|
1420
|
+
url: string;
|
|
1467
1421
|
access_code?: string | null | undefined;
|
|
1468
1422
|
type?: string | null | undefined;
|
|
1469
1423
|
author?: {
|
|
@@ -1473,7 +1427,6 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1473
1427
|
imageUrl?: string | null | undefined;
|
|
1474
1428
|
lang?: string | null | undefined;
|
|
1475
1429
|
title?: string | null | undefined;
|
|
1476
|
-
url: string;
|
|
1477
1430
|
};
|
|
1478
1431
|
}>, z.ZodObject<{
|
|
1479
1432
|
type: z.ZodLiteral<"banUser">;
|
|
@@ -1503,110 +1456,110 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1503
1456
|
type: z.ZodLiteral<"disableMapEditor">;
|
|
1504
1457
|
data: z.ZodUndefined;
|
|
1505
1458
|
}, "strip", z.ZodTypeAny, {
|
|
1506
|
-
data?: undefined;
|
|
1507
1459
|
type: "disableMapEditor";
|
|
1508
|
-
}, {
|
|
1509
1460
|
data?: undefined;
|
|
1461
|
+
}, {
|
|
1510
1462
|
type: "disableMapEditor";
|
|
1463
|
+
data?: undefined;
|
|
1511
1464
|
}>, z.ZodObject<{
|
|
1512
1465
|
type: z.ZodLiteral<"restoreMapEditor">;
|
|
1513
1466
|
data: z.ZodUndefined;
|
|
1514
1467
|
}, "strip", z.ZodTypeAny, {
|
|
1515
|
-
data?: undefined;
|
|
1516
1468
|
type: "restoreMapEditor";
|
|
1517
|
-
}, {
|
|
1518
1469
|
data?: undefined;
|
|
1470
|
+
}, {
|
|
1519
1471
|
type: "restoreMapEditor";
|
|
1472
|
+
data?: undefined;
|
|
1520
1473
|
}>, z.ZodObject<{
|
|
1521
1474
|
type: z.ZodLiteral<"disableScreenSharing">;
|
|
1522
1475
|
data: z.ZodUndefined;
|
|
1523
1476
|
}, "strip", z.ZodTypeAny, {
|
|
1524
|
-
data?: undefined;
|
|
1525
1477
|
type: "disableScreenSharing";
|
|
1526
|
-
}, {
|
|
1527
1478
|
data?: undefined;
|
|
1479
|
+
}, {
|
|
1528
1480
|
type: "disableScreenSharing";
|
|
1481
|
+
data?: undefined;
|
|
1529
1482
|
}>, z.ZodObject<{
|
|
1530
1483
|
type: z.ZodLiteral<"restoreScreenSharing">;
|
|
1531
1484
|
data: z.ZodUndefined;
|
|
1532
1485
|
}, "strip", z.ZodTypeAny, {
|
|
1533
|
-
data?: undefined;
|
|
1534
1486
|
type: "restoreScreenSharing";
|
|
1535
|
-
}, {
|
|
1536
1487
|
data?: undefined;
|
|
1488
|
+
}, {
|
|
1537
1489
|
type: "restoreScreenSharing";
|
|
1490
|
+
data?: undefined;
|
|
1538
1491
|
}>, z.ZodObject<{
|
|
1539
1492
|
type: z.ZodLiteral<"disableRightClick">;
|
|
1540
1493
|
data: z.ZodUndefined;
|
|
1541
1494
|
}, "strip", z.ZodTypeAny, {
|
|
1542
|
-
data?: undefined;
|
|
1543
1495
|
type: "disableRightClick";
|
|
1544
|
-
}, {
|
|
1545
1496
|
data?: undefined;
|
|
1497
|
+
}, {
|
|
1546
1498
|
type: "disableRightClick";
|
|
1499
|
+
data?: undefined;
|
|
1547
1500
|
}>, z.ZodObject<{
|
|
1548
1501
|
type: z.ZodLiteral<"restoreRightClick">;
|
|
1549
1502
|
data: z.ZodUndefined;
|
|
1550
1503
|
}, "strip", z.ZodTypeAny, {
|
|
1551
|
-
data?: undefined;
|
|
1552
1504
|
type: "restoreRightClick";
|
|
1553
|
-
}, {
|
|
1554
1505
|
data?: undefined;
|
|
1506
|
+
}, {
|
|
1555
1507
|
type: "restoreRightClick";
|
|
1508
|
+
data?: undefined;
|
|
1556
1509
|
}>, z.ZodObject<{
|
|
1557
1510
|
type: z.ZodLiteral<"disableWheelZoom">;
|
|
1558
1511
|
data: z.ZodUndefined;
|
|
1559
1512
|
}, "strip", z.ZodTypeAny, {
|
|
1560
|
-
data?: undefined;
|
|
1561
1513
|
type: "disableWheelZoom";
|
|
1562
|
-
}, {
|
|
1563
1514
|
data?: undefined;
|
|
1515
|
+
}, {
|
|
1564
1516
|
type: "disableWheelZoom";
|
|
1517
|
+
data?: undefined;
|
|
1565
1518
|
}>, z.ZodObject<{
|
|
1566
1519
|
type: z.ZodLiteral<"restoreWheelZoom">;
|
|
1567
1520
|
data: z.ZodUndefined;
|
|
1568
1521
|
}, "strip", z.ZodTypeAny, {
|
|
1569
|
-
data?: undefined;
|
|
1570
1522
|
type: "restoreWheelZoom";
|
|
1571
|
-
}, {
|
|
1572
1523
|
data?: undefined;
|
|
1524
|
+
}, {
|
|
1573
1525
|
type: "restoreWheelZoom";
|
|
1526
|
+
data?: undefined;
|
|
1574
1527
|
}>, z.ZodObject<{
|
|
1575
1528
|
type: z.ZodLiteral<"disableInviteUserButton">;
|
|
1576
1529
|
data: z.ZodUndefined;
|
|
1577
1530
|
}, "strip", z.ZodTypeAny, {
|
|
1578
|
-
data?: undefined;
|
|
1579
1531
|
type: "disableInviteUserButton";
|
|
1580
|
-
}, {
|
|
1581
1532
|
data?: undefined;
|
|
1533
|
+
}, {
|
|
1582
1534
|
type: "disableInviteUserButton";
|
|
1535
|
+
data?: undefined;
|
|
1583
1536
|
}>, z.ZodObject<{
|
|
1584
1537
|
type: z.ZodLiteral<"restoreInviteUserButton">;
|
|
1585
1538
|
data: z.ZodUndefined;
|
|
1586
1539
|
}, "strip", z.ZodTypeAny, {
|
|
1587
|
-
data?: undefined;
|
|
1588
1540
|
type: "restoreInviteUserButton";
|
|
1589
|
-
}, {
|
|
1590
1541
|
data?: undefined;
|
|
1542
|
+
}, {
|
|
1591
1543
|
type: "restoreInviteUserButton";
|
|
1544
|
+
data?: undefined;
|
|
1592
1545
|
}>, z.ZodObject<{
|
|
1593
1546
|
type: z.ZodLiteral<"disableRoomList">;
|
|
1594
1547
|
data: z.ZodUndefined;
|
|
1595
1548
|
}, "strip", z.ZodTypeAny, {
|
|
1596
|
-
data?: undefined;
|
|
1597
1549
|
type: "disableRoomList";
|
|
1598
|
-
}, {
|
|
1599
1550
|
data?: undefined;
|
|
1551
|
+
}, {
|
|
1600
1552
|
type: "disableRoomList";
|
|
1553
|
+
data?: undefined;
|
|
1601
1554
|
}>, z.ZodObject<{
|
|
1602
1555
|
type: z.ZodLiteral<"restoreRoomList">;
|
|
1603
1556
|
data: z.ZodUndefined;
|
|
1604
1557
|
}, "strip", z.ZodTypeAny, {
|
|
1605
|
-
data?: undefined;
|
|
1606
1558
|
type: "restoreRoomList";
|
|
1607
|
-
}, {
|
|
1608
1559
|
data?: undefined;
|
|
1560
|
+
}, {
|
|
1609
1561
|
type: "restoreRoomList";
|
|
1562
|
+
data?: undefined;
|
|
1610
1563
|
}>]>;
|
|
1611
1564
|
export type IframeEvent = z.infer<typeof isIframeEventWrapper>;
|
|
1612
1565
|
export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1615,23 +1568,23 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1615
1568
|
message: z.ZodString;
|
|
1616
1569
|
senderId: z.ZodOptional<z.ZodNumber>;
|
|
1617
1570
|
}, "strip", z.ZodTypeAny, {
|
|
1618
|
-
senderId?: number | undefined;
|
|
1619
1571
|
message: string;
|
|
1620
|
-
}, {
|
|
1621
1572
|
senderId?: number | undefined;
|
|
1573
|
+
}, {
|
|
1622
1574
|
message: string;
|
|
1575
|
+
senderId?: number | undefined;
|
|
1623
1576
|
}>;
|
|
1624
1577
|
}, "strip", z.ZodTypeAny, {
|
|
1625
1578
|
type: "userInputChat";
|
|
1626
1579
|
data: {
|
|
1627
|
-
senderId?: number | undefined;
|
|
1628
1580
|
message: string;
|
|
1581
|
+
senderId?: number | undefined;
|
|
1629
1582
|
};
|
|
1630
1583
|
}, {
|
|
1631
1584
|
type: "userInputChat";
|
|
1632
1585
|
data: {
|
|
1633
|
-
senderId?: number | undefined;
|
|
1634
1586
|
message: string;
|
|
1587
|
+
senderId?: number | undefined;
|
|
1635
1588
|
};
|
|
1636
1589
|
}>, z.ZodObject<{
|
|
1637
1590
|
type: z.ZodLiteral<"joinProximityMeetingEvent">;
|
|
@@ -1653,86 +1606,93 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1653
1606
|
y: number;
|
|
1654
1607
|
}>;
|
|
1655
1608
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1609
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1656
1610
|
}, "strip", z.ZodTypeAny, {
|
|
1657
|
-
outlineColor?: number | undefined;
|
|
1658
1611
|
name: string;
|
|
1659
|
-
availabilityStatus: string;
|
|
1660
1612
|
position: {
|
|
1661
1613
|
x: number;
|
|
1662
1614
|
y: number;
|
|
1663
1615
|
};
|
|
1664
|
-
userUuid: string;
|
|
1665
|
-
variables: Map<string, unknown>;
|
|
1666
1616
|
playerId: number;
|
|
1667
|
-
|
|
1617
|
+
variables: Map<string, unknown>;
|
|
1618
|
+
userUuid: string;
|
|
1619
|
+
availabilityStatus: string;
|
|
1668
1620
|
outlineColor?: number | undefined;
|
|
1621
|
+
chatID?: string | null | undefined;
|
|
1622
|
+
}, {
|
|
1669
1623
|
name: string;
|
|
1670
|
-
availabilityStatus: string;
|
|
1671
1624
|
position: {
|
|
1672
1625
|
x: number;
|
|
1673
1626
|
y: number;
|
|
1674
1627
|
};
|
|
1675
|
-
userUuid: string;
|
|
1676
|
-
variables: Map<string, unknown>;
|
|
1677
1628
|
playerId: number;
|
|
1629
|
+
variables: Map<string, unknown>;
|
|
1630
|
+
userUuid: string;
|
|
1631
|
+
availabilityStatus: string;
|
|
1632
|
+
outlineColor?: number | undefined;
|
|
1633
|
+
chatID?: string | null | undefined;
|
|
1678
1634
|
}>, "many">;
|
|
1679
1635
|
}, "strip", z.ZodTypeAny, {
|
|
1680
1636
|
users: {
|
|
1681
|
-
outlineColor?: number | undefined;
|
|
1682
1637
|
name: string;
|
|
1683
|
-
availabilityStatus: string;
|
|
1684
1638
|
position: {
|
|
1685
1639
|
x: number;
|
|
1686
1640
|
y: number;
|
|
1687
1641
|
};
|
|
1688
|
-
userUuid: string;
|
|
1689
|
-
variables: Map<string, unknown>;
|
|
1690
1642
|
playerId: number;
|
|
1643
|
+
variables: Map<string, unknown>;
|
|
1644
|
+
userUuid: string;
|
|
1645
|
+
availabilityStatus: string;
|
|
1646
|
+
outlineColor?: number | undefined;
|
|
1647
|
+
chatID?: string | null | undefined;
|
|
1691
1648
|
}[];
|
|
1692
1649
|
}, {
|
|
1693
1650
|
users: {
|
|
1694
|
-
outlineColor?: number | undefined;
|
|
1695
1651
|
name: string;
|
|
1696
|
-
availabilityStatus: string;
|
|
1697
1652
|
position: {
|
|
1698
1653
|
x: number;
|
|
1699
1654
|
y: number;
|
|
1700
1655
|
};
|
|
1701
|
-
userUuid: string;
|
|
1702
|
-
variables: Map<string, unknown>;
|
|
1703
1656
|
playerId: number;
|
|
1657
|
+
variables: Map<string, unknown>;
|
|
1658
|
+
userUuid: string;
|
|
1659
|
+
availabilityStatus: string;
|
|
1660
|
+
outlineColor?: number | undefined;
|
|
1661
|
+
chatID?: string | null | undefined;
|
|
1704
1662
|
}[];
|
|
1705
1663
|
}>;
|
|
1706
1664
|
}, "strip", z.ZodTypeAny, {
|
|
1707
1665
|
type: "joinProximityMeetingEvent";
|
|
1708
1666
|
data: {
|
|
1709
1667
|
users: {
|
|
1710
|
-
outlineColor?: number | undefined;
|
|
1711
1668
|
name: string;
|
|
1712
|
-
availabilityStatus: string;
|
|
1713
1669
|
position: {
|
|
1714
1670
|
x: number;
|
|
1715
1671
|
y: number;
|
|
1716
1672
|
};
|
|
1717
|
-
userUuid: string;
|
|
1718
|
-
variables: Map<string, unknown>;
|
|
1719
1673
|
playerId: number;
|
|
1674
|
+
variables: Map<string, unknown>;
|
|
1675
|
+
userUuid: string;
|
|
1676
|
+
availabilityStatus: string;
|
|
1677
|
+
outlineColor?: number | undefined;
|
|
1678
|
+
chatID?: string | null | undefined;
|
|
1720
1679
|
}[];
|
|
1721
1680
|
};
|
|
1722
1681
|
}, {
|
|
1723
1682
|
type: "joinProximityMeetingEvent";
|
|
1724
1683
|
data: {
|
|
1725
1684
|
users: {
|
|
1726
|
-
outlineColor?: number | undefined;
|
|
1727
1685
|
name: string;
|
|
1728
|
-
availabilityStatus: string;
|
|
1729
1686
|
position: {
|
|
1730
1687
|
x: number;
|
|
1731
1688
|
y: number;
|
|
1732
1689
|
};
|
|
1733
|
-
userUuid: string;
|
|
1734
|
-
variables: Map<string, unknown>;
|
|
1735
1690
|
playerId: number;
|
|
1691
|
+
variables: Map<string, unknown>;
|
|
1692
|
+
userUuid: string;
|
|
1693
|
+
availabilityStatus: string;
|
|
1694
|
+
outlineColor?: number | undefined;
|
|
1695
|
+
chatID?: string | null | undefined;
|
|
1736
1696
|
}[];
|
|
1737
1697
|
};
|
|
1738
1698
|
}>, z.ZodObject<{
|
|
@@ -1755,86 +1715,93 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1755
1715
|
y: number;
|
|
1756
1716
|
}>;
|
|
1757
1717
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1718
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1758
1719
|
}, "strip", z.ZodTypeAny, {
|
|
1759
|
-
outlineColor?: number | undefined;
|
|
1760
1720
|
name: string;
|
|
1761
|
-
availabilityStatus: string;
|
|
1762
1721
|
position: {
|
|
1763
1722
|
x: number;
|
|
1764
1723
|
y: number;
|
|
1765
1724
|
};
|
|
1766
|
-
userUuid: string;
|
|
1767
|
-
variables: Map<string, unknown>;
|
|
1768
1725
|
playerId: number;
|
|
1769
|
-
|
|
1726
|
+
variables: Map<string, unknown>;
|
|
1727
|
+
userUuid: string;
|
|
1728
|
+
availabilityStatus: string;
|
|
1770
1729
|
outlineColor?: number | undefined;
|
|
1730
|
+
chatID?: string | null | undefined;
|
|
1731
|
+
}, {
|
|
1771
1732
|
name: string;
|
|
1772
|
-
availabilityStatus: string;
|
|
1773
1733
|
position: {
|
|
1774
1734
|
x: number;
|
|
1775
1735
|
y: number;
|
|
1776
1736
|
};
|
|
1777
|
-
userUuid: string;
|
|
1778
|
-
variables: Map<string, unknown>;
|
|
1779
1737
|
playerId: number;
|
|
1738
|
+
variables: Map<string, unknown>;
|
|
1739
|
+
userUuid: string;
|
|
1740
|
+
availabilityStatus: string;
|
|
1741
|
+
outlineColor?: number | undefined;
|
|
1742
|
+
chatID?: string | null | undefined;
|
|
1780
1743
|
}>;
|
|
1781
1744
|
}, "strip", z.ZodTypeAny, {
|
|
1782
1745
|
user: {
|
|
1783
|
-
outlineColor?: number | undefined;
|
|
1784
1746
|
name: string;
|
|
1785
|
-
availabilityStatus: string;
|
|
1786
1747
|
position: {
|
|
1787
1748
|
x: number;
|
|
1788
1749
|
y: number;
|
|
1789
1750
|
};
|
|
1790
|
-
userUuid: string;
|
|
1791
|
-
variables: Map<string, unknown>;
|
|
1792
1751
|
playerId: number;
|
|
1752
|
+
variables: Map<string, unknown>;
|
|
1753
|
+
userUuid: string;
|
|
1754
|
+
availabilityStatus: string;
|
|
1755
|
+
outlineColor?: number | undefined;
|
|
1756
|
+
chatID?: string | null | undefined;
|
|
1793
1757
|
};
|
|
1794
1758
|
}, {
|
|
1795
1759
|
user: {
|
|
1796
|
-
outlineColor?: number | undefined;
|
|
1797
1760
|
name: string;
|
|
1798
|
-
availabilityStatus: string;
|
|
1799
1761
|
position: {
|
|
1800
1762
|
x: number;
|
|
1801
1763
|
y: number;
|
|
1802
1764
|
};
|
|
1803
|
-
userUuid: string;
|
|
1804
|
-
variables: Map<string, unknown>;
|
|
1805
1765
|
playerId: number;
|
|
1766
|
+
variables: Map<string, unknown>;
|
|
1767
|
+
userUuid: string;
|
|
1768
|
+
availabilityStatus: string;
|
|
1769
|
+
outlineColor?: number | undefined;
|
|
1770
|
+
chatID?: string | null | undefined;
|
|
1806
1771
|
};
|
|
1807
1772
|
}>;
|
|
1808
1773
|
}, "strip", z.ZodTypeAny, {
|
|
1809
1774
|
type: "participantJoinProximityMeetingEvent";
|
|
1810
1775
|
data: {
|
|
1811
1776
|
user: {
|
|
1812
|
-
outlineColor?: number | undefined;
|
|
1813
1777
|
name: string;
|
|
1814
|
-
availabilityStatus: string;
|
|
1815
1778
|
position: {
|
|
1816
1779
|
x: number;
|
|
1817
1780
|
y: number;
|
|
1818
1781
|
};
|
|
1819
|
-
userUuid: string;
|
|
1820
|
-
variables: Map<string, unknown>;
|
|
1821
1782
|
playerId: number;
|
|
1783
|
+
variables: Map<string, unknown>;
|
|
1784
|
+
userUuid: string;
|
|
1785
|
+
availabilityStatus: string;
|
|
1786
|
+
outlineColor?: number | undefined;
|
|
1787
|
+
chatID?: string | null | undefined;
|
|
1822
1788
|
};
|
|
1823
1789
|
};
|
|
1824
1790
|
}, {
|
|
1825
1791
|
type: "participantJoinProximityMeetingEvent";
|
|
1826
1792
|
data: {
|
|
1827
1793
|
user: {
|
|
1828
|
-
outlineColor?: number | undefined;
|
|
1829
1794
|
name: string;
|
|
1830
|
-
availabilityStatus: string;
|
|
1831
1795
|
position: {
|
|
1832
1796
|
x: number;
|
|
1833
1797
|
y: number;
|
|
1834
1798
|
};
|
|
1835
|
-
userUuid: string;
|
|
1836
|
-
variables: Map<string, unknown>;
|
|
1837
1799
|
playerId: number;
|
|
1800
|
+
variables: Map<string, unknown>;
|
|
1801
|
+
userUuid: string;
|
|
1802
|
+
availabilityStatus: string;
|
|
1803
|
+
outlineColor?: number | undefined;
|
|
1804
|
+
chatID?: string | null | undefined;
|
|
1838
1805
|
};
|
|
1839
1806
|
};
|
|
1840
1807
|
}>, z.ZodObject<{
|
|
@@ -1857,97 +1824,104 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1857
1824
|
y: number;
|
|
1858
1825
|
}>;
|
|
1859
1826
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1827
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1860
1828
|
}, "strip", z.ZodTypeAny, {
|
|
1861
|
-
outlineColor?: number | undefined;
|
|
1862
1829
|
name: string;
|
|
1863
|
-
availabilityStatus: string;
|
|
1864
1830
|
position: {
|
|
1865
1831
|
x: number;
|
|
1866
1832
|
y: number;
|
|
1867
1833
|
};
|
|
1868
|
-
userUuid: string;
|
|
1869
|
-
variables: Map<string, unknown>;
|
|
1870
1834
|
playerId: number;
|
|
1871
|
-
|
|
1835
|
+
variables: Map<string, unknown>;
|
|
1836
|
+
userUuid: string;
|
|
1837
|
+
availabilityStatus: string;
|
|
1872
1838
|
outlineColor?: number | undefined;
|
|
1839
|
+
chatID?: string | null | undefined;
|
|
1840
|
+
}, {
|
|
1873
1841
|
name: string;
|
|
1874
|
-
availabilityStatus: string;
|
|
1875
1842
|
position: {
|
|
1876
1843
|
x: number;
|
|
1877
1844
|
y: number;
|
|
1878
1845
|
};
|
|
1879
|
-
userUuid: string;
|
|
1880
|
-
variables: Map<string, unknown>;
|
|
1881
1846
|
playerId: number;
|
|
1847
|
+
variables: Map<string, unknown>;
|
|
1848
|
+
userUuid: string;
|
|
1849
|
+
availabilityStatus: string;
|
|
1850
|
+
outlineColor?: number | undefined;
|
|
1851
|
+
chatID?: string | null | undefined;
|
|
1882
1852
|
}>;
|
|
1883
1853
|
}, "strip", z.ZodTypeAny, {
|
|
1884
1854
|
user: {
|
|
1885
|
-
outlineColor?: number | undefined;
|
|
1886
1855
|
name: string;
|
|
1887
|
-
availabilityStatus: string;
|
|
1888
1856
|
position: {
|
|
1889
1857
|
x: number;
|
|
1890
1858
|
y: number;
|
|
1891
1859
|
};
|
|
1892
|
-
userUuid: string;
|
|
1893
|
-
variables: Map<string, unknown>;
|
|
1894
1860
|
playerId: number;
|
|
1861
|
+
variables: Map<string, unknown>;
|
|
1862
|
+
userUuid: string;
|
|
1863
|
+
availabilityStatus: string;
|
|
1864
|
+
outlineColor?: number | undefined;
|
|
1865
|
+
chatID?: string | null | undefined;
|
|
1895
1866
|
};
|
|
1896
1867
|
}, {
|
|
1897
1868
|
user: {
|
|
1898
|
-
outlineColor?: number | undefined;
|
|
1899
1869
|
name: string;
|
|
1900
|
-
availabilityStatus: string;
|
|
1901
1870
|
position: {
|
|
1902
1871
|
x: number;
|
|
1903
1872
|
y: number;
|
|
1904
1873
|
};
|
|
1905
|
-
userUuid: string;
|
|
1906
|
-
variables: Map<string, unknown>;
|
|
1907
1874
|
playerId: number;
|
|
1875
|
+
variables: Map<string, unknown>;
|
|
1876
|
+
userUuid: string;
|
|
1877
|
+
availabilityStatus: string;
|
|
1878
|
+
outlineColor?: number | undefined;
|
|
1879
|
+
chatID?: string | null | undefined;
|
|
1908
1880
|
};
|
|
1909
1881
|
}>;
|
|
1910
1882
|
}, "strip", z.ZodTypeAny, {
|
|
1911
1883
|
type: "participantLeaveProximityMeetingEvent";
|
|
1912
1884
|
data: {
|
|
1913
1885
|
user: {
|
|
1914
|
-
outlineColor?: number | undefined;
|
|
1915
1886
|
name: string;
|
|
1916
|
-
availabilityStatus: string;
|
|
1917
1887
|
position: {
|
|
1918
1888
|
x: number;
|
|
1919
1889
|
y: number;
|
|
1920
1890
|
};
|
|
1921
|
-
userUuid: string;
|
|
1922
|
-
variables: Map<string, unknown>;
|
|
1923
1891
|
playerId: number;
|
|
1892
|
+
variables: Map<string, unknown>;
|
|
1893
|
+
userUuid: string;
|
|
1894
|
+
availabilityStatus: string;
|
|
1895
|
+
outlineColor?: number | undefined;
|
|
1896
|
+
chatID?: string | null | undefined;
|
|
1924
1897
|
};
|
|
1925
1898
|
};
|
|
1926
1899
|
}, {
|
|
1927
1900
|
type: "participantLeaveProximityMeetingEvent";
|
|
1928
1901
|
data: {
|
|
1929
1902
|
user: {
|
|
1930
|
-
outlineColor?: number | undefined;
|
|
1931
1903
|
name: string;
|
|
1932
|
-
availabilityStatus: string;
|
|
1933
1904
|
position: {
|
|
1934
1905
|
x: number;
|
|
1935
1906
|
y: number;
|
|
1936
1907
|
};
|
|
1937
|
-
userUuid: string;
|
|
1938
|
-
variables: Map<string, unknown>;
|
|
1939
1908
|
playerId: number;
|
|
1909
|
+
variables: Map<string, unknown>;
|
|
1910
|
+
userUuid: string;
|
|
1911
|
+
availabilityStatus: string;
|
|
1912
|
+
outlineColor?: number | undefined;
|
|
1913
|
+
chatID?: string | null | undefined;
|
|
1940
1914
|
};
|
|
1941
1915
|
};
|
|
1942
1916
|
}>, z.ZodObject<{
|
|
1943
1917
|
type: z.ZodLiteral<"leaveProximityMeetingEvent">;
|
|
1944
1918
|
data: z.ZodUndefined;
|
|
1945
1919
|
}, "strip", z.ZodTypeAny, {
|
|
1946
|
-
data?: undefined;
|
|
1947
1920
|
type: "leaveProximityMeetingEvent";
|
|
1948
|
-
}, {
|
|
1949
1921
|
data?: undefined;
|
|
1922
|
+
}, {
|
|
1950
1923
|
type: "leaveProximityMeetingEvent";
|
|
1924
|
+
data?: undefined;
|
|
1951
1925
|
}>, z.ZodObject<{
|
|
1952
1926
|
type: z.ZodLiteral<"onFollowed">;
|
|
1953
1927
|
data: z.ZodObject<{
|
|
@@ -1968,86 +1942,93 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1968
1942
|
y: number;
|
|
1969
1943
|
}>;
|
|
1970
1944
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1945
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
1971
1946
|
}, "strip", z.ZodTypeAny, {
|
|
1972
|
-
outlineColor?: number | undefined;
|
|
1973
1947
|
name: string;
|
|
1974
|
-
availabilityStatus: string;
|
|
1975
1948
|
position: {
|
|
1976
1949
|
x: number;
|
|
1977
1950
|
y: number;
|
|
1978
1951
|
};
|
|
1979
|
-
userUuid: string;
|
|
1980
|
-
variables: Map<string, unknown>;
|
|
1981
1952
|
playerId: number;
|
|
1982
|
-
|
|
1953
|
+
variables: Map<string, unknown>;
|
|
1954
|
+
userUuid: string;
|
|
1955
|
+
availabilityStatus: string;
|
|
1983
1956
|
outlineColor?: number | undefined;
|
|
1957
|
+
chatID?: string | null | undefined;
|
|
1958
|
+
}, {
|
|
1984
1959
|
name: string;
|
|
1985
|
-
availabilityStatus: string;
|
|
1986
1960
|
position: {
|
|
1987
1961
|
x: number;
|
|
1988
1962
|
y: number;
|
|
1989
1963
|
};
|
|
1990
|
-
userUuid: string;
|
|
1991
|
-
variables: Map<string, unknown>;
|
|
1992
1964
|
playerId: number;
|
|
1965
|
+
variables: Map<string, unknown>;
|
|
1966
|
+
userUuid: string;
|
|
1967
|
+
availabilityStatus: string;
|
|
1968
|
+
outlineColor?: number | undefined;
|
|
1969
|
+
chatID?: string | null | undefined;
|
|
1993
1970
|
}>;
|
|
1994
1971
|
}, "strip", z.ZodTypeAny, {
|
|
1995
1972
|
user: {
|
|
1996
|
-
outlineColor?: number | undefined;
|
|
1997
1973
|
name: string;
|
|
1998
|
-
availabilityStatus: string;
|
|
1999
1974
|
position: {
|
|
2000
1975
|
x: number;
|
|
2001
1976
|
y: number;
|
|
2002
1977
|
};
|
|
2003
|
-
userUuid: string;
|
|
2004
|
-
variables: Map<string, unknown>;
|
|
2005
1978
|
playerId: number;
|
|
1979
|
+
variables: Map<string, unknown>;
|
|
1980
|
+
userUuid: string;
|
|
1981
|
+
availabilityStatus: string;
|
|
1982
|
+
outlineColor?: number | undefined;
|
|
1983
|
+
chatID?: string | null | undefined;
|
|
2006
1984
|
};
|
|
2007
1985
|
}, {
|
|
2008
1986
|
user: {
|
|
2009
|
-
outlineColor?: number | undefined;
|
|
2010
1987
|
name: string;
|
|
2011
|
-
availabilityStatus: string;
|
|
2012
1988
|
position: {
|
|
2013
1989
|
x: number;
|
|
2014
1990
|
y: number;
|
|
2015
1991
|
};
|
|
2016
|
-
userUuid: string;
|
|
2017
|
-
variables: Map<string, unknown>;
|
|
2018
1992
|
playerId: number;
|
|
1993
|
+
variables: Map<string, unknown>;
|
|
1994
|
+
userUuid: string;
|
|
1995
|
+
availabilityStatus: string;
|
|
1996
|
+
outlineColor?: number | undefined;
|
|
1997
|
+
chatID?: string | null | undefined;
|
|
2019
1998
|
};
|
|
2020
1999
|
}>;
|
|
2021
2000
|
}, "strip", z.ZodTypeAny, {
|
|
2022
2001
|
type: "onFollowed";
|
|
2023
2002
|
data: {
|
|
2024
2003
|
user: {
|
|
2025
|
-
outlineColor?: number | undefined;
|
|
2026
2004
|
name: string;
|
|
2027
|
-
availabilityStatus: string;
|
|
2028
2005
|
position: {
|
|
2029
2006
|
x: number;
|
|
2030
2007
|
y: number;
|
|
2031
2008
|
};
|
|
2032
|
-
userUuid: string;
|
|
2033
|
-
variables: Map<string, unknown>;
|
|
2034
2009
|
playerId: number;
|
|
2010
|
+
variables: Map<string, unknown>;
|
|
2011
|
+
userUuid: string;
|
|
2012
|
+
availabilityStatus: string;
|
|
2013
|
+
outlineColor?: number | undefined;
|
|
2014
|
+
chatID?: string | null | undefined;
|
|
2035
2015
|
};
|
|
2036
2016
|
};
|
|
2037
2017
|
}, {
|
|
2038
2018
|
type: "onFollowed";
|
|
2039
2019
|
data: {
|
|
2040
2020
|
user: {
|
|
2041
|
-
outlineColor?: number | undefined;
|
|
2042
2021
|
name: string;
|
|
2043
|
-
availabilityStatus: string;
|
|
2044
2022
|
position: {
|
|
2045
2023
|
x: number;
|
|
2046
2024
|
y: number;
|
|
2047
2025
|
};
|
|
2048
|
-
userUuid: string;
|
|
2049
|
-
variables: Map<string, unknown>;
|
|
2050
2026
|
playerId: number;
|
|
2027
|
+
variables: Map<string, unknown>;
|
|
2028
|
+
userUuid: string;
|
|
2029
|
+
availabilityStatus: string;
|
|
2030
|
+
outlineColor?: number | undefined;
|
|
2031
|
+
chatID?: string | null | undefined;
|
|
2051
2032
|
};
|
|
2052
2033
|
};
|
|
2053
2034
|
}>, z.ZodObject<{
|
|
@@ -2070,90 +2051,135 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2070
2051
|
y: number;
|
|
2071
2052
|
}>;
|
|
2072
2053
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
2054
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2073
2055
|
}, "strip", z.ZodTypeAny, {
|
|
2074
|
-
outlineColor?: number | undefined;
|
|
2075
2056
|
name: string;
|
|
2076
|
-
availabilityStatus: string;
|
|
2077
2057
|
position: {
|
|
2078
2058
|
x: number;
|
|
2079
2059
|
y: number;
|
|
2080
2060
|
};
|
|
2081
|
-
userUuid: string;
|
|
2082
|
-
variables: Map<string, unknown>;
|
|
2083
2061
|
playerId: number;
|
|
2084
|
-
|
|
2062
|
+
variables: Map<string, unknown>;
|
|
2063
|
+
userUuid: string;
|
|
2064
|
+
availabilityStatus: string;
|
|
2085
2065
|
outlineColor?: number | undefined;
|
|
2066
|
+
chatID?: string | null | undefined;
|
|
2067
|
+
}, {
|
|
2086
2068
|
name: string;
|
|
2087
|
-
availabilityStatus: string;
|
|
2088
2069
|
position: {
|
|
2089
2070
|
x: number;
|
|
2090
2071
|
y: number;
|
|
2091
2072
|
};
|
|
2092
|
-
userUuid: string;
|
|
2093
|
-
variables: Map<string, unknown>;
|
|
2094
2073
|
playerId: number;
|
|
2074
|
+
variables: Map<string, unknown>;
|
|
2075
|
+
userUuid: string;
|
|
2076
|
+
availabilityStatus: string;
|
|
2077
|
+
outlineColor?: number | undefined;
|
|
2078
|
+
chatID?: string | null | undefined;
|
|
2095
2079
|
}>;
|
|
2096
2080
|
}, "strip", z.ZodTypeAny, {
|
|
2097
2081
|
user: {
|
|
2098
|
-
outlineColor?: number | undefined;
|
|
2099
2082
|
name: string;
|
|
2100
|
-
availabilityStatus: string;
|
|
2101
2083
|
position: {
|
|
2102
2084
|
x: number;
|
|
2103
2085
|
y: number;
|
|
2104
2086
|
};
|
|
2105
|
-
userUuid: string;
|
|
2106
|
-
variables: Map<string, unknown>;
|
|
2107
2087
|
playerId: number;
|
|
2088
|
+
variables: Map<string, unknown>;
|
|
2089
|
+
userUuid: string;
|
|
2090
|
+
availabilityStatus: string;
|
|
2091
|
+
outlineColor?: number | undefined;
|
|
2092
|
+
chatID?: string | null | undefined;
|
|
2108
2093
|
};
|
|
2109
2094
|
}, {
|
|
2110
2095
|
user: {
|
|
2111
|
-
outlineColor?: number | undefined;
|
|
2112
2096
|
name: string;
|
|
2113
|
-
availabilityStatus: string;
|
|
2114
2097
|
position: {
|
|
2115
2098
|
x: number;
|
|
2116
2099
|
y: number;
|
|
2117
2100
|
};
|
|
2118
|
-
userUuid: string;
|
|
2119
|
-
variables: Map<string, unknown>;
|
|
2120
2101
|
playerId: number;
|
|
2102
|
+
variables: Map<string, unknown>;
|
|
2103
|
+
userUuid: string;
|
|
2104
|
+
availabilityStatus: string;
|
|
2105
|
+
outlineColor?: number | undefined;
|
|
2106
|
+
chatID?: string | null | undefined;
|
|
2121
2107
|
};
|
|
2122
2108
|
}>;
|
|
2123
2109
|
}, "strip", z.ZodTypeAny, {
|
|
2124
2110
|
type: "onUnfollowed";
|
|
2125
2111
|
data: {
|
|
2126
2112
|
user: {
|
|
2127
|
-
outlineColor?: number | undefined;
|
|
2128
2113
|
name: string;
|
|
2129
|
-
availabilityStatus: string;
|
|
2130
2114
|
position: {
|
|
2131
2115
|
x: number;
|
|
2132
2116
|
y: number;
|
|
2133
2117
|
};
|
|
2134
|
-
userUuid: string;
|
|
2135
|
-
variables: Map<string, unknown>;
|
|
2136
2118
|
playerId: number;
|
|
2119
|
+
variables: Map<string, unknown>;
|
|
2120
|
+
userUuid: string;
|
|
2121
|
+
availabilityStatus: string;
|
|
2122
|
+
outlineColor?: number | undefined;
|
|
2123
|
+
chatID?: string | null | undefined;
|
|
2137
2124
|
};
|
|
2138
2125
|
};
|
|
2139
2126
|
}, {
|
|
2140
2127
|
type: "onUnfollowed";
|
|
2141
2128
|
data: {
|
|
2142
2129
|
user: {
|
|
2143
|
-
outlineColor?: number | undefined;
|
|
2144
2130
|
name: string;
|
|
2145
|
-
availabilityStatus: string;
|
|
2146
2131
|
position: {
|
|
2147
2132
|
x: number;
|
|
2148
2133
|
y: number;
|
|
2149
2134
|
};
|
|
2150
|
-
userUuid: string;
|
|
2151
|
-
variables: Map<string, unknown>;
|
|
2152
2135
|
playerId: number;
|
|
2136
|
+
variables: Map<string, unknown>;
|
|
2137
|
+
userUuid: string;
|
|
2138
|
+
availabilityStatus: string;
|
|
2139
|
+
outlineColor?: number | undefined;
|
|
2140
|
+
chatID?: string | null | undefined;
|
|
2153
2141
|
};
|
|
2154
2142
|
};
|
|
2155
2143
|
}>, z.ZodObject<{
|
|
2156
|
-
type: z.ZodLiteral<"enterEvent">;
|
|
2144
|
+
type: z.ZodLiteral<"enterEvent">;
|
|
2145
|
+
data: z.ZodObject<{
|
|
2146
|
+
name: z.ZodString;
|
|
2147
|
+
}, "strip", z.ZodTypeAny, {
|
|
2148
|
+
name: string;
|
|
2149
|
+
}, {
|
|
2150
|
+
name: string;
|
|
2151
|
+
}>;
|
|
2152
|
+
}, "strip", z.ZodTypeAny, {
|
|
2153
|
+
type: "enterEvent";
|
|
2154
|
+
data: {
|
|
2155
|
+
name: string;
|
|
2156
|
+
};
|
|
2157
|
+
}, {
|
|
2158
|
+
type: "enterEvent";
|
|
2159
|
+
data: {
|
|
2160
|
+
name: string;
|
|
2161
|
+
};
|
|
2162
|
+
}>, z.ZodObject<{
|
|
2163
|
+
type: z.ZodLiteral<"leaveEvent">;
|
|
2164
|
+
data: z.ZodObject<{
|
|
2165
|
+
name: z.ZodString;
|
|
2166
|
+
}, "strip", z.ZodTypeAny, {
|
|
2167
|
+
name: string;
|
|
2168
|
+
}, {
|
|
2169
|
+
name: string;
|
|
2170
|
+
}>;
|
|
2171
|
+
}, "strip", z.ZodTypeAny, {
|
|
2172
|
+
type: "leaveEvent";
|
|
2173
|
+
data: {
|
|
2174
|
+
name: string;
|
|
2175
|
+
};
|
|
2176
|
+
}, {
|
|
2177
|
+
type: "leaveEvent";
|
|
2178
|
+
data: {
|
|
2179
|
+
name: string;
|
|
2180
|
+
};
|
|
2181
|
+
}>, z.ZodObject<{
|
|
2182
|
+
type: z.ZodLiteral<"enterMapEditorAreaEvent">;
|
|
2157
2183
|
data: z.ZodObject<{
|
|
2158
2184
|
name: z.ZodString;
|
|
2159
2185
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2162,17 +2188,17 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2162
2188
|
name: string;
|
|
2163
2189
|
}>;
|
|
2164
2190
|
}, "strip", z.ZodTypeAny, {
|
|
2165
|
-
type: "
|
|
2191
|
+
type: "enterMapEditorAreaEvent";
|
|
2166
2192
|
data: {
|
|
2167
2193
|
name: string;
|
|
2168
2194
|
};
|
|
2169
2195
|
}, {
|
|
2170
|
-
type: "
|
|
2196
|
+
type: "enterMapEditorAreaEvent";
|
|
2171
2197
|
data: {
|
|
2172
2198
|
name: string;
|
|
2173
2199
|
};
|
|
2174
2200
|
}>, z.ZodObject<{
|
|
2175
|
-
type: z.ZodLiteral<"
|
|
2201
|
+
type: z.ZodLiteral<"leaveMapEditorAreaEvent">;
|
|
2176
2202
|
data: z.ZodObject<{
|
|
2177
2203
|
name: z.ZodString;
|
|
2178
2204
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -2181,12 +2207,12 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2181
2207
|
name: string;
|
|
2182
2208
|
}>;
|
|
2183
2209
|
}, "strip", z.ZodTypeAny, {
|
|
2184
|
-
type: "
|
|
2210
|
+
type: "leaveMapEditorAreaEvent";
|
|
2185
2211
|
data: {
|
|
2186
2212
|
name: string;
|
|
2187
2213
|
};
|
|
2188
2214
|
}, {
|
|
2189
|
-
type: "
|
|
2215
|
+
type: "leaveMapEditorAreaEvent";
|
|
2190
2216
|
data: {
|
|
2191
2217
|
name: string;
|
|
2192
2218
|
};
|
|
@@ -2309,56 +2335,61 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2309
2335
|
y: number;
|
|
2310
2336
|
}>;
|
|
2311
2337
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
2338
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2312
2339
|
}, "strip", z.ZodTypeAny, {
|
|
2313
|
-
outlineColor?: number | undefined;
|
|
2314
2340
|
name: string;
|
|
2315
|
-
availabilityStatus: string;
|
|
2316
2341
|
position: {
|
|
2317
2342
|
x: number;
|
|
2318
2343
|
y: number;
|
|
2319
2344
|
};
|
|
2320
|
-
userUuid: string;
|
|
2321
|
-
variables: Map<string, unknown>;
|
|
2322
2345
|
playerId: number;
|
|
2323
|
-
|
|
2346
|
+
variables: Map<string, unknown>;
|
|
2347
|
+
userUuid: string;
|
|
2348
|
+
availabilityStatus: string;
|
|
2324
2349
|
outlineColor?: number | undefined;
|
|
2350
|
+
chatID?: string | null | undefined;
|
|
2351
|
+
}, {
|
|
2325
2352
|
name: string;
|
|
2326
|
-
availabilityStatus: string;
|
|
2327
2353
|
position: {
|
|
2328
2354
|
x: number;
|
|
2329
2355
|
y: number;
|
|
2330
2356
|
};
|
|
2331
|
-
userUuid: string;
|
|
2332
|
-
variables: Map<string, unknown>;
|
|
2333
2357
|
playerId: number;
|
|
2358
|
+
variables: Map<string, unknown>;
|
|
2359
|
+
userUuid: string;
|
|
2360
|
+
availabilityStatus: string;
|
|
2361
|
+
outlineColor?: number | undefined;
|
|
2362
|
+
chatID?: string | null | undefined;
|
|
2334
2363
|
}>;
|
|
2335
2364
|
}, "strip", z.ZodTypeAny, {
|
|
2336
2365
|
type: "remotePlayerClickedEvent";
|
|
2337
2366
|
data: {
|
|
2338
|
-
outlineColor?: number | undefined;
|
|
2339
2367
|
name: string;
|
|
2340
|
-
availabilityStatus: string;
|
|
2341
2368
|
position: {
|
|
2342
2369
|
x: number;
|
|
2343
2370
|
y: number;
|
|
2344
2371
|
};
|
|
2345
|
-
userUuid: string;
|
|
2346
|
-
variables: Map<string, unknown>;
|
|
2347
2372
|
playerId: number;
|
|
2373
|
+
variables: Map<string, unknown>;
|
|
2374
|
+
userUuid: string;
|
|
2375
|
+
availabilityStatus: string;
|
|
2376
|
+
outlineColor?: number | undefined;
|
|
2377
|
+
chatID?: string | null | undefined;
|
|
2348
2378
|
};
|
|
2349
2379
|
}, {
|
|
2350
2380
|
type: "remotePlayerClickedEvent";
|
|
2351
2381
|
data: {
|
|
2352
|
-
outlineColor?: number | undefined;
|
|
2353
2382
|
name: string;
|
|
2354
|
-
availabilityStatus: string;
|
|
2355
2383
|
position: {
|
|
2356
2384
|
x: number;
|
|
2357
2385
|
y: number;
|
|
2358
2386
|
};
|
|
2359
|
-
userUuid: string;
|
|
2360
|
-
variables: Map<string, unknown>;
|
|
2361
2387
|
playerId: number;
|
|
2388
|
+
variables: Map<string, unknown>;
|
|
2389
|
+
userUuid: string;
|
|
2390
|
+
availabilityStatus: string;
|
|
2391
|
+
outlineColor?: number | undefined;
|
|
2392
|
+
chatID?: string | null | undefined;
|
|
2362
2393
|
};
|
|
2363
2394
|
}>, z.ZodObject<{
|
|
2364
2395
|
type: z.ZodLiteral<"actionsMenuActionClickedEvent">;
|
|
@@ -2394,39 +2425,39 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2394
2425
|
oldX: z.ZodOptional<z.ZodNumber>;
|
|
2395
2426
|
oldY: z.ZodOptional<z.ZodNumber>;
|
|
2396
2427
|
}, "strip", z.ZodTypeAny, {
|
|
2397
|
-
oldX?: number | undefined;
|
|
2398
|
-
oldY?: number | undefined;
|
|
2399
2428
|
x: number;
|
|
2400
2429
|
y: number;
|
|
2401
2430
|
direction: "left" | "right" | "up" | "down";
|
|
2402
2431
|
moving: boolean;
|
|
2403
|
-
}, {
|
|
2404
2432
|
oldX?: number | undefined;
|
|
2405
2433
|
oldY?: number | undefined;
|
|
2434
|
+
}, {
|
|
2406
2435
|
x: number;
|
|
2407
2436
|
y: number;
|
|
2408
2437
|
direction: "left" | "right" | "up" | "down";
|
|
2409
2438
|
moving: boolean;
|
|
2439
|
+
oldX?: number | undefined;
|
|
2440
|
+
oldY?: number | undefined;
|
|
2410
2441
|
}>;
|
|
2411
2442
|
}, "strip", z.ZodTypeAny, {
|
|
2412
2443
|
type: "hasPlayerMoved";
|
|
2413
2444
|
data: {
|
|
2414
|
-
oldX?: number | undefined;
|
|
2415
|
-
oldY?: number | undefined;
|
|
2416
2445
|
x: number;
|
|
2417
2446
|
y: number;
|
|
2418
2447
|
direction: "left" | "right" | "up" | "down";
|
|
2419
2448
|
moving: boolean;
|
|
2449
|
+
oldX?: number | undefined;
|
|
2450
|
+
oldY?: number | undefined;
|
|
2420
2451
|
};
|
|
2421
2452
|
}, {
|
|
2422
2453
|
type: "hasPlayerMoved";
|
|
2423
2454
|
data: {
|
|
2424
|
-
oldX?: number | undefined;
|
|
2425
|
-
oldY?: number | undefined;
|
|
2426
2455
|
x: number;
|
|
2427
2456
|
y: number;
|
|
2428
2457
|
direction: "left" | "right" | "up" | "down";
|
|
2429
2458
|
moving: boolean;
|
|
2459
|
+
oldX?: number | undefined;
|
|
2460
|
+
oldY?: number | undefined;
|
|
2430
2461
|
};
|
|
2431
2462
|
}>, z.ZodObject<{
|
|
2432
2463
|
type: z.ZodLiteral<"wasCameraUpdated">;
|
|
@@ -2492,23 +2523,23 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2492
2523
|
key: z.ZodString;
|
|
2493
2524
|
value: z.ZodUnknown;
|
|
2494
2525
|
}, "strip", z.ZodTypeAny, {
|
|
2495
|
-
value?: unknown;
|
|
2496
2526
|
key: string;
|
|
2497
|
-
}, {
|
|
2498
2527
|
value?: unknown;
|
|
2528
|
+
}, {
|
|
2499
2529
|
key: string;
|
|
2530
|
+
value?: unknown;
|
|
2500
2531
|
}>;
|
|
2501
2532
|
}, "strip", z.ZodTypeAny, {
|
|
2502
2533
|
type: "setVariable";
|
|
2503
2534
|
data: {
|
|
2504
|
-
value?: unknown;
|
|
2505
2535
|
key: string;
|
|
2536
|
+
value?: unknown;
|
|
2506
2537
|
};
|
|
2507
2538
|
}, {
|
|
2508
2539
|
type: "setVariable";
|
|
2509
2540
|
data: {
|
|
2510
|
-
value?: unknown;
|
|
2511
2541
|
key: string;
|
|
2542
|
+
value?: unknown;
|
|
2512
2543
|
};
|
|
2513
2544
|
}>, z.ZodObject<{
|
|
2514
2545
|
type: z.ZodLiteral<"setPlayerVariable">;
|
|
@@ -2516,23 +2547,23 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2516
2547
|
key: z.ZodString;
|
|
2517
2548
|
value: z.ZodUnknown;
|
|
2518
2549
|
}, "strip", z.ZodTypeAny, {
|
|
2519
|
-
value?: unknown;
|
|
2520
2550
|
key: string;
|
|
2521
|
-
}, {
|
|
2522
2551
|
value?: unknown;
|
|
2552
|
+
}, {
|
|
2523
2553
|
key: string;
|
|
2554
|
+
value?: unknown;
|
|
2524
2555
|
}>;
|
|
2525
2556
|
}, "strip", z.ZodTypeAny, {
|
|
2526
2557
|
type: "setPlayerVariable";
|
|
2527
2558
|
data: {
|
|
2528
|
-
value?: unknown;
|
|
2529
2559
|
key: string;
|
|
2560
|
+
value?: unknown;
|
|
2530
2561
|
};
|
|
2531
2562
|
}, {
|
|
2532
2563
|
type: "setPlayerVariable";
|
|
2533
2564
|
data: {
|
|
2534
|
-
value?: unknown;
|
|
2535
2565
|
key: string;
|
|
2566
|
+
value?: unknown;
|
|
2536
2567
|
};
|
|
2537
2568
|
}>, z.ZodObject<{
|
|
2538
2569
|
type: z.ZodLiteral<"setSharedPlayerVariable">;
|
|
@@ -2541,27 +2572,27 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2541
2572
|
value: z.ZodUnknown;
|
|
2542
2573
|
playerId: z.ZodNumber;
|
|
2543
2574
|
}, "strip", z.ZodTypeAny, {
|
|
2544
|
-
value?: unknown;
|
|
2545
|
-
key: string;
|
|
2546
2575
|
playerId: number;
|
|
2547
|
-
}, {
|
|
2548
|
-
value?: unknown;
|
|
2549
2576
|
key: string;
|
|
2577
|
+
value?: unknown;
|
|
2578
|
+
}, {
|
|
2550
2579
|
playerId: number;
|
|
2580
|
+
key: string;
|
|
2581
|
+
value?: unknown;
|
|
2551
2582
|
}>;
|
|
2552
2583
|
}, "strip", z.ZodTypeAny, {
|
|
2553
2584
|
type: "setSharedPlayerVariable";
|
|
2554
2585
|
data: {
|
|
2555
|
-
value?: unknown;
|
|
2556
|
-
key: string;
|
|
2557
2586
|
playerId: number;
|
|
2587
|
+
key: string;
|
|
2588
|
+
value?: unknown;
|
|
2558
2589
|
};
|
|
2559
2590
|
}, {
|
|
2560
2591
|
type: "setSharedPlayerVariable";
|
|
2561
2592
|
data: {
|
|
2562
|
-
value?: unknown;
|
|
2563
|
-
key: string;
|
|
2564
2593
|
playerId: number;
|
|
2594
|
+
key: string;
|
|
2595
|
+
value?: unknown;
|
|
2565
2596
|
};
|
|
2566
2597
|
}>, z.ZodObject<{
|
|
2567
2598
|
type: z.ZodLiteral<"receiveEvent">;
|
|
@@ -2570,27 +2601,27 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2570
2601
|
data: z.ZodUnknown;
|
|
2571
2602
|
senderId: z.ZodOptional<z.ZodNumber>;
|
|
2572
2603
|
}, "strip", z.ZodTypeAny, {
|
|
2604
|
+
name: string;
|
|
2573
2605
|
data?: unknown;
|
|
2574
2606
|
senderId?: number | undefined;
|
|
2575
|
-
name: string;
|
|
2576
2607
|
}, {
|
|
2608
|
+
name: string;
|
|
2577
2609
|
data?: unknown;
|
|
2578
2610
|
senderId?: number | undefined;
|
|
2579
|
-
name: string;
|
|
2580
2611
|
}>;
|
|
2581
2612
|
}, "strip", z.ZodTypeAny, {
|
|
2582
2613
|
type: "receiveEvent";
|
|
2583
2614
|
data: {
|
|
2615
|
+
name: string;
|
|
2584
2616
|
data?: unknown;
|
|
2585
2617
|
senderId?: number | undefined;
|
|
2586
|
-
name: string;
|
|
2587
2618
|
};
|
|
2588
2619
|
}, {
|
|
2589
2620
|
type: "receiveEvent";
|
|
2590
2621
|
data: {
|
|
2622
|
+
name: string;
|
|
2591
2623
|
data?: unknown;
|
|
2592
2624
|
senderId?: number | undefined;
|
|
2593
|
-
name: string;
|
|
2594
2625
|
};
|
|
2595
2626
|
}>, z.ZodObject<{
|
|
2596
2627
|
type: z.ZodLiteral<"messageTriggered">;
|
|
@@ -2683,56 +2714,61 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2683
2714
|
y: number;
|
|
2684
2715
|
}>;
|
|
2685
2716
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
2717
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2686
2718
|
}, "strip", z.ZodTypeAny, {
|
|
2687
|
-
outlineColor?: number | undefined;
|
|
2688
2719
|
name: string;
|
|
2689
|
-
availabilityStatus: string;
|
|
2690
2720
|
position: {
|
|
2691
2721
|
x: number;
|
|
2692
2722
|
y: number;
|
|
2693
2723
|
};
|
|
2694
|
-
userUuid: string;
|
|
2695
|
-
variables: Map<string, unknown>;
|
|
2696
2724
|
playerId: number;
|
|
2697
|
-
|
|
2725
|
+
variables: Map<string, unknown>;
|
|
2726
|
+
userUuid: string;
|
|
2727
|
+
availabilityStatus: string;
|
|
2698
2728
|
outlineColor?: number | undefined;
|
|
2729
|
+
chatID?: string | null | undefined;
|
|
2730
|
+
}, {
|
|
2699
2731
|
name: string;
|
|
2700
|
-
availabilityStatus: string;
|
|
2701
2732
|
position: {
|
|
2702
2733
|
x: number;
|
|
2703
2734
|
y: number;
|
|
2704
2735
|
};
|
|
2705
|
-
userUuid: string;
|
|
2706
|
-
variables: Map<string, unknown>;
|
|
2707
2736
|
playerId: number;
|
|
2737
|
+
variables: Map<string, unknown>;
|
|
2738
|
+
userUuid: string;
|
|
2739
|
+
availabilityStatus: string;
|
|
2740
|
+
outlineColor?: number | undefined;
|
|
2741
|
+
chatID?: string | null | undefined;
|
|
2708
2742
|
}>;
|
|
2709
2743
|
}, "strip", z.ZodTypeAny, {
|
|
2710
2744
|
type: "addRemotePlayer";
|
|
2711
2745
|
data: {
|
|
2712
|
-
outlineColor?: number | undefined;
|
|
2713
2746
|
name: string;
|
|
2714
|
-
availabilityStatus: string;
|
|
2715
2747
|
position: {
|
|
2716
2748
|
x: number;
|
|
2717
2749
|
y: number;
|
|
2718
2750
|
};
|
|
2719
|
-
userUuid: string;
|
|
2720
|
-
variables: Map<string, unknown>;
|
|
2721
2751
|
playerId: number;
|
|
2752
|
+
variables: Map<string, unknown>;
|
|
2753
|
+
userUuid: string;
|
|
2754
|
+
availabilityStatus: string;
|
|
2755
|
+
outlineColor?: number | undefined;
|
|
2756
|
+
chatID?: string | null | undefined;
|
|
2722
2757
|
};
|
|
2723
2758
|
}, {
|
|
2724
2759
|
type: "addRemotePlayer";
|
|
2725
2760
|
data: {
|
|
2726
|
-
outlineColor?: number | undefined;
|
|
2727
2761
|
name: string;
|
|
2728
|
-
availabilityStatus: string;
|
|
2729
2762
|
position: {
|
|
2730
2763
|
x: number;
|
|
2731
2764
|
y: number;
|
|
2732
2765
|
};
|
|
2733
|
-
userUuid: string;
|
|
2734
|
-
variables: Map<string, unknown>;
|
|
2735
2766
|
playerId: number;
|
|
2767
|
+
variables: Map<string, unknown>;
|
|
2768
|
+
userUuid: string;
|
|
2769
|
+
availabilityStatus: string;
|
|
2770
|
+
outlineColor?: number | undefined;
|
|
2771
|
+
chatID?: string | null | undefined;
|
|
2736
2772
|
};
|
|
2737
2773
|
}>, z.ZodObject<{
|
|
2738
2774
|
type: z.ZodLiteral<"removeRemotePlayer">;
|
|
@@ -2747,8 +2783,6 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2747
2783
|
type: z.ZodLiteral<"remotePlayerChanged">;
|
|
2748
2784
|
data: z.ZodObject<{
|
|
2749
2785
|
name: z.ZodOptional<z.ZodString>;
|
|
2750
|
-
outlineColor: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2751
|
-
availabilityStatus: z.ZodOptional<z.ZodString>;
|
|
2752
2786
|
position: z.ZodOptional<z.ZodObject<{
|
|
2753
2787
|
x: z.ZodNumber;
|
|
2754
2788
|
y: z.ZodNumber;
|
|
@@ -2759,54 +2793,61 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2759
2793
|
x: number;
|
|
2760
2794
|
y: number;
|
|
2761
2795
|
}>>;
|
|
2762
|
-
variables: z.ZodOptional<z.ZodMap<z.ZodString, z.ZodUnknown>>;
|
|
2763
2796
|
playerId: z.ZodNumber;
|
|
2797
|
+
variables: z.ZodOptional<z.ZodMap<z.ZodString, z.ZodUnknown>>;
|
|
2798
|
+
availabilityStatus: z.ZodOptional<z.ZodString>;
|
|
2799
|
+
outlineColor: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2800
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
2764
2801
|
}, "strip", z.ZodTypeAny, {
|
|
2802
|
+
playerId: number;
|
|
2765
2803
|
name?: string | undefined;
|
|
2766
|
-
outlineColor?: number | undefined;
|
|
2767
|
-
availabilityStatus?: string | undefined;
|
|
2768
2804
|
position?: {
|
|
2769
2805
|
x: number;
|
|
2770
2806
|
y: number;
|
|
2771
2807
|
} | undefined;
|
|
2772
2808
|
variables?: Map<string, unknown> | undefined;
|
|
2773
|
-
|
|
2809
|
+
availabilityStatus?: string | undefined;
|
|
2810
|
+
outlineColor?: number | undefined;
|
|
2811
|
+
chatID?: string | null | undefined;
|
|
2774
2812
|
}, {
|
|
2813
|
+
playerId: number;
|
|
2775
2814
|
name?: string | undefined;
|
|
2776
|
-
outlineColor?: number | undefined;
|
|
2777
|
-
availabilityStatus?: string | undefined;
|
|
2778
2815
|
position?: {
|
|
2779
2816
|
x: number;
|
|
2780
2817
|
y: number;
|
|
2781
2818
|
} | undefined;
|
|
2782
2819
|
variables?: Map<string, unknown> | undefined;
|
|
2783
|
-
|
|
2820
|
+
availabilityStatus?: string | undefined;
|
|
2821
|
+
outlineColor?: number | undefined;
|
|
2822
|
+
chatID?: string | null | undefined;
|
|
2784
2823
|
}>;
|
|
2785
2824
|
}, "strip", z.ZodTypeAny, {
|
|
2786
2825
|
type: "remotePlayerChanged";
|
|
2787
2826
|
data: {
|
|
2827
|
+
playerId: number;
|
|
2788
2828
|
name?: string | undefined;
|
|
2789
|
-
outlineColor?: number | undefined;
|
|
2790
|
-
availabilityStatus?: string | undefined;
|
|
2791
2829
|
position?: {
|
|
2792
2830
|
x: number;
|
|
2793
2831
|
y: number;
|
|
2794
2832
|
} | undefined;
|
|
2795
2833
|
variables?: Map<string, unknown> | undefined;
|
|
2796
|
-
|
|
2834
|
+
availabilityStatus?: string | undefined;
|
|
2835
|
+
outlineColor?: number | undefined;
|
|
2836
|
+
chatID?: string | null | undefined;
|
|
2797
2837
|
};
|
|
2798
2838
|
}, {
|
|
2799
2839
|
type: "remotePlayerChanged";
|
|
2800
2840
|
data: {
|
|
2841
|
+
playerId: number;
|
|
2801
2842
|
name?: string | undefined;
|
|
2802
|
-
outlineColor?: number | undefined;
|
|
2803
|
-
availabilityStatus?: string | undefined;
|
|
2804
2843
|
position?: {
|
|
2805
2844
|
x: number;
|
|
2806
2845
|
y: number;
|
|
2807
2846
|
} | undefined;
|
|
2808
2847
|
variables?: Map<string, unknown> | undefined;
|
|
2809
|
-
|
|
2848
|
+
availabilityStatus?: string | undefined;
|
|
2849
|
+
outlineColor?: number | undefined;
|
|
2850
|
+
chatID?: string | null | undefined;
|
|
2810
2851
|
};
|
|
2811
2852
|
}>, z.ZodObject<{
|
|
2812
2853
|
type: z.ZodLiteral<"settings">;
|
|
@@ -2818,39 +2859,39 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2818
2859
|
enableChatOnlineList: z.ZodBoolean;
|
|
2819
2860
|
enableChatDisconnectedList: z.ZodBoolean;
|
|
2820
2861
|
}, "strip", z.ZodTypeAny, {
|
|
2862
|
+
notification: boolean;
|
|
2863
|
+
chatSounds: boolean;
|
|
2821
2864
|
enableChat: boolean;
|
|
2822
2865
|
enableChatUpload: boolean;
|
|
2823
2866
|
enableChatOnlineList: boolean;
|
|
2824
2867
|
enableChatDisconnectedList: boolean;
|
|
2868
|
+
}, {
|
|
2825
2869
|
notification: boolean;
|
|
2826
2870
|
chatSounds: boolean;
|
|
2827
|
-
}, {
|
|
2828
2871
|
enableChat: boolean;
|
|
2829
2872
|
enableChatUpload: boolean;
|
|
2830
2873
|
enableChatOnlineList: boolean;
|
|
2831
2874
|
enableChatDisconnectedList: boolean;
|
|
2832
|
-
notification: boolean;
|
|
2833
|
-
chatSounds: boolean;
|
|
2834
2875
|
}>;
|
|
2835
2876
|
}, "strip", z.ZodTypeAny, {
|
|
2836
2877
|
type: "settings";
|
|
2837
2878
|
data: {
|
|
2879
|
+
notification: boolean;
|
|
2880
|
+
chatSounds: boolean;
|
|
2838
2881
|
enableChat: boolean;
|
|
2839
2882
|
enableChatUpload: boolean;
|
|
2840
2883
|
enableChatOnlineList: boolean;
|
|
2841
2884
|
enableChatDisconnectedList: boolean;
|
|
2842
|
-
notification: boolean;
|
|
2843
|
-
chatSounds: boolean;
|
|
2844
2885
|
};
|
|
2845
2886
|
}, {
|
|
2846
2887
|
type: "settings";
|
|
2847
2888
|
data: {
|
|
2889
|
+
notification: boolean;
|
|
2890
|
+
chatSounds: boolean;
|
|
2848
2891
|
enableChat: boolean;
|
|
2849
2892
|
enableChatUpload: boolean;
|
|
2850
2893
|
enableChatOnlineList: boolean;
|
|
2851
2894
|
enableChatDisconnectedList: boolean;
|
|
2852
|
-
notification: boolean;
|
|
2853
|
-
chatSounds: boolean;
|
|
2854
2895
|
};
|
|
2855
2896
|
}>, z.ZodObject<{
|
|
2856
2897
|
type: z.ZodLiteral<"chatVisibility">;
|
|
@@ -2880,75 +2921,6 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2880
2921
|
}, {
|
|
2881
2922
|
type: "availabilityStatus";
|
|
2882
2923
|
data: number;
|
|
2883
|
-
}>, z.ZodObject<{
|
|
2884
|
-
type: z.ZodLiteral<"xmppSettingsMessage">;
|
|
2885
|
-
data: z.ZodObject<{
|
|
2886
|
-
conferenceDomain: z.ZodString;
|
|
2887
|
-
rooms: z.ZodArray<z.ZodObject<{
|
|
2888
|
-
name: z.ZodString;
|
|
2889
|
-
url: z.ZodString;
|
|
2890
|
-
type: z.ZodString;
|
|
2891
|
-
subscribe: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2892
|
-
}, "strip", z.ZodTypeAny, {
|
|
2893
|
-
url: string;
|
|
2894
|
-
type: string;
|
|
2895
|
-
name: string;
|
|
2896
|
-
subscribe: boolean;
|
|
2897
|
-
}, {
|
|
2898
|
-
subscribe?: boolean | undefined;
|
|
2899
|
-
url: string;
|
|
2900
|
-
type: string;
|
|
2901
|
-
name: string;
|
|
2902
|
-
}>, "many">;
|
|
2903
|
-
jabberId: z.ZodString;
|
|
2904
|
-
jabberPassword: z.ZodString;
|
|
2905
|
-
}, "strip", z.ZodTypeAny, {
|
|
2906
|
-
conferenceDomain: string;
|
|
2907
|
-
rooms: {
|
|
2908
|
-
url: string;
|
|
2909
|
-
type: string;
|
|
2910
|
-
name: string;
|
|
2911
|
-
subscribe: boolean;
|
|
2912
|
-
}[];
|
|
2913
|
-
jabberId: string;
|
|
2914
|
-
jabberPassword: string;
|
|
2915
|
-
}, {
|
|
2916
|
-
conferenceDomain: string;
|
|
2917
|
-
rooms: {
|
|
2918
|
-
subscribe?: boolean | undefined;
|
|
2919
|
-
url: string;
|
|
2920
|
-
type: string;
|
|
2921
|
-
name: string;
|
|
2922
|
-
}[];
|
|
2923
|
-
jabberId: string;
|
|
2924
|
-
jabberPassword: string;
|
|
2925
|
-
}>;
|
|
2926
|
-
}, "strip", z.ZodTypeAny, {
|
|
2927
|
-
type: "xmppSettingsMessage";
|
|
2928
|
-
data: {
|
|
2929
|
-
conferenceDomain: string;
|
|
2930
|
-
rooms: {
|
|
2931
|
-
url: string;
|
|
2932
|
-
type: string;
|
|
2933
|
-
name: string;
|
|
2934
|
-
subscribe: boolean;
|
|
2935
|
-
}[];
|
|
2936
|
-
jabberId: string;
|
|
2937
|
-
jabberPassword: string;
|
|
2938
|
-
};
|
|
2939
|
-
}, {
|
|
2940
|
-
type: "xmppSettingsMessage";
|
|
2941
|
-
data: {
|
|
2942
|
-
conferenceDomain: string;
|
|
2943
|
-
rooms: {
|
|
2944
|
-
subscribe?: boolean | undefined;
|
|
2945
|
-
url: string;
|
|
2946
|
-
type: string;
|
|
2947
|
-
name: string;
|
|
2948
|
-
}[];
|
|
2949
|
-
jabberId: string;
|
|
2950
|
-
jabberPassword: string;
|
|
2951
|
-
};
|
|
2952
2924
|
}>, z.ZodObject<{
|
|
2953
2925
|
type: z.ZodLiteral<"peerConnectionStatus">;
|
|
2954
2926
|
data: z.ZodBoolean;
|
|
@@ -2961,6 +2933,7 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2961
2933
|
}>, z.ZodObject<{
|
|
2962
2934
|
type: z.ZodLiteral<"comingUser">;
|
|
2963
2935
|
data: z.ZodObject<{
|
|
2936
|
+
id: z.ZodOptional<z.ZodString>;
|
|
2964
2937
|
type: z.ZodNativeEnum<typeof import("@workadventure/shared-utils").ChatMessageTypes>;
|
|
2965
2938
|
date: z.ZodDate;
|
|
2966
2939
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -2971,89 +2944,94 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2971
2944
|
isMember: z.ZodBoolean;
|
|
2972
2945
|
color: z.ZodOptional<z.ZodString>;
|
|
2973
2946
|
}, "strip", z.ZodTypeAny, {
|
|
2974
|
-
color?: string | undefined;
|
|
2975
2947
|
name: string;
|
|
2976
2948
|
active: boolean;
|
|
2977
2949
|
isMe: boolean;
|
|
2978
2950
|
jid: string;
|
|
2979
2951
|
isMember: boolean;
|
|
2980
|
-
}, {
|
|
2981
2952
|
color?: string | undefined;
|
|
2953
|
+
}, {
|
|
2982
2954
|
name: string;
|
|
2983
2955
|
active: boolean;
|
|
2984
2956
|
isMe: boolean;
|
|
2985
2957
|
jid: string;
|
|
2986
2958
|
isMember: boolean;
|
|
2959
|
+
color?: string | undefined;
|
|
2987
2960
|
}>>>;
|
|
2988
2961
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2989
2962
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2990
2963
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
2991
2964
|
}, "strip", z.ZodTypeAny, {
|
|
2965
|
+
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
2966
|
+
date: Date;
|
|
2992
2967
|
author?: {
|
|
2993
|
-
color?: string | undefined;
|
|
2994
2968
|
name: string;
|
|
2995
2969
|
active: boolean;
|
|
2996
2970
|
isMe: boolean;
|
|
2997
2971
|
jid: string;
|
|
2998
2972
|
isMember: boolean;
|
|
2973
|
+
color?: string | undefined;
|
|
2999
2974
|
} | null | undefined;
|
|
3000
2975
|
text?: string[] | null | undefined;
|
|
3001
2976
|
name?: string | null | undefined;
|
|
2977
|
+
id?: string | undefined;
|
|
3002
2978
|
targets?: (string | null)[] | null | undefined;
|
|
2979
|
+
}, {
|
|
3003
2980
|
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3004
2981
|
date: Date;
|
|
3005
|
-
}, {
|
|
3006
2982
|
author?: {
|
|
3007
|
-
color?: string | undefined;
|
|
3008
2983
|
name: string;
|
|
3009
2984
|
active: boolean;
|
|
3010
2985
|
isMe: boolean;
|
|
3011
2986
|
jid: string;
|
|
3012
2987
|
isMember: boolean;
|
|
2988
|
+
color?: string | undefined;
|
|
3013
2989
|
} | null | undefined;
|
|
3014
2990
|
text?: string[] | null | undefined;
|
|
3015
2991
|
name?: string | null | undefined;
|
|
2992
|
+
id?: string | undefined;
|
|
3016
2993
|
targets?: (string | null)[] | null | undefined;
|
|
3017
|
-
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3018
|
-
date: Date;
|
|
3019
2994
|
}>;
|
|
3020
2995
|
}, "strip", z.ZodTypeAny, {
|
|
3021
2996
|
type: "comingUser";
|
|
3022
2997
|
data: {
|
|
2998
|
+
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
2999
|
+
date: Date;
|
|
3023
3000
|
author?: {
|
|
3024
|
-
color?: string | undefined;
|
|
3025
3001
|
name: string;
|
|
3026
3002
|
active: boolean;
|
|
3027
3003
|
isMe: boolean;
|
|
3028
3004
|
jid: string;
|
|
3029
3005
|
isMember: boolean;
|
|
3006
|
+
color?: string | undefined;
|
|
3030
3007
|
} | null | undefined;
|
|
3031
3008
|
text?: string[] | null | undefined;
|
|
3032
3009
|
name?: string | null | undefined;
|
|
3010
|
+
id?: string | undefined;
|
|
3033
3011
|
targets?: (string | null)[] | null | undefined;
|
|
3034
|
-
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3035
|
-
date: Date;
|
|
3036
3012
|
};
|
|
3037
3013
|
}, {
|
|
3038
3014
|
type: "comingUser";
|
|
3039
3015
|
data: {
|
|
3016
|
+
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3017
|
+
date: Date;
|
|
3040
3018
|
author?: {
|
|
3041
|
-
color?: string | undefined;
|
|
3042
3019
|
name: string;
|
|
3043
3020
|
active: boolean;
|
|
3044
3021
|
isMe: boolean;
|
|
3045
3022
|
jid: string;
|
|
3046
3023
|
isMember: boolean;
|
|
3024
|
+
color?: string | undefined;
|
|
3047
3025
|
} | null | undefined;
|
|
3048
3026
|
text?: string[] | null | undefined;
|
|
3049
3027
|
name?: string | null | undefined;
|
|
3028
|
+
id?: string | undefined;
|
|
3050
3029
|
targets?: (string | null)[] | null | undefined;
|
|
3051
|
-
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3052
|
-
date: Date;
|
|
3053
3030
|
};
|
|
3054
3031
|
}>, z.ZodObject<{
|
|
3055
3032
|
type: z.ZodLiteral<"addChatMessage">;
|
|
3056
3033
|
data: z.ZodObject<{
|
|
3034
|
+
id: z.ZodOptional<z.ZodString>;
|
|
3057
3035
|
type: z.ZodNativeEnum<typeof import("@workadventure/shared-utils").ChatMessageTypes>;
|
|
3058
3036
|
date: z.ZodDate;
|
|
3059
3037
|
author: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
@@ -3064,85 +3042,89 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
3064
3042
|
isMember: z.ZodBoolean;
|
|
3065
3043
|
color: z.ZodOptional<z.ZodString>;
|
|
3066
3044
|
}, "strip", z.ZodTypeAny, {
|
|
3067
|
-
color?: string | undefined;
|
|
3068
3045
|
name: string;
|
|
3069
3046
|
active: boolean;
|
|
3070
3047
|
isMe: boolean;
|
|
3071
3048
|
jid: string;
|
|
3072
3049
|
isMember: boolean;
|
|
3073
|
-
}, {
|
|
3074
3050
|
color?: string | undefined;
|
|
3051
|
+
}, {
|
|
3075
3052
|
name: string;
|
|
3076
3053
|
active: boolean;
|
|
3077
3054
|
isMe: boolean;
|
|
3078
3055
|
jid: string;
|
|
3079
3056
|
isMember: boolean;
|
|
3057
|
+
color?: string | undefined;
|
|
3080
3058
|
}>>>;
|
|
3081
3059
|
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3082
3060
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
3083
3061
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodString, "many">>>;
|
|
3084
3062
|
}, "strip", z.ZodTypeAny, {
|
|
3063
|
+
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3064
|
+
date: Date;
|
|
3085
3065
|
author?: {
|
|
3086
|
-
color?: string | undefined;
|
|
3087
3066
|
name: string;
|
|
3088
3067
|
active: boolean;
|
|
3089
3068
|
isMe: boolean;
|
|
3090
3069
|
jid: string;
|
|
3091
3070
|
isMember: boolean;
|
|
3071
|
+
color?: string | undefined;
|
|
3092
3072
|
} | null | undefined;
|
|
3093
3073
|
text?: string[] | null | undefined;
|
|
3094
3074
|
name?: string | null | undefined;
|
|
3075
|
+
id?: string | undefined;
|
|
3095
3076
|
targets?: (string | null)[] | null | undefined;
|
|
3077
|
+
}, {
|
|
3096
3078
|
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3097
3079
|
date: Date;
|
|
3098
|
-
}, {
|
|
3099
3080
|
author?: {
|
|
3100
|
-
color?: string | undefined;
|
|
3101
3081
|
name: string;
|
|
3102
3082
|
active: boolean;
|
|
3103
3083
|
isMe: boolean;
|
|
3104
3084
|
jid: string;
|
|
3105
3085
|
isMember: boolean;
|
|
3086
|
+
color?: string | undefined;
|
|
3106
3087
|
} | null | undefined;
|
|
3107
3088
|
text?: string[] | null | undefined;
|
|
3108
3089
|
name?: string | null | undefined;
|
|
3090
|
+
id?: string | undefined;
|
|
3109
3091
|
targets?: (string | null)[] | null | undefined;
|
|
3110
|
-
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3111
|
-
date: Date;
|
|
3112
3092
|
}>;
|
|
3113
3093
|
}, "strip", z.ZodTypeAny, {
|
|
3114
3094
|
type: "addChatMessage";
|
|
3115
3095
|
data: {
|
|
3096
|
+
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3097
|
+
date: Date;
|
|
3116
3098
|
author?: {
|
|
3117
|
-
color?: string | undefined;
|
|
3118
3099
|
name: string;
|
|
3119
3100
|
active: boolean;
|
|
3120
3101
|
isMe: boolean;
|
|
3121
3102
|
jid: string;
|
|
3122
3103
|
isMember: boolean;
|
|
3104
|
+
color?: string | undefined;
|
|
3123
3105
|
} | null | undefined;
|
|
3124
3106
|
text?: string[] | null | undefined;
|
|
3125
3107
|
name?: string | null | undefined;
|
|
3108
|
+
id?: string | undefined;
|
|
3126
3109
|
targets?: (string | null)[] | null | undefined;
|
|
3127
|
-
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3128
|
-
date: Date;
|
|
3129
3110
|
};
|
|
3130
3111
|
}, {
|
|
3131
3112
|
type: "addChatMessage";
|
|
3132
3113
|
data: {
|
|
3114
|
+
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3115
|
+
date: Date;
|
|
3133
3116
|
author?: {
|
|
3134
|
-
color?: string | undefined;
|
|
3135
3117
|
name: string;
|
|
3136
3118
|
active: boolean;
|
|
3137
3119
|
isMe: boolean;
|
|
3138
3120
|
jid: string;
|
|
3139
3121
|
isMember: boolean;
|
|
3122
|
+
color?: string | undefined;
|
|
3140
3123
|
} | null | undefined;
|
|
3141
3124
|
text?: string[] | null | undefined;
|
|
3142
3125
|
name?: string | null | undefined;
|
|
3126
|
+
id?: string | undefined;
|
|
3143
3127
|
targets?: (string | null)[] | null | undefined;
|
|
3144
|
-
type: import("@workadventure/shared-utils").ChatMessageTypes;
|
|
3145
|
-
date: Date;
|
|
3146
3128
|
};
|
|
3147
3129
|
}>, z.ZodObject<{
|
|
3148
3130
|
type: z.ZodLiteral<"updateWritingStatusChatList">;
|
|
@@ -3195,9 +3177,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
3195
3177
|
label: string;
|
|
3196
3178
|
id: string;
|
|
3197
3179
|
}, {
|
|
3198
|
-
type?: "button" | undefined;
|
|
3199
3180
|
label: string;
|
|
3200
3181
|
id: string;
|
|
3182
|
+
type?: "button" | undefined;
|
|
3201
3183
|
}>, z.ZodObject<{
|
|
3202
3184
|
id: z.ZodString;
|
|
3203
3185
|
type: z.ZodEnum<["action"]>;
|
|
@@ -3229,9 +3211,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
3229
3211
|
}, {
|
|
3230
3212
|
type: "buttonActionBarTrigger";
|
|
3231
3213
|
data: {
|
|
3232
|
-
type?: "button" | undefined;
|
|
3233
3214
|
label: string;
|
|
3234
3215
|
id: string;
|
|
3216
|
+
type?: "button" | undefined;
|
|
3235
3217
|
} | {
|
|
3236
3218
|
type: "action";
|
|
3237
3219
|
id: string;
|
|
@@ -3248,34 +3230,34 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
3248
3230
|
allowApi: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3249
3231
|
}, "strip", z.ZodTypeAny, {
|
|
3250
3232
|
title: string;
|
|
3251
|
-
position: "left" | "right" | "center";
|
|
3252
|
-
src: string;
|
|
3253
3233
|
allowApi: boolean;
|
|
3234
|
+
position: "left" | "right" | "center";
|
|
3254
3235
|
allow: string | null;
|
|
3236
|
+
src: string;
|
|
3255
3237
|
}, {
|
|
3238
|
+
src: string;
|
|
3256
3239
|
title?: string | undefined;
|
|
3257
|
-
position?: "left" | "right" | "center" | undefined;
|
|
3258
3240
|
allowApi?: boolean | undefined;
|
|
3241
|
+
position?: "left" | "right" | "center" | undefined;
|
|
3259
3242
|
allow?: string | null | undefined;
|
|
3260
|
-
src: string;
|
|
3261
3243
|
}>;
|
|
3262
3244
|
}, "strip", z.ZodTypeAny, {
|
|
3263
3245
|
type: "modalCloseTrigger";
|
|
3264
3246
|
data: {
|
|
3265
3247
|
title: string;
|
|
3266
|
-
position: "left" | "right" | "center";
|
|
3267
|
-
src: string;
|
|
3268
3248
|
allowApi: boolean;
|
|
3249
|
+
position: "left" | "right" | "center";
|
|
3269
3250
|
allow: string | null;
|
|
3251
|
+
src: string;
|
|
3270
3252
|
};
|
|
3271
3253
|
}, {
|
|
3272
3254
|
type: "modalCloseTrigger";
|
|
3273
3255
|
data: {
|
|
3256
|
+
src: string;
|
|
3274
3257
|
title?: string | undefined;
|
|
3275
|
-
position?: "left" | "right" | "center" | undefined;
|
|
3276
3258
|
allowApi?: boolean | undefined;
|
|
3259
|
+
position?: "left" | "right" | "center" | undefined;
|
|
3277
3260
|
allow?: string | null | undefined;
|
|
3278
|
-
src: string;
|
|
3279
3261
|
};
|
|
3280
3262
|
}>, z.ZodObject<{
|
|
3281
3263
|
type: z.ZodLiteral<"banUser">;
|
|
@@ -3308,13 +3290,13 @@ export declare const isLookingLikeIframeEventWrapper: z.ZodObject<{
|
|
|
3308
3290
|
data: z.ZodOptional<z.ZodUnknown>;
|
|
3309
3291
|
payload: z.ZodOptional<z.ZodUnknown>;
|
|
3310
3292
|
}, "strip", z.ZodTypeAny, {
|
|
3293
|
+
type: string;
|
|
3311
3294
|
data?: unknown;
|
|
3312
3295
|
payload?: unknown;
|
|
3313
|
-
type: string;
|
|
3314
3296
|
}, {
|
|
3297
|
+
type: string;
|
|
3315
3298
|
data?: unknown;
|
|
3316
3299
|
payload?: unknown;
|
|
3317
|
-
type: string;
|
|
3318
3300
|
}>;
|
|
3319
3301
|
/**
|
|
3320
3302
|
* List event types sent from an iFrame to WorkAdventure that expect a unique answer from WorkAdventure along the type for the answer from WorkAdventure to the iFrame.
|
|
@@ -3340,37 +3322,37 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3340
3322
|
iframeId: z.ZodOptional<z.ZodString>;
|
|
3341
3323
|
isLogged: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
3342
3324
|
}, "strip", z.ZodTypeAny, {
|
|
3343
|
-
|
|
3325
|
+
roomId: string;
|
|
3326
|
+
hashParameters: Record<string, string>;
|
|
3327
|
+
mapUrl: string;
|
|
3328
|
+
nickname: string;
|
|
3329
|
+
tags: string[];
|
|
3330
|
+
isLogged: boolean;
|
|
3344
3331
|
uuid?: string | undefined;
|
|
3345
|
-
variables?: unknown;
|
|
3346
|
-
userRoomToken?: string | undefined;
|
|
3347
3332
|
language?: string | undefined;
|
|
3348
3333
|
playerId?: number | undefined;
|
|
3349
3334
|
startLayerName?: string | undefined;
|
|
3335
|
+
variables?: unknown;
|
|
3350
3336
|
playerVariables?: unknown;
|
|
3337
|
+
userRoomToken?: string | undefined;
|
|
3338
|
+
metadata?: unknown;
|
|
3351
3339
|
iframeId?: string | undefined;
|
|
3352
|
-
|
|
3340
|
+
}, {
|
|
3353
3341
|
roomId: string;
|
|
3354
|
-
isLogged: boolean;
|
|
3355
|
-
mapUrl: string;
|
|
3356
3342
|
hashParameters: Record<string, string>;
|
|
3343
|
+
mapUrl: string;
|
|
3357
3344
|
nickname: string;
|
|
3358
|
-
|
|
3359
|
-
metadata?: unknown;
|
|
3345
|
+
tags: string[];
|
|
3360
3346
|
uuid?: string | undefined;
|
|
3361
|
-
variables?: unknown;
|
|
3362
|
-
userRoomToken?: string | undefined;
|
|
3363
|
-
isLogged?: boolean | undefined;
|
|
3364
3347
|
language?: string | undefined;
|
|
3365
3348
|
playerId?: number | undefined;
|
|
3366
3349
|
startLayerName?: string | undefined;
|
|
3350
|
+
variables?: unknown;
|
|
3367
3351
|
playerVariables?: unknown;
|
|
3352
|
+
userRoomToken?: string | undefined;
|
|
3353
|
+
metadata?: unknown;
|
|
3368
3354
|
iframeId?: string | undefined;
|
|
3369
|
-
|
|
3370
|
-
roomId: string;
|
|
3371
|
-
mapUrl: string;
|
|
3372
|
-
hashParameters: Record<string, string>;
|
|
3373
|
-
nickname: string;
|
|
3355
|
+
isLogged?: boolean | undefined;
|
|
3374
3356
|
}>;
|
|
3375
3357
|
};
|
|
3376
3358
|
getMapData: {
|
|
@@ -3388,11 +3370,11 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3388
3370
|
key: z.ZodString;
|
|
3389
3371
|
value: z.ZodUnknown;
|
|
3390
3372
|
}, "strip", z.ZodTypeAny, {
|
|
3391
|
-
value?: unknown;
|
|
3392
3373
|
key: string;
|
|
3393
|
-
}, {
|
|
3394
3374
|
value?: unknown;
|
|
3375
|
+
}, {
|
|
3395
3376
|
key: string;
|
|
3377
|
+
value?: unknown;
|
|
3396
3378
|
}>;
|
|
3397
3379
|
answer: z.ZodUndefined;
|
|
3398
3380
|
};
|
|
@@ -3405,19 +3387,19 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3405
3387
|
ttl: z.ZodOptional<z.ZodNumber>;
|
|
3406
3388
|
scope: z.ZodUnion<[z.ZodLiteral<"room">, z.ZodLiteral<"world">]>;
|
|
3407
3389
|
}, "strip", z.ZodTypeAny, {
|
|
3408
|
-
|
|
3409
|
-
ttl?: number | undefined;
|
|
3390
|
+
scope: "room" | "world";
|
|
3410
3391
|
key: string;
|
|
3411
3392
|
public: boolean;
|
|
3412
3393
|
persist: boolean;
|
|
3413
|
-
scope: "room" | "world";
|
|
3414
|
-
}, {
|
|
3415
3394
|
value?: unknown;
|
|
3416
3395
|
ttl?: number | undefined;
|
|
3396
|
+
}, {
|
|
3397
|
+
scope: "room" | "world";
|
|
3417
3398
|
key: string;
|
|
3418
3399
|
public: boolean;
|
|
3419
3400
|
persist: boolean;
|
|
3420
|
-
|
|
3401
|
+
value?: unknown;
|
|
3402
|
+
ttl?: number | undefined;
|
|
3421
3403
|
}>;
|
|
3422
3404
|
answer: z.ZodUndefined;
|
|
3423
3405
|
};
|
|
@@ -3427,13 +3409,13 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3427
3409
|
data: z.ZodUnknown;
|
|
3428
3410
|
targetUserIds: z.ZodOptional<z.ZodArray<z.ZodNumber, "many">>;
|
|
3429
3411
|
}, "strip", z.ZodTypeAny, {
|
|
3412
|
+
name: string;
|
|
3430
3413
|
data?: unknown;
|
|
3431
3414
|
targetUserIds?: number[] | undefined;
|
|
3432
|
-
name: string;
|
|
3433
3415
|
}, {
|
|
3416
|
+
name: string;
|
|
3434
3417
|
data?: unknown;
|
|
3435
3418
|
targetUserIds?: number[] | undefined;
|
|
3436
|
-
name: string;
|
|
3437
3419
|
}>;
|
|
3438
3420
|
answer: z.ZodUndefined;
|
|
3439
3421
|
};
|
|
@@ -3457,21 +3439,21 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3457
3439
|
closable: z.ZodOptional<z.ZodBoolean>;
|
|
3458
3440
|
lazy: z.ZodOptional<z.ZodBoolean>;
|
|
3459
3441
|
}, "strip", z.ZodTypeAny, {
|
|
3460
|
-
|
|
3442
|
+
url: string;
|
|
3461
3443
|
allowApi?: boolean | undefined;
|
|
3462
3444
|
allowPolicy?: string | undefined;
|
|
3463
3445
|
widthPercent?: number | undefined;
|
|
3446
|
+
position?: number | undefined;
|
|
3464
3447
|
closable?: boolean | undefined;
|
|
3465
3448
|
lazy?: boolean | undefined;
|
|
3466
|
-
url: string;
|
|
3467
3449
|
}, {
|
|
3468
|
-
|
|
3450
|
+
url: string;
|
|
3469
3451
|
allowApi?: boolean | undefined;
|
|
3470
3452
|
allowPolicy?: string | undefined;
|
|
3471
3453
|
widthPercent?: number | undefined;
|
|
3454
|
+
position?: number | undefined;
|
|
3472
3455
|
closable?: boolean | undefined;
|
|
3473
3456
|
lazy?: boolean | undefined;
|
|
3474
|
-
url: string;
|
|
3475
3457
|
}>;
|
|
3476
3458
|
answer: z.ZodObject<{
|
|
3477
3459
|
id: z.ZodString;
|
|
@@ -3582,11 +3564,6 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3582
3564
|
origin: z.ZodOptional<z.ZodEnum<["player", "map"]>>;
|
|
3583
3565
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
3584
3566
|
}, "strip", z.ZodTypeAny, {
|
|
3585
|
-
allowApi?: boolean | undefined;
|
|
3586
|
-
visible?: boolean | undefined;
|
|
3587
|
-
allow?: string | undefined;
|
|
3588
|
-
origin?: "map" | "player" | undefined;
|
|
3589
|
-
scale?: number | undefined;
|
|
3590
3567
|
url: string;
|
|
3591
3568
|
name: string;
|
|
3592
3569
|
position: {
|
|
@@ -3595,12 +3572,12 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3595
3572
|
x: number;
|
|
3596
3573
|
y: number;
|
|
3597
3574
|
};
|
|
3598
|
-
}, {
|
|
3599
3575
|
allowApi?: boolean | undefined;
|
|
3600
3576
|
visible?: boolean | undefined;
|
|
3601
3577
|
allow?: string | undefined;
|
|
3602
3578
|
origin?: "map" | "player" | undefined;
|
|
3603
3579
|
scale?: number | undefined;
|
|
3580
|
+
}, {
|
|
3604
3581
|
url: string;
|
|
3605
3582
|
name: string;
|
|
3606
3583
|
position: {
|
|
@@ -3609,6 +3586,11 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3609
3586
|
x: number;
|
|
3610
3587
|
y: number;
|
|
3611
3588
|
};
|
|
3589
|
+
allowApi?: boolean | undefined;
|
|
3590
|
+
visible?: boolean | undefined;
|
|
3591
|
+
allow?: string | undefined;
|
|
3592
|
+
origin?: "map" | "player" | undefined;
|
|
3593
|
+
scale?: number | undefined;
|
|
3612
3594
|
}>;
|
|
3613
3595
|
};
|
|
3614
3596
|
deleteEmbeddedWebsite: {
|
|
@@ -3641,11 +3623,6 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3641
3623
|
origin: z.ZodOptional<z.ZodEnum<["player", "map"]>>;
|
|
3642
3624
|
scale: z.ZodOptional<z.ZodNumber>;
|
|
3643
3625
|
}, "strip", z.ZodTypeAny, {
|
|
3644
|
-
allowApi?: boolean | undefined;
|
|
3645
|
-
visible?: boolean | undefined;
|
|
3646
|
-
allow?: string | undefined;
|
|
3647
|
-
origin?: "map" | "player" | undefined;
|
|
3648
|
-
scale?: number | undefined;
|
|
3649
3626
|
url: string;
|
|
3650
3627
|
name: string;
|
|
3651
3628
|
position: {
|
|
@@ -3654,12 +3631,12 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3654
3631
|
x: number;
|
|
3655
3632
|
y: number;
|
|
3656
3633
|
};
|
|
3657
|
-
}, {
|
|
3658
3634
|
allowApi?: boolean | undefined;
|
|
3659
3635
|
visible?: boolean | undefined;
|
|
3660
3636
|
allow?: string | undefined;
|
|
3661
3637
|
origin?: "map" | "player" | undefined;
|
|
3662
3638
|
scale?: number | undefined;
|
|
3639
|
+
}, {
|
|
3663
3640
|
url: string;
|
|
3664
3641
|
name: string;
|
|
3665
3642
|
position: {
|
|
@@ -3668,6 +3645,11 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3668
3645
|
x: number;
|
|
3669
3646
|
y: number;
|
|
3670
3647
|
};
|
|
3648
|
+
allowApi?: boolean | undefined;
|
|
3649
|
+
visible?: boolean | undefined;
|
|
3650
|
+
allow?: string | undefined;
|
|
3651
|
+
origin?: "map" | "player" | undefined;
|
|
3652
|
+
scale?: number | undefined;
|
|
3671
3653
|
}>;
|
|
3672
3654
|
answer: z.ZodUndefined;
|
|
3673
3655
|
};
|
|
@@ -3681,15 +3663,15 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3681
3663
|
}, "strip", z.ZodTypeAny, {
|
|
3682
3664
|
height: number;
|
|
3683
3665
|
width: number;
|
|
3666
|
+
name: string;
|
|
3684
3667
|
x: number;
|
|
3685
3668
|
y: number;
|
|
3686
|
-
name: string;
|
|
3687
3669
|
}, {
|
|
3688
3670
|
height: number;
|
|
3689
3671
|
width: number;
|
|
3672
|
+
name: string;
|
|
3690
3673
|
x: number;
|
|
3691
3674
|
y: number;
|
|
3692
|
-
name: string;
|
|
3693
3675
|
}>;
|
|
3694
3676
|
answer: z.ZodUndefined;
|
|
3695
3677
|
};
|
|
@@ -3704,15 +3686,15 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3704
3686
|
}, "strip", z.ZodTypeAny, {
|
|
3705
3687
|
height: number;
|
|
3706
3688
|
width: number;
|
|
3689
|
+
name: string;
|
|
3707
3690
|
x: number;
|
|
3708
3691
|
y: number;
|
|
3709
|
-
name: string;
|
|
3710
3692
|
}, {
|
|
3711
3693
|
height: number;
|
|
3712
3694
|
width: number;
|
|
3695
|
+
name: string;
|
|
3713
3696
|
x: number;
|
|
3714
3697
|
y: number;
|
|
3715
|
-
name: string;
|
|
3716
3698
|
}>;
|
|
3717
3699
|
};
|
|
3718
3700
|
modifyArea: {
|
|
@@ -3723,17 +3705,17 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3723
3705
|
width: z.ZodOptional<z.ZodNumber>;
|
|
3724
3706
|
height: z.ZodOptional<z.ZodNumber>;
|
|
3725
3707
|
}, "strip", z.ZodTypeAny, {
|
|
3708
|
+
name: string;
|
|
3726
3709
|
height?: number | undefined;
|
|
3727
3710
|
width?: number | undefined;
|
|
3728
3711
|
x?: number | undefined;
|
|
3729
3712
|
y?: number | undefined;
|
|
3730
|
-
name: string;
|
|
3731
3713
|
}, {
|
|
3714
|
+
name: string;
|
|
3732
3715
|
height?: number | undefined;
|
|
3733
3716
|
width?: number | undefined;
|
|
3734
3717
|
x?: number | undefined;
|
|
3735
3718
|
y?: number | undefined;
|
|
3736
|
-
name: string;
|
|
3737
3719
|
}>;
|
|
3738
3720
|
answer: z.ZodUndefined;
|
|
3739
3721
|
};
|
|
@@ -3780,13 +3762,13 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3780
3762
|
y: z.ZodNumber;
|
|
3781
3763
|
speed: z.ZodOptional<z.ZodNumber>;
|
|
3782
3764
|
}, "strip", z.ZodTypeAny, {
|
|
3783
|
-
speed?: number | undefined;
|
|
3784
3765
|
x: number;
|
|
3785
3766
|
y: number;
|
|
3786
|
-
}, {
|
|
3787
3767
|
speed?: number | undefined;
|
|
3768
|
+
}, {
|
|
3788
3769
|
x: number;
|
|
3789
3770
|
y: number;
|
|
3771
|
+
speed?: number | undefined;
|
|
3790
3772
|
}>;
|
|
3791
3773
|
answer: z.ZodObject<{
|
|
3792
3774
|
x: z.ZodNumber;
|
|
@@ -3849,24 +3831,15 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3849
3831
|
}, "strip", z.ZodTypeAny, {
|
|
3850
3832
|
left?: string | undefined;
|
|
3851
3833
|
top?: string | undefined;
|
|
3852
|
-
right?: string | undefined;
|
|
3853
3834
|
bottom?: string | undefined;
|
|
3835
|
+
right?: string | undefined;
|
|
3854
3836
|
}, {
|
|
3855
3837
|
left?: string | undefined;
|
|
3856
3838
|
top?: string | undefined;
|
|
3857
|
-
right?: string | undefined;
|
|
3858
3839
|
bottom?: string | undefined;
|
|
3840
|
+
right?: string | undefined;
|
|
3859
3841
|
}>>;
|
|
3860
3842
|
}, "strip", z.ZodTypeAny, {
|
|
3861
|
-
allowApi?: boolean | undefined;
|
|
3862
|
-
allowPolicy?: string | undefined;
|
|
3863
|
-
visible?: boolean | undefined;
|
|
3864
|
-
margin?: {
|
|
3865
|
-
left?: string | undefined;
|
|
3866
|
-
top?: string | undefined;
|
|
3867
|
-
right?: string | undefined;
|
|
3868
|
-
bottom?: string | undefined;
|
|
3869
|
-
} | undefined;
|
|
3870
3843
|
url: string;
|
|
3871
3844
|
position: {
|
|
3872
3845
|
vertical: "top" | "bottom" | "middle";
|
|
@@ -3876,16 +3849,16 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3876
3849
|
height: string;
|
|
3877
3850
|
width: string;
|
|
3878
3851
|
};
|
|
3879
|
-
}, {
|
|
3880
3852
|
allowApi?: boolean | undefined;
|
|
3881
3853
|
allowPolicy?: string | undefined;
|
|
3882
3854
|
visible?: boolean | undefined;
|
|
3883
3855
|
margin?: {
|
|
3884
3856
|
left?: string | undefined;
|
|
3885
3857
|
top?: string | undefined;
|
|
3886
|
-
right?: string | undefined;
|
|
3887
3858
|
bottom?: string | undefined;
|
|
3859
|
+
right?: string | undefined;
|
|
3888
3860
|
} | undefined;
|
|
3861
|
+
}, {
|
|
3889
3862
|
url: string;
|
|
3890
3863
|
position: {
|
|
3891
3864
|
vertical: "top" | "bottom" | "middle";
|
|
@@ -3895,6 +3868,15 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3895
3868
|
height: string;
|
|
3896
3869
|
width: string;
|
|
3897
3870
|
};
|
|
3871
|
+
allowApi?: boolean | undefined;
|
|
3872
|
+
allowPolicy?: string | undefined;
|
|
3873
|
+
visible?: boolean | undefined;
|
|
3874
|
+
margin?: {
|
|
3875
|
+
left?: string | undefined;
|
|
3876
|
+
top?: string | undefined;
|
|
3877
|
+
bottom?: string | undefined;
|
|
3878
|
+
right?: string | undefined;
|
|
3879
|
+
} | undefined;
|
|
3898
3880
|
}>;
|
|
3899
3881
|
answer: z.ZodObject<{
|
|
3900
3882
|
id: z.ZodString;
|
|
@@ -3930,54 +3912,54 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3930
3912
|
}, "strip", z.ZodTypeAny, {
|
|
3931
3913
|
left?: string | undefined;
|
|
3932
3914
|
top?: string | undefined;
|
|
3933
|
-
right?: string | undefined;
|
|
3934
3915
|
bottom?: string | undefined;
|
|
3916
|
+
right?: string | undefined;
|
|
3935
3917
|
}, {
|
|
3936
3918
|
left?: string | undefined;
|
|
3937
3919
|
top?: string | undefined;
|
|
3938
|
-
right?: string | undefined;
|
|
3939
3920
|
bottom?: string | undefined;
|
|
3921
|
+
right?: string | undefined;
|
|
3940
3922
|
}>>;
|
|
3941
3923
|
}, "strip", z.ZodTypeAny, {
|
|
3942
|
-
margin?: {
|
|
3943
|
-
left?: string | undefined;
|
|
3944
|
-
top?: string | undefined;
|
|
3945
|
-
right?: string | undefined;
|
|
3946
|
-
bottom?: string | undefined;
|
|
3947
|
-
} | undefined;
|
|
3948
3924
|
url: string;
|
|
3949
3925
|
id: string;
|
|
3926
|
+
allowApi: boolean;
|
|
3927
|
+
allowPolicy: string;
|
|
3950
3928
|
position: {
|
|
3951
3929
|
vertical: "top" | "bottom" | "middle";
|
|
3952
3930
|
horizontal: "left" | "right" | "middle";
|
|
3953
3931
|
};
|
|
3954
|
-
allowApi: boolean;
|
|
3955
|
-
allowPolicy: string;
|
|
3956
3932
|
visible: boolean;
|
|
3957
3933
|
size: {
|
|
3958
3934
|
height: string;
|
|
3959
3935
|
width: string;
|
|
3960
3936
|
};
|
|
3961
|
-
}, {
|
|
3962
3937
|
margin?: {
|
|
3963
3938
|
left?: string | undefined;
|
|
3964
3939
|
top?: string | undefined;
|
|
3965
|
-
right?: string | undefined;
|
|
3966
3940
|
bottom?: string | undefined;
|
|
3941
|
+
right?: string | undefined;
|
|
3967
3942
|
} | undefined;
|
|
3943
|
+
}, {
|
|
3968
3944
|
url: string;
|
|
3969
3945
|
id: string;
|
|
3946
|
+
allowApi: boolean;
|
|
3947
|
+
allowPolicy: string;
|
|
3970
3948
|
position: {
|
|
3971
3949
|
vertical: "top" | "bottom" | "middle";
|
|
3972
3950
|
horizontal: "left" | "right" | "middle";
|
|
3973
3951
|
};
|
|
3974
|
-
allowApi: boolean;
|
|
3975
|
-
allowPolicy: string;
|
|
3976
3952
|
visible: boolean;
|
|
3977
3953
|
size: {
|
|
3978
3954
|
height: string;
|
|
3979
3955
|
width: string;
|
|
3980
3956
|
};
|
|
3957
|
+
margin?: {
|
|
3958
|
+
left?: string | undefined;
|
|
3959
|
+
top?: string | undefined;
|
|
3960
|
+
bottom?: string | undefined;
|
|
3961
|
+
right?: string | undefined;
|
|
3962
|
+
} | undefined;
|
|
3981
3963
|
}>;
|
|
3982
3964
|
};
|
|
3983
3965
|
closeUIWebsite: {
|
|
@@ -4020,54 +4002,54 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
4020
4002
|
}, "strip", z.ZodTypeAny, {
|
|
4021
4003
|
left?: string | undefined;
|
|
4022
4004
|
top?: string | undefined;
|
|
4023
|
-
right?: string | undefined;
|
|
4024
4005
|
bottom?: string | undefined;
|
|
4006
|
+
right?: string | undefined;
|
|
4025
4007
|
}, {
|
|
4026
4008
|
left?: string | undefined;
|
|
4027
4009
|
top?: string | undefined;
|
|
4028
|
-
right?: string | undefined;
|
|
4029
4010
|
bottom?: string | undefined;
|
|
4011
|
+
right?: string | undefined;
|
|
4030
4012
|
}>>;
|
|
4031
4013
|
}, "strip", z.ZodTypeAny, {
|
|
4032
|
-
margin?: {
|
|
4033
|
-
left?: string | undefined;
|
|
4034
|
-
top?: string | undefined;
|
|
4035
|
-
right?: string | undefined;
|
|
4036
|
-
bottom?: string | undefined;
|
|
4037
|
-
} | undefined;
|
|
4038
4014
|
url: string;
|
|
4039
4015
|
id: string;
|
|
4016
|
+
allowApi: boolean;
|
|
4017
|
+
allowPolicy: string;
|
|
4040
4018
|
position: {
|
|
4041
4019
|
vertical: "top" | "bottom" | "middle";
|
|
4042
4020
|
horizontal: "left" | "right" | "middle";
|
|
4043
4021
|
};
|
|
4044
|
-
allowApi: boolean;
|
|
4045
|
-
allowPolicy: string;
|
|
4046
4022
|
visible: boolean;
|
|
4047
4023
|
size: {
|
|
4048
4024
|
height: string;
|
|
4049
4025
|
width: string;
|
|
4050
4026
|
};
|
|
4051
|
-
}, {
|
|
4052
4027
|
margin?: {
|
|
4053
4028
|
left?: string | undefined;
|
|
4054
4029
|
top?: string | undefined;
|
|
4055
|
-
right?: string | undefined;
|
|
4056
4030
|
bottom?: string | undefined;
|
|
4031
|
+
right?: string | undefined;
|
|
4057
4032
|
} | undefined;
|
|
4033
|
+
}, {
|
|
4058
4034
|
url: string;
|
|
4059
4035
|
id: string;
|
|
4036
|
+
allowApi: boolean;
|
|
4037
|
+
allowPolicy: string;
|
|
4060
4038
|
position: {
|
|
4061
4039
|
vertical: "top" | "bottom" | "middle";
|
|
4062
4040
|
horizontal: "left" | "right" | "middle";
|
|
4063
4041
|
};
|
|
4064
|
-
allowApi: boolean;
|
|
4065
|
-
allowPolicy: string;
|
|
4066
4042
|
visible: boolean;
|
|
4067
4043
|
size: {
|
|
4068
4044
|
height: string;
|
|
4069
4045
|
width: string;
|
|
4070
4046
|
};
|
|
4047
|
+
margin?: {
|
|
4048
|
+
left?: string | undefined;
|
|
4049
|
+
top?: string | undefined;
|
|
4050
|
+
bottom?: string | undefined;
|
|
4051
|
+
right?: string | undefined;
|
|
4052
|
+
} | undefined;
|
|
4071
4053
|
}>, "many">;
|
|
4072
4054
|
};
|
|
4073
4055
|
getUIWebsiteById: {
|
|
@@ -4106,54 +4088,54 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
4106
4088
|
}, "strip", z.ZodTypeAny, {
|
|
4107
4089
|
left?: string | undefined;
|
|
4108
4090
|
top?: string | undefined;
|
|
4109
|
-
right?: string | undefined;
|
|
4110
4091
|
bottom?: string | undefined;
|
|
4092
|
+
right?: string | undefined;
|
|
4111
4093
|
}, {
|
|
4112
4094
|
left?: string | undefined;
|
|
4113
4095
|
top?: string | undefined;
|
|
4114
|
-
right?: string | undefined;
|
|
4115
4096
|
bottom?: string | undefined;
|
|
4097
|
+
right?: string | undefined;
|
|
4116
4098
|
}>>;
|
|
4117
4099
|
}, "strip", z.ZodTypeAny, {
|
|
4118
|
-
margin?: {
|
|
4119
|
-
left?: string | undefined;
|
|
4120
|
-
top?: string | undefined;
|
|
4121
|
-
right?: string | undefined;
|
|
4122
|
-
bottom?: string | undefined;
|
|
4123
|
-
} | undefined;
|
|
4124
4100
|
url: string;
|
|
4125
4101
|
id: string;
|
|
4102
|
+
allowApi: boolean;
|
|
4103
|
+
allowPolicy: string;
|
|
4126
4104
|
position: {
|
|
4127
4105
|
vertical: "top" | "bottom" | "middle";
|
|
4128
4106
|
horizontal: "left" | "right" | "middle";
|
|
4129
4107
|
};
|
|
4130
|
-
allowApi: boolean;
|
|
4131
|
-
allowPolicy: string;
|
|
4132
4108
|
visible: boolean;
|
|
4133
4109
|
size: {
|
|
4134
4110
|
height: string;
|
|
4135
4111
|
width: string;
|
|
4136
4112
|
};
|
|
4137
|
-
}, {
|
|
4138
4113
|
margin?: {
|
|
4139
4114
|
left?: string | undefined;
|
|
4140
4115
|
top?: string | undefined;
|
|
4141
|
-
right?: string | undefined;
|
|
4142
4116
|
bottom?: string | undefined;
|
|
4117
|
+
right?: string | undefined;
|
|
4143
4118
|
} | undefined;
|
|
4119
|
+
}, {
|
|
4144
4120
|
url: string;
|
|
4145
4121
|
id: string;
|
|
4122
|
+
allowApi: boolean;
|
|
4123
|
+
allowPolicy: string;
|
|
4146
4124
|
position: {
|
|
4147
4125
|
vertical: "top" | "bottom" | "middle";
|
|
4148
4126
|
horizontal: "left" | "right" | "middle";
|
|
4149
4127
|
};
|
|
4150
|
-
allowApi: boolean;
|
|
4151
|
-
allowPolicy: string;
|
|
4152
4128
|
visible: boolean;
|
|
4153
4129
|
size: {
|
|
4154
4130
|
height: string;
|
|
4155
4131
|
width: string;
|
|
4156
4132
|
};
|
|
4133
|
+
margin?: {
|
|
4134
|
+
left?: string | undefined;
|
|
4135
|
+
top?: string | undefined;
|
|
4136
|
+
bottom?: string | undefined;
|
|
4137
|
+
right?: string | undefined;
|
|
4138
|
+
} | undefined;
|
|
4157
4139
|
}>;
|
|
4158
4140
|
};
|
|
4159
4141
|
enablePlayersTracking: {
|
|
@@ -4184,28 +4166,31 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
4184
4166
|
y: number;
|
|
4185
4167
|
}>;
|
|
4186
4168
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
4169
|
+
chatID: z.ZodNullable<z.ZodOptional<z.ZodString>>;
|
|
4187
4170
|
}, "strip", z.ZodTypeAny, {
|
|
4188
|
-
outlineColor?: number | undefined;
|
|
4189
4171
|
name: string;
|
|
4190
|
-
availabilityStatus: string;
|
|
4191
4172
|
position: {
|
|
4192
4173
|
x: number;
|
|
4193
4174
|
y: number;
|
|
4194
4175
|
};
|
|
4195
|
-
userUuid: string;
|
|
4196
|
-
variables: Map<string, unknown>;
|
|
4197
4176
|
playerId: number;
|
|
4198
|
-
|
|
4177
|
+
variables: Map<string, unknown>;
|
|
4178
|
+
userUuid: string;
|
|
4179
|
+
availabilityStatus: string;
|
|
4199
4180
|
outlineColor?: number | undefined;
|
|
4181
|
+
chatID?: string | null | undefined;
|
|
4182
|
+
}, {
|
|
4200
4183
|
name: string;
|
|
4201
|
-
availabilityStatus: string;
|
|
4202
4184
|
position: {
|
|
4203
4185
|
x: number;
|
|
4204
4186
|
y: number;
|
|
4205
4187
|
};
|
|
4206
|
-
userUuid: string;
|
|
4207
|
-
variables: Map<string, unknown>;
|
|
4208
4188
|
playerId: number;
|
|
4189
|
+
variables: Map<string, unknown>;
|
|
4190
|
+
userUuid: string;
|
|
4191
|
+
availabilityStatus: string;
|
|
4192
|
+
outlineColor?: number | undefined;
|
|
4193
|
+
chatID?: string | null | undefined;
|
|
4209
4194
|
}>, "many">;
|
|
4210
4195
|
};
|
|
4211
4196
|
getWoka: {
|