@workadventure/iframe-api-typings 1.14.2 → 1.14.5
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/front/Api/Events/AddPlayerEvent.d.ts +5 -5
- package/front/Api/Events/ChatEvent.d.ts +6 -3
- package/front/Api/Events/EmbeddedWebsiteEvent.d.ts +2 -2
- package/front/Api/Events/IframeEvent.d.ts +82 -62
- package/front/Api/Events/JoinMucEvent.d.ts +2 -2
- package/front/Api/Events/ModalEvent.d.ts +3 -3
- package/front/Api/Events/ProximityMeeting/JoinProximityMeetingEvent.d.ts +4 -4
- package/front/Api/Events/ProximityMeeting/ParticipantProximityMeetingEvent.d.ts +4 -4
- package/front/Api/Events/SettingsEvent.d.ts +6 -0
- package/front/Api/Events/XmppSettingsMessageEvent.d.ts +4 -4
- package/front/Api/Iframe/Player/ProximityMeeting.d.ts +3 -3
- package/front/Api/Iframe/players.d.ts +2 -2
- package/front/Api/Iframe/ui.d.ts +1 -1
- package/package.json +1 -1
|
@@ -18,28 +18,29 @@ export declare const isAddPlayerEvent: z.ZodObject<{
|
|
|
18
18
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
19
19
|
}, "strip", z.ZodTypeAny, {
|
|
20
20
|
outlineColor?: number | undefined;
|
|
21
|
+
name: string;
|
|
21
22
|
position: {
|
|
22
23
|
x: number;
|
|
23
24
|
y: number;
|
|
24
25
|
};
|
|
25
|
-
name: string;
|
|
26
26
|
playerId: number;
|
|
27
27
|
variables: Map<string, unknown>;
|
|
28
28
|
userUuid: string;
|
|
29
29
|
availabilityStatus: string;
|
|
30
30
|
}, {
|
|
31
31
|
outlineColor?: number | undefined;
|
|
32
|
+
name: string;
|
|
32
33
|
position: {
|
|
33
34
|
x: number;
|
|
34
35
|
y: number;
|
|
35
36
|
};
|
|
36
|
-
name: string;
|
|
37
37
|
playerId: number;
|
|
38
38
|
variables: Map<string, unknown>;
|
|
39
39
|
userUuid: string;
|
|
40
40
|
availabilityStatus: string;
|
|
41
41
|
}>;
|
|
42
42
|
export declare const isRemotePlayerChangedEvent: z.ZodObject<{
|
|
43
|
+
name: z.ZodOptional<z.ZodString>;
|
|
43
44
|
position: z.ZodOptional<z.ZodObject<{
|
|
44
45
|
x: z.ZodNumber;
|
|
45
46
|
y: z.ZodNumber;
|
|
@@ -50,27 +51,26 @@ export declare const isRemotePlayerChangedEvent: z.ZodObject<{
|
|
|
50
51
|
x: number;
|
|
51
52
|
y: number;
|
|
52
53
|
}>>;
|
|
53
|
-
name: z.ZodOptional<z.ZodString>;
|
|
54
54
|
playerId: z.ZodNumber;
|
|
55
55
|
variables: z.ZodOptional<z.ZodMap<z.ZodString, z.ZodUnknown>>;
|
|
56
56
|
availabilityStatus: z.ZodOptional<z.ZodString>;
|
|
57
57
|
outlineColor: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
58
58
|
}, "strip", z.ZodTypeAny, {
|
|
59
|
+
name?: string | undefined;
|
|
59
60
|
position?: {
|
|
60
61
|
x: number;
|
|
61
62
|
y: number;
|
|
62
63
|
} | undefined;
|
|
63
|
-
name?: string | undefined;
|
|
64
64
|
variables?: Map<string, unknown> | undefined;
|
|
65
65
|
availabilityStatus?: string | undefined;
|
|
66
66
|
outlineColor?: number | undefined;
|
|
67
67
|
playerId: number;
|
|
68
68
|
}, {
|
|
69
|
+
name?: string | undefined;
|
|
69
70
|
position?: {
|
|
70
71
|
x: number;
|
|
71
72
|
y: number;
|
|
72
73
|
} | undefined;
|
|
73
|
-
name?: string | undefined;
|
|
74
74
|
variables?: Map<string, unknown> | undefined;
|
|
75
75
|
availabilityStatus?: string | undefined;
|
|
76
76
|
outlineColor?: number | undefined;
|
|
@@ -21,18 +21,21 @@ export declare const isChatMessageTypes: z.ZodNativeEnum<typeof ChatMessageTypes
|
|
|
21
21
|
export declare const isChatMessage: z.ZodObject<{
|
|
22
22
|
type: z.ZodNativeEnum<typeof ChatMessageTypes>;
|
|
23
23
|
date: z.ZodDate;
|
|
24
|
-
author: z.ZodOptional<z.ZodNullable<z.
|
|
24
|
+
author: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
25
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
25
26
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
26
27
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
27
28
|
}, "strip", z.ZodTypeAny, {
|
|
28
|
-
author?:
|
|
29
|
+
author?: any;
|
|
29
30
|
text?: (string | null)[] | null | undefined;
|
|
31
|
+
name?: string | null | undefined;
|
|
30
32
|
targets?: (string | null)[] | null | undefined;
|
|
31
33
|
type: ChatMessageTypes;
|
|
32
34
|
date: Date;
|
|
33
35
|
}, {
|
|
34
|
-
author?:
|
|
36
|
+
author?: any;
|
|
35
37
|
text?: (string | null)[] | null | undefined;
|
|
38
|
+
name?: string | null | undefined;
|
|
36
39
|
targets?: (string | null)[] | null | undefined;
|
|
37
40
|
type: ChatMessageTypes;
|
|
38
41
|
date: Date;
|
|
@@ -87,6 +87,7 @@ export declare const isCreateEmbeddedWebsiteEvent: z.ZodObject<{
|
|
|
87
87
|
allow?: string | undefined;
|
|
88
88
|
origin?: "player" | "map" | undefined;
|
|
89
89
|
scale?: number | undefined;
|
|
90
|
+
name: string;
|
|
90
91
|
url: string;
|
|
91
92
|
position: {
|
|
92
93
|
x: number;
|
|
@@ -94,13 +95,13 @@ export declare const isCreateEmbeddedWebsiteEvent: z.ZodObject<{
|
|
|
94
95
|
width: number;
|
|
95
96
|
height: number;
|
|
96
97
|
};
|
|
97
|
-
name: string;
|
|
98
98
|
}, {
|
|
99
99
|
allowApi?: boolean | undefined;
|
|
100
100
|
visible?: boolean | undefined;
|
|
101
101
|
allow?: string | undefined;
|
|
102
102
|
origin?: "player" | "map" | undefined;
|
|
103
103
|
scale?: number | undefined;
|
|
104
|
+
name: string;
|
|
104
105
|
url: string;
|
|
105
106
|
position: {
|
|
106
107
|
x: number;
|
|
@@ -108,6 +109,5 @@ export declare const isCreateEmbeddedWebsiteEvent: z.ZodObject<{
|
|
|
108
109
|
width: number;
|
|
109
110
|
height: number;
|
|
110
111
|
};
|
|
111
|
-
name: string;
|
|
112
112
|
}>;
|
|
113
113
|
export declare type CreateEmbeddedWebsiteEvent = z.infer<typeof isCreateEmbeddedWebsiteEvent>;
|
|
@@ -1085,7 +1085,7 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1085
1085
|
data: z.ZodObject<{
|
|
1086
1086
|
src: z.ZodString;
|
|
1087
1087
|
allow: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
1088
|
-
|
|
1088
|
+
title: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
1089
1089
|
position: z.ZodDefault<z.ZodOptional<z.ZodEnum<["right", "left", "center"]>>>;
|
|
1090
1090
|
allowApi: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
1091
1091
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1093,12 +1093,12 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1093
1093
|
position: "left" | "right" | "center";
|
|
1094
1094
|
allow: string | null;
|
|
1095
1095
|
src: string;
|
|
1096
|
-
|
|
1096
|
+
title: string;
|
|
1097
1097
|
}, {
|
|
1098
1098
|
allowApi?: boolean | undefined;
|
|
1099
1099
|
position?: "left" | "right" | "center" | undefined;
|
|
1100
1100
|
allow?: string | null | undefined;
|
|
1101
|
-
|
|
1101
|
+
title?: string | undefined;
|
|
1102
1102
|
src: string;
|
|
1103
1103
|
}>;
|
|
1104
1104
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -1108,7 +1108,7 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1108
1108
|
position: "left" | "right" | "center";
|
|
1109
1109
|
allow: string | null;
|
|
1110
1110
|
src: string;
|
|
1111
|
-
|
|
1111
|
+
title: string;
|
|
1112
1112
|
};
|
|
1113
1113
|
}, {
|
|
1114
1114
|
type: "openModal";
|
|
@@ -1116,7 +1116,7 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1116
1116
|
allowApi?: boolean | undefined;
|
|
1117
1117
|
position?: "left" | "right" | "center" | undefined;
|
|
1118
1118
|
allow?: string | null | undefined;
|
|
1119
|
-
|
|
1119
|
+
title?: string | undefined;
|
|
1120
1120
|
src: string;
|
|
1121
1121
|
};
|
|
1122
1122
|
}>, z.ZodObject<{
|
|
@@ -1180,22 +1180,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1180
1180
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1181
1181
|
}, "strip", z.ZodTypeAny, {
|
|
1182
1182
|
outlineColor?: number | undefined;
|
|
1183
|
+
name: string;
|
|
1183
1184
|
position: {
|
|
1184
1185
|
x: number;
|
|
1185
1186
|
y: number;
|
|
1186
1187
|
};
|
|
1187
|
-
name: string;
|
|
1188
1188
|
playerId: number;
|
|
1189
1189
|
variables: Map<string, unknown>;
|
|
1190
1190
|
userUuid: string;
|
|
1191
1191
|
availabilityStatus: string;
|
|
1192
1192
|
}, {
|
|
1193
1193
|
outlineColor?: number | undefined;
|
|
1194
|
+
name: string;
|
|
1194
1195
|
position: {
|
|
1195
1196
|
x: number;
|
|
1196
1197
|
y: number;
|
|
1197
1198
|
};
|
|
1198
|
-
name: string;
|
|
1199
1199
|
playerId: number;
|
|
1200
1200
|
variables: Map<string, unknown>;
|
|
1201
1201
|
userUuid: string;
|
|
@@ -1204,11 +1204,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1204
1204
|
}, "strip", z.ZodTypeAny, {
|
|
1205
1205
|
users: {
|
|
1206
1206
|
outlineColor?: number | undefined;
|
|
1207
|
+
name: string;
|
|
1207
1208
|
position: {
|
|
1208
1209
|
x: number;
|
|
1209
1210
|
y: number;
|
|
1210
1211
|
};
|
|
1211
|
-
name: string;
|
|
1212
1212
|
playerId: number;
|
|
1213
1213
|
variables: Map<string, unknown>;
|
|
1214
1214
|
userUuid: string;
|
|
@@ -1217,11 +1217,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1217
1217
|
}, {
|
|
1218
1218
|
users: {
|
|
1219
1219
|
outlineColor?: number | undefined;
|
|
1220
|
+
name: string;
|
|
1220
1221
|
position: {
|
|
1221
1222
|
x: number;
|
|
1222
1223
|
y: number;
|
|
1223
1224
|
};
|
|
1224
|
-
name: string;
|
|
1225
1225
|
playerId: number;
|
|
1226
1226
|
variables: Map<string, unknown>;
|
|
1227
1227
|
userUuid: string;
|
|
@@ -1233,11 +1233,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1233
1233
|
data: {
|
|
1234
1234
|
users: {
|
|
1235
1235
|
outlineColor?: number | undefined;
|
|
1236
|
+
name: string;
|
|
1236
1237
|
position: {
|
|
1237
1238
|
x: number;
|
|
1238
1239
|
y: number;
|
|
1239
1240
|
};
|
|
1240
|
-
name: string;
|
|
1241
1241
|
playerId: number;
|
|
1242
1242
|
variables: Map<string, unknown>;
|
|
1243
1243
|
userUuid: string;
|
|
@@ -1249,11 +1249,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1249
1249
|
data: {
|
|
1250
1250
|
users: {
|
|
1251
1251
|
outlineColor?: number | undefined;
|
|
1252
|
+
name: string;
|
|
1252
1253
|
position: {
|
|
1253
1254
|
x: number;
|
|
1254
1255
|
y: number;
|
|
1255
1256
|
};
|
|
1256
|
-
name: string;
|
|
1257
1257
|
playerId: number;
|
|
1258
1258
|
variables: Map<string, unknown>;
|
|
1259
1259
|
userUuid: string;
|
|
@@ -1282,22 +1282,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1282
1282
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1283
1283
|
}, "strip", z.ZodTypeAny, {
|
|
1284
1284
|
outlineColor?: number | undefined;
|
|
1285
|
+
name: string;
|
|
1285
1286
|
position: {
|
|
1286
1287
|
x: number;
|
|
1287
1288
|
y: number;
|
|
1288
1289
|
};
|
|
1289
|
-
name: string;
|
|
1290
1290
|
playerId: number;
|
|
1291
1291
|
variables: Map<string, unknown>;
|
|
1292
1292
|
userUuid: string;
|
|
1293
1293
|
availabilityStatus: string;
|
|
1294
1294
|
}, {
|
|
1295
1295
|
outlineColor?: number | undefined;
|
|
1296
|
+
name: string;
|
|
1296
1297
|
position: {
|
|
1297
1298
|
x: number;
|
|
1298
1299
|
y: number;
|
|
1299
1300
|
};
|
|
1300
|
-
name: string;
|
|
1301
1301
|
playerId: number;
|
|
1302
1302
|
variables: Map<string, unknown>;
|
|
1303
1303
|
userUuid: string;
|
|
@@ -1306,11 +1306,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1306
1306
|
}, "strip", z.ZodTypeAny, {
|
|
1307
1307
|
user: {
|
|
1308
1308
|
outlineColor?: number | undefined;
|
|
1309
|
+
name: string;
|
|
1309
1310
|
position: {
|
|
1310
1311
|
x: number;
|
|
1311
1312
|
y: number;
|
|
1312
1313
|
};
|
|
1313
|
-
name: string;
|
|
1314
1314
|
playerId: number;
|
|
1315
1315
|
variables: Map<string, unknown>;
|
|
1316
1316
|
userUuid: string;
|
|
@@ -1319,11 +1319,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1319
1319
|
}, {
|
|
1320
1320
|
user: {
|
|
1321
1321
|
outlineColor?: number | undefined;
|
|
1322
|
+
name: string;
|
|
1322
1323
|
position: {
|
|
1323
1324
|
x: number;
|
|
1324
1325
|
y: number;
|
|
1325
1326
|
};
|
|
1326
|
-
name: string;
|
|
1327
1327
|
playerId: number;
|
|
1328
1328
|
variables: Map<string, unknown>;
|
|
1329
1329
|
userUuid: string;
|
|
@@ -1335,11 +1335,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1335
1335
|
data: {
|
|
1336
1336
|
user: {
|
|
1337
1337
|
outlineColor?: number | undefined;
|
|
1338
|
+
name: string;
|
|
1338
1339
|
position: {
|
|
1339
1340
|
x: number;
|
|
1340
1341
|
y: number;
|
|
1341
1342
|
};
|
|
1342
|
-
name: string;
|
|
1343
1343
|
playerId: number;
|
|
1344
1344
|
variables: Map<string, unknown>;
|
|
1345
1345
|
userUuid: string;
|
|
@@ -1351,11 +1351,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1351
1351
|
data: {
|
|
1352
1352
|
user: {
|
|
1353
1353
|
outlineColor?: number | undefined;
|
|
1354
|
+
name: string;
|
|
1354
1355
|
position: {
|
|
1355
1356
|
x: number;
|
|
1356
1357
|
y: number;
|
|
1357
1358
|
};
|
|
1358
|
-
name: string;
|
|
1359
1359
|
playerId: number;
|
|
1360
1360
|
variables: Map<string, unknown>;
|
|
1361
1361
|
userUuid: string;
|
|
@@ -1384,22 +1384,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1384
1384
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1385
1385
|
}, "strip", z.ZodTypeAny, {
|
|
1386
1386
|
outlineColor?: number | undefined;
|
|
1387
|
+
name: string;
|
|
1387
1388
|
position: {
|
|
1388
1389
|
x: number;
|
|
1389
1390
|
y: number;
|
|
1390
1391
|
};
|
|
1391
|
-
name: string;
|
|
1392
1392
|
playerId: number;
|
|
1393
1393
|
variables: Map<string, unknown>;
|
|
1394
1394
|
userUuid: string;
|
|
1395
1395
|
availabilityStatus: string;
|
|
1396
1396
|
}, {
|
|
1397
1397
|
outlineColor?: number | undefined;
|
|
1398
|
+
name: string;
|
|
1398
1399
|
position: {
|
|
1399
1400
|
x: number;
|
|
1400
1401
|
y: number;
|
|
1401
1402
|
};
|
|
1402
|
-
name: string;
|
|
1403
1403
|
playerId: number;
|
|
1404
1404
|
variables: Map<string, unknown>;
|
|
1405
1405
|
userUuid: string;
|
|
@@ -1408,11 +1408,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1408
1408
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1409
|
user: {
|
|
1410
1410
|
outlineColor?: number | undefined;
|
|
1411
|
+
name: string;
|
|
1411
1412
|
position: {
|
|
1412
1413
|
x: number;
|
|
1413
1414
|
y: number;
|
|
1414
1415
|
};
|
|
1415
|
-
name: string;
|
|
1416
1416
|
playerId: number;
|
|
1417
1417
|
variables: Map<string, unknown>;
|
|
1418
1418
|
userUuid: string;
|
|
@@ -1421,11 +1421,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1421
1421
|
}, {
|
|
1422
1422
|
user: {
|
|
1423
1423
|
outlineColor?: number | undefined;
|
|
1424
|
+
name: string;
|
|
1424
1425
|
position: {
|
|
1425
1426
|
x: number;
|
|
1426
1427
|
y: number;
|
|
1427
1428
|
};
|
|
1428
|
-
name: string;
|
|
1429
1429
|
playerId: number;
|
|
1430
1430
|
variables: Map<string, unknown>;
|
|
1431
1431
|
userUuid: string;
|
|
@@ -1437,11 +1437,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1437
1437
|
data: {
|
|
1438
1438
|
user: {
|
|
1439
1439
|
outlineColor?: number | undefined;
|
|
1440
|
+
name: string;
|
|
1440
1441
|
position: {
|
|
1441
1442
|
x: number;
|
|
1442
1443
|
y: number;
|
|
1443
1444
|
};
|
|
1444
|
-
name: string;
|
|
1445
1445
|
playerId: number;
|
|
1446
1446
|
variables: Map<string, unknown>;
|
|
1447
1447
|
userUuid: string;
|
|
@@ -1453,11 +1453,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1453
1453
|
data: {
|
|
1454
1454
|
user: {
|
|
1455
1455
|
outlineColor?: number | undefined;
|
|
1456
|
+
name: string;
|
|
1456
1457
|
position: {
|
|
1457
1458
|
x: number;
|
|
1458
1459
|
y: number;
|
|
1459
1460
|
};
|
|
1460
|
-
name: string;
|
|
1461
1461
|
playerId: number;
|
|
1462
1462
|
variables: Map<string, unknown>;
|
|
1463
1463
|
userUuid: string;
|
|
@@ -1632,22 +1632,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1632
1632
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1633
1633
|
}, "strip", z.ZodTypeAny, {
|
|
1634
1634
|
outlineColor?: number | undefined;
|
|
1635
|
+
name: string;
|
|
1635
1636
|
position: {
|
|
1636
1637
|
x: number;
|
|
1637
1638
|
y: number;
|
|
1638
1639
|
};
|
|
1639
|
-
name: string;
|
|
1640
1640
|
playerId: number;
|
|
1641
1641
|
variables: Map<string, unknown>;
|
|
1642
1642
|
userUuid: string;
|
|
1643
1643
|
availabilityStatus: string;
|
|
1644
1644
|
}, {
|
|
1645
1645
|
outlineColor?: number | undefined;
|
|
1646
|
+
name: string;
|
|
1646
1647
|
position: {
|
|
1647
1648
|
x: number;
|
|
1648
1649
|
y: number;
|
|
1649
1650
|
};
|
|
1650
|
-
name: string;
|
|
1651
1651
|
playerId: number;
|
|
1652
1652
|
variables: Map<string, unknown>;
|
|
1653
1653
|
userUuid: string;
|
|
@@ -1657,11 +1657,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1657
1657
|
type: "remotePlayerClickedEvent";
|
|
1658
1658
|
data: {
|
|
1659
1659
|
outlineColor?: number | undefined;
|
|
1660
|
+
name: string;
|
|
1660
1661
|
position: {
|
|
1661
1662
|
x: number;
|
|
1662
1663
|
y: number;
|
|
1663
1664
|
};
|
|
1664
|
-
name: string;
|
|
1665
1665
|
playerId: number;
|
|
1666
1666
|
variables: Map<string, unknown>;
|
|
1667
1667
|
userUuid: string;
|
|
@@ -1671,11 +1671,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1671
1671
|
type: "remotePlayerClickedEvent";
|
|
1672
1672
|
data: {
|
|
1673
1673
|
outlineColor?: number | undefined;
|
|
1674
|
+
name: string;
|
|
1674
1675
|
position: {
|
|
1675
1676
|
x: number;
|
|
1676
1677
|
y: number;
|
|
1677
1678
|
};
|
|
1678
|
-
name: string;
|
|
1679
1679
|
playerId: number;
|
|
1680
1680
|
variables: Map<string, unknown>;
|
|
1681
1681
|
userUuid: string;
|
|
@@ -1931,29 +1931,29 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1931
1931
|
subscribe: z.ZodBoolean;
|
|
1932
1932
|
}, "strip", z.ZodTypeAny, {
|
|
1933
1933
|
type: string;
|
|
1934
|
-
url: string;
|
|
1935
1934
|
name: string;
|
|
1935
|
+
url: string;
|
|
1936
1936
|
subscribe: boolean;
|
|
1937
1937
|
}, {
|
|
1938
1938
|
type: string;
|
|
1939
|
-
url: string;
|
|
1940
1939
|
name: string;
|
|
1940
|
+
url: string;
|
|
1941
1941
|
subscribe: boolean;
|
|
1942
1942
|
}>;
|
|
1943
1943
|
}, "strip", z.ZodTypeAny, {
|
|
1944
1944
|
type: "joinMuc";
|
|
1945
1945
|
data: {
|
|
1946
1946
|
type: string;
|
|
1947
|
-
url: string;
|
|
1948
1947
|
name: string;
|
|
1948
|
+
url: string;
|
|
1949
1949
|
subscribe: boolean;
|
|
1950
1950
|
};
|
|
1951
1951
|
}, {
|
|
1952
1952
|
type: "joinMuc";
|
|
1953
1953
|
data: {
|
|
1954
1954
|
type: string;
|
|
1955
|
-
url: string;
|
|
1956
1955
|
name: string;
|
|
1956
|
+
url: string;
|
|
1957
1957
|
subscribe: boolean;
|
|
1958
1958
|
};
|
|
1959
1959
|
}>, z.ZodObject<{
|
|
@@ -1977,22 +1977,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1977
1977
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1978
1978
|
}, "strip", z.ZodTypeAny, {
|
|
1979
1979
|
outlineColor?: number | undefined;
|
|
1980
|
+
name: string;
|
|
1980
1981
|
position: {
|
|
1981
1982
|
x: number;
|
|
1982
1983
|
y: number;
|
|
1983
1984
|
};
|
|
1984
|
-
name: string;
|
|
1985
1985
|
playerId: number;
|
|
1986
1986
|
variables: Map<string, unknown>;
|
|
1987
1987
|
userUuid: string;
|
|
1988
1988
|
availabilityStatus: string;
|
|
1989
1989
|
}, {
|
|
1990
1990
|
outlineColor?: number | undefined;
|
|
1991
|
+
name: string;
|
|
1991
1992
|
position: {
|
|
1992
1993
|
x: number;
|
|
1993
1994
|
y: number;
|
|
1994
1995
|
};
|
|
1995
|
-
name: string;
|
|
1996
1996
|
playerId: number;
|
|
1997
1997
|
variables: Map<string, unknown>;
|
|
1998
1998
|
userUuid: string;
|
|
@@ -2002,11 +2002,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2002
2002
|
type: "addRemotePlayer";
|
|
2003
2003
|
data: {
|
|
2004
2004
|
outlineColor?: number | undefined;
|
|
2005
|
+
name: string;
|
|
2005
2006
|
position: {
|
|
2006
2007
|
x: number;
|
|
2007
2008
|
y: number;
|
|
2008
2009
|
};
|
|
2009
|
-
name: string;
|
|
2010
2010
|
playerId: number;
|
|
2011
2011
|
variables: Map<string, unknown>;
|
|
2012
2012
|
userUuid: string;
|
|
@@ -2016,11 +2016,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2016
2016
|
type: "addRemotePlayer";
|
|
2017
2017
|
data: {
|
|
2018
2018
|
outlineColor?: number | undefined;
|
|
2019
|
+
name: string;
|
|
2019
2020
|
position: {
|
|
2020
2021
|
x: number;
|
|
2021
2022
|
y: number;
|
|
2022
2023
|
};
|
|
2023
|
-
name: string;
|
|
2024
2024
|
playerId: number;
|
|
2025
2025
|
variables: Map<string, unknown>;
|
|
2026
2026
|
userUuid: string;
|
|
@@ -2038,6 +2038,7 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2038
2038
|
}>, z.ZodObject<{
|
|
2039
2039
|
type: z.ZodLiteral<"remotePlayerChanged">;
|
|
2040
2040
|
data: z.ZodObject<{
|
|
2041
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2041
2042
|
position: z.ZodOptional<z.ZodObject<{
|
|
2042
2043
|
x: z.ZodNumber;
|
|
2043
2044
|
y: z.ZodNumber;
|
|
@@ -2048,27 +2049,26 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2048
2049
|
x: number;
|
|
2049
2050
|
y: number;
|
|
2050
2051
|
}>>;
|
|
2051
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2052
2052
|
playerId: z.ZodNumber;
|
|
2053
2053
|
variables: z.ZodOptional<z.ZodMap<z.ZodString, z.ZodUnknown>>;
|
|
2054
2054
|
availabilityStatus: z.ZodOptional<z.ZodString>;
|
|
2055
2055
|
outlineColor: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2056
2056
|
}, "strip", z.ZodTypeAny, {
|
|
2057
|
+
name?: string | undefined;
|
|
2057
2058
|
position?: {
|
|
2058
2059
|
x: number;
|
|
2059
2060
|
y: number;
|
|
2060
2061
|
} | undefined;
|
|
2061
|
-
name?: string | undefined;
|
|
2062
2062
|
variables?: Map<string, unknown> | undefined;
|
|
2063
2063
|
availabilityStatus?: string | undefined;
|
|
2064
2064
|
outlineColor?: number | undefined;
|
|
2065
2065
|
playerId: number;
|
|
2066
2066
|
}, {
|
|
2067
|
+
name?: string | undefined;
|
|
2067
2068
|
position?: {
|
|
2068
2069
|
x: number;
|
|
2069
2070
|
y: number;
|
|
2070
2071
|
} | undefined;
|
|
2071
|
-
name?: string | undefined;
|
|
2072
2072
|
variables?: Map<string, unknown> | undefined;
|
|
2073
2073
|
availabilityStatus?: string | undefined;
|
|
2074
2074
|
outlineColor?: number | undefined;
|
|
@@ -2077,11 +2077,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2077
2077
|
}, "strip", z.ZodTypeAny, {
|
|
2078
2078
|
type: "remotePlayerChanged";
|
|
2079
2079
|
data: {
|
|
2080
|
+
name?: string | undefined;
|
|
2080
2081
|
position?: {
|
|
2081
2082
|
x: number;
|
|
2082
2083
|
y: number;
|
|
2083
2084
|
} | undefined;
|
|
2084
|
-
name?: string | undefined;
|
|
2085
2085
|
variables?: Map<string, unknown> | undefined;
|
|
2086
2086
|
availabilityStatus?: string | undefined;
|
|
2087
2087
|
outlineColor?: number | undefined;
|
|
@@ -2090,11 +2090,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2090
2090
|
}, {
|
|
2091
2091
|
type: "remotePlayerChanged";
|
|
2092
2092
|
data: {
|
|
2093
|
+
name?: string | undefined;
|
|
2093
2094
|
position?: {
|
|
2094
2095
|
x: number;
|
|
2095
2096
|
y: number;
|
|
2096
2097
|
} | undefined;
|
|
2097
|
-
name?: string | undefined;
|
|
2098
2098
|
variables?: Map<string, unknown> | undefined;
|
|
2099
2099
|
availabilityStatus?: string | undefined;
|
|
2100
2100
|
outlineColor?: number | undefined;
|
|
@@ -2107,16 +2107,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2107
2107
|
chatSounds: z.ZodBoolean;
|
|
2108
2108
|
enableChat: z.ZodBoolean;
|
|
2109
2109
|
enableChatUpload: z.ZodBoolean;
|
|
2110
|
+
enableChatOnlineList: z.ZodBoolean;
|
|
2111
|
+
enableChatDisconnectedList: z.ZodBoolean;
|
|
2110
2112
|
}, "strip", z.ZodTypeAny, {
|
|
2111
2113
|
notification: boolean;
|
|
2112
2114
|
chatSounds: boolean;
|
|
2113
2115
|
enableChat: boolean;
|
|
2114
2116
|
enableChatUpload: boolean;
|
|
2117
|
+
enableChatOnlineList: boolean;
|
|
2118
|
+
enableChatDisconnectedList: boolean;
|
|
2115
2119
|
}, {
|
|
2116
2120
|
notification: boolean;
|
|
2117
2121
|
chatSounds: boolean;
|
|
2118
2122
|
enableChat: boolean;
|
|
2119
2123
|
enableChatUpload: boolean;
|
|
2124
|
+
enableChatOnlineList: boolean;
|
|
2125
|
+
enableChatDisconnectedList: boolean;
|
|
2120
2126
|
}>;
|
|
2121
2127
|
}, "strip", z.ZodTypeAny, {
|
|
2122
2128
|
type: "settings";
|
|
@@ -2125,6 +2131,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2125
2131
|
chatSounds: boolean;
|
|
2126
2132
|
enableChat: boolean;
|
|
2127
2133
|
enableChatUpload: boolean;
|
|
2134
|
+
enableChatOnlineList: boolean;
|
|
2135
|
+
enableChatDisconnectedList: boolean;
|
|
2128
2136
|
};
|
|
2129
2137
|
}, {
|
|
2130
2138
|
type: "settings";
|
|
@@ -2133,6 +2141,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2133
2141
|
chatSounds: boolean;
|
|
2134
2142
|
enableChat: boolean;
|
|
2135
2143
|
enableChatUpload: boolean;
|
|
2144
|
+
enableChatOnlineList: boolean;
|
|
2145
|
+
enableChatDisconnectedList: boolean;
|
|
2136
2146
|
};
|
|
2137
2147
|
}>, z.ZodObject<{
|
|
2138
2148
|
type: z.ZodLiteral<"chatVisibility">;
|
|
@@ -2174,14 +2184,14 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2174
2184
|
subscribe: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2175
2185
|
}, "strip", z.ZodTypeAny, {
|
|
2176
2186
|
type: string;
|
|
2177
|
-
url: string;
|
|
2178
2187
|
name: string;
|
|
2188
|
+
url: string;
|
|
2179
2189
|
subscribe: boolean;
|
|
2180
2190
|
}, {
|
|
2181
2191
|
subscribe?: boolean | undefined;
|
|
2182
2192
|
type: string;
|
|
2183
|
-
url: string;
|
|
2184
2193
|
name: string;
|
|
2194
|
+
url: string;
|
|
2185
2195
|
}>, "many">;
|
|
2186
2196
|
jabberId: z.ZodString;
|
|
2187
2197
|
jabberPassword: z.ZodString;
|
|
@@ -2190,8 +2200,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2190
2200
|
conferenceDomain: string;
|
|
2191
2201
|
rooms: {
|
|
2192
2202
|
type: string;
|
|
2193
|
-
url: string;
|
|
2194
2203
|
name: string;
|
|
2204
|
+
url: string;
|
|
2195
2205
|
subscribe: boolean;
|
|
2196
2206
|
}[];
|
|
2197
2207
|
jabberId: string;
|
|
@@ -2202,8 +2212,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2202
2212
|
rooms: {
|
|
2203
2213
|
subscribe?: boolean | undefined;
|
|
2204
2214
|
type: string;
|
|
2205
|
-
url: string;
|
|
2206
2215
|
name: string;
|
|
2216
|
+
url: string;
|
|
2207
2217
|
}[];
|
|
2208
2218
|
jabberId: string;
|
|
2209
2219
|
jabberPassword: string;
|
|
@@ -2215,8 +2225,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2215
2225
|
conferenceDomain: string;
|
|
2216
2226
|
rooms: {
|
|
2217
2227
|
type: string;
|
|
2218
|
-
url: string;
|
|
2219
2228
|
name: string;
|
|
2229
|
+
url: string;
|
|
2220
2230
|
subscribe: boolean;
|
|
2221
2231
|
}[];
|
|
2222
2232
|
jabberId: string;
|
|
@@ -2230,8 +2240,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2230
2240
|
rooms: {
|
|
2231
2241
|
subscribe?: boolean | undefined;
|
|
2232
2242
|
type: string;
|
|
2233
|
-
url: string;
|
|
2234
2243
|
name: string;
|
|
2244
|
+
url: string;
|
|
2235
2245
|
}[];
|
|
2236
2246
|
jabberId: string;
|
|
2237
2247
|
jabberPassword: string;
|
|
@@ -2250,18 +2260,21 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2250
2260
|
data: z.ZodObject<{
|
|
2251
2261
|
type: z.ZodNativeEnum<typeof import("./ChatEvent").ChatMessageTypes>;
|
|
2252
2262
|
date: z.ZodDate;
|
|
2253
|
-
author: z.ZodOptional<z.ZodNullable<z.
|
|
2263
|
+
author: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
2264
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2254
2265
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2255
2266
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2256
2267
|
}, "strip", z.ZodTypeAny, {
|
|
2257
|
-
author?:
|
|
2268
|
+
author?: any;
|
|
2258
2269
|
text?: (string | null)[] | null | undefined;
|
|
2270
|
+
name?: string | null | undefined;
|
|
2259
2271
|
targets?: (string | null)[] | null | undefined;
|
|
2260
2272
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2261
2273
|
date: Date;
|
|
2262
2274
|
}, {
|
|
2263
|
-
author?:
|
|
2275
|
+
author?: any;
|
|
2264
2276
|
text?: (string | null)[] | null | undefined;
|
|
2277
|
+
name?: string | null | undefined;
|
|
2265
2278
|
targets?: (string | null)[] | null | undefined;
|
|
2266
2279
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2267
2280
|
date: Date;
|
|
@@ -2269,8 +2282,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2269
2282
|
}, "strip", z.ZodTypeAny, {
|
|
2270
2283
|
type: "comingUser";
|
|
2271
2284
|
data: {
|
|
2272
|
-
author?:
|
|
2285
|
+
author?: any;
|
|
2273
2286
|
text?: (string | null)[] | null | undefined;
|
|
2287
|
+
name?: string | null | undefined;
|
|
2274
2288
|
targets?: (string | null)[] | null | undefined;
|
|
2275
2289
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2276
2290
|
date: Date;
|
|
@@ -2278,8 +2292,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2278
2292
|
}, {
|
|
2279
2293
|
type: "comingUser";
|
|
2280
2294
|
data: {
|
|
2281
|
-
author?:
|
|
2295
|
+
author?: any;
|
|
2282
2296
|
text?: (string | null)[] | null | undefined;
|
|
2297
|
+
name?: string | null | undefined;
|
|
2283
2298
|
targets?: (string | null)[] | null | undefined;
|
|
2284
2299
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2285
2300
|
date: Date;
|
|
@@ -2289,18 +2304,21 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2289
2304
|
data: z.ZodObject<{
|
|
2290
2305
|
type: z.ZodNativeEnum<typeof import("./ChatEvent").ChatMessageTypes>;
|
|
2291
2306
|
date: z.ZodDate;
|
|
2292
|
-
author: z.ZodOptional<z.ZodNullable<z.
|
|
2307
|
+
author: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
2308
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2293
2309
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2294
2310
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2295
2311
|
}, "strip", z.ZodTypeAny, {
|
|
2296
|
-
author?:
|
|
2312
|
+
author?: any;
|
|
2297
2313
|
text?: (string | null)[] | null | undefined;
|
|
2314
|
+
name?: string | null | undefined;
|
|
2298
2315
|
targets?: (string | null)[] | null | undefined;
|
|
2299
2316
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2300
2317
|
date: Date;
|
|
2301
2318
|
}, {
|
|
2302
|
-
author?:
|
|
2319
|
+
author?: any;
|
|
2303
2320
|
text?: (string | null)[] | null | undefined;
|
|
2321
|
+
name?: string | null | undefined;
|
|
2304
2322
|
targets?: (string | null)[] | null | undefined;
|
|
2305
2323
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2306
2324
|
date: Date;
|
|
@@ -2308,8 +2326,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2308
2326
|
}, "strip", z.ZodTypeAny, {
|
|
2309
2327
|
type: "addChatMessage";
|
|
2310
2328
|
data: {
|
|
2311
|
-
author?:
|
|
2329
|
+
author?: any;
|
|
2312
2330
|
text?: (string | null)[] | null | undefined;
|
|
2331
|
+
name?: string | null | undefined;
|
|
2313
2332
|
targets?: (string | null)[] | null | undefined;
|
|
2314
2333
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2315
2334
|
date: Date;
|
|
@@ -2317,8 +2336,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2317
2336
|
}, {
|
|
2318
2337
|
type: "addChatMessage";
|
|
2319
2338
|
data: {
|
|
2320
|
-
author?:
|
|
2339
|
+
author?: any;
|
|
2321
2340
|
text?: (string | null)[] | null | undefined;
|
|
2341
|
+
name?: string | null | undefined;
|
|
2322
2342
|
targets?: (string | null)[] | null | undefined;
|
|
2323
2343
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2324
2344
|
date: Date;
|
|
@@ -2563,6 +2583,7 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2563
2583
|
allow?: string | undefined;
|
|
2564
2584
|
origin?: "player" | "map" | undefined;
|
|
2565
2585
|
scale?: number | undefined;
|
|
2586
|
+
name: string;
|
|
2566
2587
|
url: string;
|
|
2567
2588
|
position: {
|
|
2568
2589
|
x: number;
|
|
@@ -2570,13 +2591,13 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2570
2591
|
width: number;
|
|
2571
2592
|
height: number;
|
|
2572
2593
|
};
|
|
2573
|
-
name: string;
|
|
2574
2594
|
}, {
|
|
2575
2595
|
allowApi?: boolean | undefined;
|
|
2576
2596
|
visible?: boolean | undefined;
|
|
2577
2597
|
allow?: string | undefined;
|
|
2578
2598
|
origin?: "player" | "map" | undefined;
|
|
2579
2599
|
scale?: number | undefined;
|
|
2600
|
+
name: string;
|
|
2580
2601
|
url: string;
|
|
2581
2602
|
position: {
|
|
2582
2603
|
x: number;
|
|
@@ -2584,7 +2605,6 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2584
2605
|
width: number;
|
|
2585
2606
|
height: number;
|
|
2586
2607
|
};
|
|
2587
|
-
name: string;
|
|
2588
2608
|
}>;
|
|
2589
2609
|
};
|
|
2590
2610
|
deleteEmbeddedWebsite: {
|
|
@@ -2622,6 +2642,7 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2622
2642
|
allow?: string | undefined;
|
|
2623
2643
|
origin?: "player" | "map" | undefined;
|
|
2624
2644
|
scale?: number | undefined;
|
|
2645
|
+
name: string;
|
|
2625
2646
|
url: string;
|
|
2626
2647
|
position: {
|
|
2627
2648
|
x: number;
|
|
@@ -2629,13 +2650,13 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2629
2650
|
width: number;
|
|
2630
2651
|
height: number;
|
|
2631
2652
|
};
|
|
2632
|
-
name: string;
|
|
2633
2653
|
}, {
|
|
2634
2654
|
allowApi?: boolean | undefined;
|
|
2635
2655
|
visible?: boolean | undefined;
|
|
2636
2656
|
allow?: string | undefined;
|
|
2637
2657
|
origin?: "player" | "map" | undefined;
|
|
2638
2658
|
scale?: number | undefined;
|
|
2659
|
+
name: string;
|
|
2639
2660
|
url: string;
|
|
2640
2661
|
position: {
|
|
2641
2662
|
x: number;
|
|
@@ -2643,7 +2664,6 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2643
2664
|
width: number;
|
|
2644
2665
|
height: number;
|
|
2645
2666
|
};
|
|
2646
|
-
name: string;
|
|
2647
2667
|
}>;
|
|
2648
2668
|
answer: z.ZodUndefined;
|
|
2649
2669
|
};
|
|
@@ -3063,22 +3083,22 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3063
3083
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
3064
3084
|
}, "strip", z.ZodTypeAny, {
|
|
3065
3085
|
outlineColor?: number | undefined;
|
|
3086
|
+
name: string;
|
|
3066
3087
|
position: {
|
|
3067
3088
|
x: number;
|
|
3068
3089
|
y: number;
|
|
3069
3090
|
};
|
|
3070
|
-
name: string;
|
|
3071
3091
|
playerId: number;
|
|
3072
3092
|
variables: Map<string, unknown>;
|
|
3073
3093
|
userUuid: string;
|
|
3074
3094
|
availabilityStatus: string;
|
|
3075
3095
|
}, {
|
|
3076
3096
|
outlineColor?: number | undefined;
|
|
3097
|
+
name: string;
|
|
3077
3098
|
position: {
|
|
3078
3099
|
x: number;
|
|
3079
3100
|
y: number;
|
|
3080
3101
|
};
|
|
3081
|
-
name: string;
|
|
3082
3102
|
playerId: number;
|
|
3083
3103
|
variables: Map<string, unknown>;
|
|
3084
3104
|
userUuid: string;
|
|
@@ -6,13 +6,13 @@ export declare const isJoinMucEvent: z.ZodObject<{
|
|
|
6
6
|
subscribe: z.ZodBoolean;
|
|
7
7
|
}, "strip", z.ZodTypeAny, {
|
|
8
8
|
type: string;
|
|
9
|
-
url: string;
|
|
10
9
|
name: string;
|
|
10
|
+
url: string;
|
|
11
11
|
subscribe: boolean;
|
|
12
12
|
}, {
|
|
13
13
|
type: string;
|
|
14
|
-
url: string;
|
|
15
14
|
name: string;
|
|
15
|
+
url: string;
|
|
16
16
|
subscribe: boolean;
|
|
17
17
|
}>;
|
|
18
18
|
/**
|
|
@@ -2,7 +2,7 @@ import { z } from "zod";
|
|
|
2
2
|
export declare const isModalEvent: z.ZodObject<{
|
|
3
3
|
src: z.ZodString;
|
|
4
4
|
allow: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
5
|
-
|
|
5
|
+
title: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
6
6
|
position: z.ZodDefault<z.ZodOptional<z.ZodEnum<["right", "left", "center"]>>>;
|
|
7
7
|
allowApi: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
8
8
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -10,12 +10,12 @@ export declare const isModalEvent: z.ZodObject<{
|
|
|
10
10
|
position: "left" | "right" | "center";
|
|
11
11
|
allow: string | null;
|
|
12
12
|
src: string;
|
|
13
|
-
|
|
13
|
+
title: string;
|
|
14
14
|
}, {
|
|
15
15
|
allowApi?: boolean | undefined;
|
|
16
16
|
position?: "left" | "right" | "center" | undefined;
|
|
17
17
|
allow?: string | null | undefined;
|
|
18
|
-
|
|
18
|
+
title?: string | undefined;
|
|
19
19
|
src: string;
|
|
20
20
|
}>;
|
|
21
21
|
/**
|
|
@@ -19,22 +19,22 @@ export declare const isJoinProximityMeetingEvent: z.ZodObject<{
|
|
|
19
19
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
21
|
outlineColor?: number | undefined;
|
|
22
|
+
name: string;
|
|
22
23
|
position: {
|
|
23
24
|
x: number;
|
|
24
25
|
y: number;
|
|
25
26
|
};
|
|
26
|
-
name: string;
|
|
27
27
|
playerId: number;
|
|
28
28
|
variables: Map<string, unknown>;
|
|
29
29
|
userUuid: string;
|
|
30
30
|
availabilityStatus: string;
|
|
31
31
|
}, {
|
|
32
32
|
outlineColor?: number | undefined;
|
|
33
|
+
name: string;
|
|
33
34
|
position: {
|
|
34
35
|
x: number;
|
|
35
36
|
y: number;
|
|
36
37
|
};
|
|
37
|
-
name: string;
|
|
38
38
|
playerId: number;
|
|
39
39
|
variables: Map<string, unknown>;
|
|
40
40
|
userUuid: string;
|
|
@@ -43,11 +43,11 @@ export declare const isJoinProximityMeetingEvent: z.ZodObject<{
|
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
44
|
users: {
|
|
45
45
|
outlineColor?: number | undefined;
|
|
46
|
+
name: string;
|
|
46
47
|
position: {
|
|
47
48
|
x: number;
|
|
48
49
|
y: number;
|
|
49
50
|
};
|
|
50
|
-
name: string;
|
|
51
51
|
playerId: number;
|
|
52
52
|
variables: Map<string, unknown>;
|
|
53
53
|
userUuid: string;
|
|
@@ -56,11 +56,11 @@ export declare const isJoinProximityMeetingEvent: z.ZodObject<{
|
|
|
56
56
|
}, {
|
|
57
57
|
users: {
|
|
58
58
|
outlineColor?: number | undefined;
|
|
59
|
+
name: string;
|
|
59
60
|
position: {
|
|
60
61
|
x: number;
|
|
61
62
|
y: number;
|
|
62
63
|
};
|
|
63
|
-
name: string;
|
|
64
64
|
playerId: number;
|
|
65
65
|
variables: Map<string, unknown>;
|
|
66
66
|
userUuid: string;
|
|
@@ -19,22 +19,22 @@ export declare const isParticipantProximityMeetingEvent: z.ZodObject<{
|
|
|
19
19
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
20
20
|
}, "strip", z.ZodTypeAny, {
|
|
21
21
|
outlineColor?: number | undefined;
|
|
22
|
+
name: string;
|
|
22
23
|
position: {
|
|
23
24
|
x: number;
|
|
24
25
|
y: number;
|
|
25
26
|
};
|
|
26
|
-
name: string;
|
|
27
27
|
playerId: number;
|
|
28
28
|
variables: Map<string, unknown>;
|
|
29
29
|
userUuid: string;
|
|
30
30
|
availabilityStatus: string;
|
|
31
31
|
}, {
|
|
32
32
|
outlineColor?: number | undefined;
|
|
33
|
+
name: string;
|
|
33
34
|
position: {
|
|
34
35
|
x: number;
|
|
35
36
|
y: number;
|
|
36
37
|
};
|
|
37
|
-
name: string;
|
|
38
38
|
playerId: number;
|
|
39
39
|
variables: Map<string, unknown>;
|
|
40
40
|
userUuid: string;
|
|
@@ -43,11 +43,11 @@ export declare const isParticipantProximityMeetingEvent: z.ZodObject<{
|
|
|
43
43
|
}, "strip", z.ZodTypeAny, {
|
|
44
44
|
user: {
|
|
45
45
|
outlineColor?: number | undefined;
|
|
46
|
+
name: string;
|
|
46
47
|
position: {
|
|
47
48
|
x: number;
|
|
48
49
|
y: number;
|
|
49
50
|
};
|
|
50
|
-
name: string;
|
|
51
51
|
playerId: number;
|
|
52
52
|
variables: Map<string, unknown>;
|
|
53
53
|
userUuid: string;
|
|
@@ -56,11 +56,11 @@ export declare const isParticipantProximityMeetingEvent: z.ZodObject<{
|
|
|
56
56
|
}, {
|
|
57
57
|
user: {
|
|
58
58
|
outlineColor?: number | undefined;
|
|
59
|
+
name: string;
|
|
59
60
|
position: {
|
|
60
61
|
x: number;
|
|
61
62
|
y: number;
|
|
62
63
|
};
|
|
63
|
-
name: string;
|
|
64
64
|
playerId: number;
|
|
65
65
|
variables: Map<string, unknown>;
|
|
66
66
|
userUuid: string;
|
|
@@ -4,15 +4,21 @@ export declare const isSettingsEvent: z.ZodObject<{
|
|
|
4
4
|
chatSounds: z.ZodBoolean;
|
|
5
5
|
enableChat: z.ZodBoolean;
|
|
6
6
|
enableChatUpload: z.ZodBoolean;
|
|
7
|
+
enableChatOnlineList: z.ZodBoolean;
|
|
8
|
+
enableChatDisconnectedList: z.ZodBoolean;
|
|
7
9
|
}, "strip", z.ZodTypeAny, {
|
|
8
10
|
notification: boolean;
|
|
9
11
|
chatSounds: boolean;
|
|
10
12
|
enableChat: boolean;
|
|
11
13
|
enableChatUpload: boolean;
|
|
14
|
+
enableChatOnlineList: boolean;
|
|
15
|
+
enableChatDisconnectedList: boolean;
|
|
12
16
|
}, {
|
|
13
17
|
notification: boolean;
|
|
14
18
|
chatSounds: boolean;
|
|
15
19
|
enableChat: boolean;
|
|
16
20
|
enableChatUpload: boolean;
|
|
21
|
+
enableChatOnlineList: boolean;
|
|
22
|
+
enableChatDisconnectedList: boolean;
|
|
17
23
|
}>;
|
|
18
24
|
export declare type SettingsEvent = z.infer<typeof isSettingsEvent>;
|
|
@@ -9,14 +9,14 @@ export declare const isXmppSettingsMessageEvent: z.ZodObject<{
|
|
|
9
9
|
subscribe: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
10
10
|
}, "strip", z.ZodTypeAny, {
|
|
11
11
|
type: string;
|
|
12
|
-
url: string;
|
|
13
12
|
name: string;
|
|
13
|
+
url: string;
|
|
14
14
|
subscribe: boolean;
|
|
15
15
|
}, {
|
|
16
16
|
subscribe?: boolean | undefined;
|
|
17
17
|
type: string;
|
|
18
|
-
url: string;
|
|
19
18
|
name: string;
|
|
19
|
+
url: string;
|
|
20
20
|
}>, "many">;
|
|
21
21
|
jabberId: z.ZodString;
|
|
22
22
|
jabberPassword: z.ZodString;
|
|
@@ -25,8 +25,8 @@ export declare const isXmppSettingsMessageEvent: z.ZodObject<{
|
|
|
25
25
|
conferenceDomain: string;
|
|
26
26
|
rooms: {
|
|
27
27
|
type: string;
|
|
28
|
-
url: string;
|
|
29
28
|
name: string;
|
|
29
|
+
url: string;
|
|
30
30
|
subscribe: boolean;
|
|
31
31
|
}[];
|
|
32
32
|
jabberId: string;
|
|
@@ -37,8 +37,8 @@ export declare const isXmppSettingsMessageEvent: z.ZodObject<{
|
|
|
37
37
|
rooms: {
|
|
38
38
|
subscribe?: boolean | undefined;
|
|
39
39
|
type: string;
|
|
40
|
-
url: string;
|
|
41
40
|
name: string;
|
|
41
|
+
url: string;
|
|
42
42
|
}[];
|
|
43
43
|
jabberId: string;
|
|
44
44
|
jabberPassword: string;
|
|
@@ -7,11 +7,11 @@ export declare class WorkadventureProximityMeetingCommands extends IframeApiCont
|
|
|
7
7
|
callback: (event: {
|
|
8
8
|
users: {
|
|
9
9
|
outlineColor?: number | undefined;
|
|
10
|
+
name: string;
|
|
10
11
|
position: {
|
|
11
12
|
x: number;
|
|
12
13
|
y: number;
|
|
13
14
|
};
|
|
14
|
-
name: string;
|
|
15
15
|
playerId: number;
|
|
16
16
|
variables: Map<string, unknown>;
|
|
17
17
|
userUuid: string;
|
|
@@ -23,11 +23,11 @@ export declare class WorkadventureProximityMeetingCommands extends IframeApiCont
|
|
|
23
23
|
callback: (event: {
|
|
24
24
|
user: {
|
|
25
25
|
outlineColor?: number | undefined;
|
|
26
|
+
name: string;
|
|
26
27
|
position: {
|
|
27
28
|
x: number;
|
|
28
29
|
y: number;
|
|
29
30
|
};
|
|
30
|
-
name: string;
|
|
31
31
|
playerId: number;
|
|
32
32
|
variables: Map<string, unknown>;
|
|
33
33
|
userUuid: string;
|
|
@@ -39,11 +39,11 @@ export declare class WorkadventureProximityMeetingCommands extends IframeApiCont
|
|
|
39
39
|
callback: (event: {
|
|
40
40
|
user: {
|
|
41
41
|
outlineColor?: number | undefined;
|
|
42
|
+
name: string;
|
|
42
43
|
position: {
|
|
43
44
|
x: number;
|
|
44
45
|
y: number;
|
|
45
46
|
};
|
|
46
|
-
name: string;
|
|
47
47
|
playerId: number;
|
|
48
48
|
variables: Map<string, unknown>;
|
|
49
49
|
userUuid: string;
|
|
@@ -20,11 +20,11 @@ export declare class WorkadventurePlayersCommands extends IframeApiContribution<
|
|
|
20
20
|
type: "addRemotePlayer";
|
|
21
21
|
callback: (event: {
|
|
22
22
|
outlineColor?: number | undefined;
|
|
23
|
+
name: string;
|
|
23
24
|
position: {
|
|
24
25
|
x: number;
|
|
25
26
|
y: number;
|
|
26
27
|
};
|
|
27
|
-
name: string;
|
|
28
28
|
playerId: number;
|
|
29
29
|
variables: Map<string, unknown>;
|
|
30
30
|
userUuid: string;
|
|
@@ -36,11 +36,11 @@ export declare class WorkadventurePlayersCommands extends IframeApiContribution<
|
|
|
36
36
|
} | {
|
|
37
37
|
type: "remotePlayerChanged";
|
|
38
38
|
callback: (event: {
|
|
39
|
+
name?: string | undefined;
|
|
39
40
|
position?: {
|
|
40
41
|
x: number;
|
|
41
42
|
y: number;
|
|
42
43
|
} | undefined;
|
|
43
|
-
name?: string | undefined;
|
|
44
44
|
variables?: Map<string, unknown> | undefined;
|
|
45
45
|
availabilityStatus?: string | undefined;
|
|
46
46
|
outlineColor?: number | undefined;
|
package/front/Api/Iframe/ui.d.ts
CHANGED
|
@@ -53,11 +53,11 @@ export declare class WorkAdventureUiCommands extends IframeApiContribution<WorkA
|
|
|
53
53
|
type: "remotePlayerClickedEvent";
|
|
54
54
|
callback: (event: {
|
|
55
55
|
outlineColor?: number | undefined;
|
|
56
|
+
name: string;
|
|
56
57
|
position: {
|
|
57
58
|
x: number;
|
|
58
59
|
y: number;
|
|
59
60
|
};
|
|
60
|
-
name: string;
|
|
61
61
|
playerId: number;
|
|
62
62
|
variables: Map<string, unknown>;
|
|
63
63
|
userUuid: string;
|