@workadventure/iframe-api-typings 1.14.3 → 1.14.7
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 +188 -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/Ui/ButtonActionBarEvent.d.ts +21 -0
- package/front/Api/Events/XmppSettingsMessageEvent.d.ts +4 -4
- package/front/Api/Iframe/Player/ProximityMeeting.d.ts +3 -3
- package/front/Api/Iframe/Ui/ButtonActionBar.d.ts +31 -0
- package/front/Api/Iframe/Ui/Modal.d.ts +16 -6
- package/front/Api/Iframe/players.d.ts +2 -2
- package/front/Api/Iframe/ui.d.ts +3 -1
- package/package.json +1 -1
|
@@ -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<{
|
|
@@ -1137,6 +1137,49 @@ export declare const isIframeEventWrapper: z.ZodUnion<[z.ZodObject<{
|
|
|
1137
1137
|
}, {
|
|
1138
1138
|
data?: undefined;
|
|
1139
1139
|
type: "redirectPricing";
|
|
1140
|
+
}>, z.ZodObject<{
|
|
1141
|
+
type: z.ZodLiteral<"addButtonActionBar">;
|
|
1142
|
+
data: z.ZodObject<{
|
|
1143
|
+
id: z.ZodString;
|
|
1144
|
+
label: z.ZodString;
|
|
1145
|
+
}, "strip", z.ZodTypeAny, {
|
|
1146
|
+
id: string;
|
|
1147
|
+
label: string;
|
|
1148
|
+
}, {
|
|
1149
|
+
id: string;
|
|
1150
|
+
label: string;
|
|
1151
|
+
}>;
|
|
1152
|
+
}, "strip", z.ZodTypeAny, {
|
|
1153
|
+
type: "addButtonActionBar";
|
|
1154
|
+
data: {
|
|
1155
|
+
id: string;
|
|
1156
|
+
label: string;
|
|
1157
|
+
};
|
|
1158
|
+
}, {
|
|
1159
|
+
type: "addButtonActionBar";
|
|
1160
|
+
data: {
|
|
1161
|
+
id: string;
|
|
1162
|
+
label: string;
|
|
1163
|
+
};
|
|
1164
|
+
}>, z.ZodObject<{
|
|
1165
|
+
type: z.ZodLiteral<"removeButtonActionBar">;
|
|
1166
|
+
data: z.ZodObject<{
|
|
1167
|
+
id: z.ZodString;
|
|
1168
|
+
}, "strip", z.ZodTypeAny, {
|
|
1169
|
+
id: string;
|
|
1170
|
+
}, {
|
|
1171
|
+
id: string;
|
|
1172
|
+
}>;
|
|
1173
|
+
}, "strip", z.ZodTypeAny, {
|
|
1174
|
+
type: "removeButtonActionBar";
|
|
1175
|
+
data: {
|
|
1176
|
+
id: string;
|
|
1177
|
+
};
|
|
1178
|
+
}, {
|
|
1179
|
+
type: "removeButtonActionBar";
|
|
1180
|
+
data: {
|
|
1181
|
+
id: string;
|
|
1182
|
+
};
|
|
1140
1183
|
}>]>;
|
|
1141
1184
|
export declare type IframeEvent = z.infer<typeof isIframeEventWrapper>;
|
|
1142
1185
|
export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
@@ -1180,22 +1223,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1180
1223
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1181
1224
|
}, "strip", z.ZodTypeAny, {
|
|
1182
1225
|
outlineColor?: number | undefined;
|
|
1226
|
+
name: string;
|
|
1183
1227
|
position: {
|
|
1184
1228
|
x: number;
|
|
1185
1229
|
y: number;
|
|
1186
1230
|
};
|
|
1187
|
-
name: string;
|
|
1188
1231
|
playerId: number;
|
|
1189
1232
|
variables: Map<string, unknown>;
|
|
1190
1233
|
userUuid: string;
|
|
1191
1234
|
availabilityStatus: string;
|
|
1192
1235
|
}, {
|
|
1193
1236
|
outlineColor?: number | undefined;
|
|
1237
|
+
name: string;
|
|
1194
1238
|
position: {
|
|
1195
1239
|
x: number;
|
|
1196
1240
|
y: number;
|
|
1197
1241
|
};
|
|
1198
|
-
name: string;
|
|
1199
1242
|
playerId: number;
|
|
1200
1243
|
variables: Map<string, unknown>;
|
|
1201
1244
|
userUuid: string;
|
|
@@ -1204,11 +1247,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1204
1247
|
}, "strip", z.ZodTypeAny, {
|
|
1205
1248
|
users: {
|
|
1206
1249
|
outlineColor?: number | undefined;
|
|
1250
|
+
name: string;
|
|
1207
1251
|
position: {
|
|
1208
1252
|
x: number;
|
|
1209
1253
|
y: number;
|
|
1210
1254
|
};
|
|
1211
|
-
name: string;
|
|
1212
1255
|
playerId: number;
|
|
1213
1256
|
variables: Map<string, unknown>;
|
|
1214
1257
|
userUuid: string;
|
|
@@ -1217,11 +1260,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1217
1260
|
}, {
|
|
1218
1261
|
users: {
|
|
1219
1262
|
outlineColor?: number | undefined;
|
|
1263
|
+
name: string;
|
|
1220
1264
|
position: {
|
|
1221
1265
|
x: number;
|
|
1222
1266
|
y: number;
|
|
1223
1267
|
};
|
|
1224
|
-
name: string;
|
|
1225
1268
|
playerId: number;
|
|
1226
1269
|
variables: Map<string, unknown>;
|
|
1227
1270
|
userUuid: string;
|
|
@@ -1233,11 +1276,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1233
1276
|
data: {
|
|
1234
1277
|
users: {
|
|
1235
1278
|
outlineColor?: number | undefined;
|
|
1279
|
+
name: string;
|
|
1236
1280
|
position: {
|
|
1237
1281
|
x: number;
|
|
1238
1282
|
y: number;
|
|
1239
1283
|
};
|
|
1240
|
-
name: string;
|
|
1241
1284
|
playerId: number;
|
|
1242
1285
|
variables: Map<string, unknown>;
|
|
1243
1286
|
userUuid: string;
|
|
@@ -1249,11 +1292,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1249
1292
|
data: {
|
|
1250
1293
|
users: {
|
|
1251
1294
|
outlineColor?: number | undefined;
|
|
1295
|
+
name: string;
|
|
1252
1296
|
position: {
|
|
1253
1297
|
x: number;
|
|
1254
1298
|
y: number;
|
|
1255
1299
|
};
|
|
1256
|
-
name: string;
|
|
1257
1300
|
playerId: number;
|
|
1258
1301
|
variables: Map<string, unknown>;
|
|
1259
1302
|
userUuid: string;
|
|
@@ -1282,22 +1325,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1282
1325
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1283
1326
|
}, "strip", z.ZodTypeAny, {
|
|
1284
1327
|
outlineColor?: number | undefined;
|
|
1328
|
+
name: string;
|
|
1285
1329
|
position: {
|
|
1286
1330
|
x: number;
|
|
1287
1331
|
y: number;
|
|
1288
1332
|
};
|
|
1289
|
-
name: string;
|
|
1290
1333
|
playerId: number;
|
|
1291
1334
|
variables: Map<string, unknown>;
|
|
1292
1335
|
userUuid: string;
|
|
1293
1336
|
availabilityStatus: string;
|
|
1294
1337
|
}, {
|
|
1295
1338
|
outlineColor?: number | undefined;
|
|
1339
|
+
name: string;
|
|
1296
1340
|
position: {
|
|
1297
1341
|
x: number;
|
|
1298
1342
|
y: number;
|
|
1299
1343
|
};
|
|
1300
|
-
name: string;
|
|
1301
1344
|
playerId: number;
|
|
1302
1345
|
variables: Map<string, unknown>;
|
|
1303
1346
|
userUuid: string;
|
|
@@ -1306,11 +1349,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1306
1349
|
}, "strip", z.ZodTypeAny, {
|
|
1307
1350
|
user: {
|
|
1308
1351
|
outlineColor?: number | undefined;
|
|
1352
|
+
name: string;
|
|
1309
1353
|
position: {
|
|
1310
1354
|
x: number;
|
|
1311
1355
|
y: number;
|
|
1312
1356
|
};
|
|
1313
|
-
name: string;
|
|
1314
1357
|
playerId: number;
|
|
1315
1358
|
variables: Map<string, unknown>;
|
|
1316
1359
|
userUuid: string;
|
|
@@ -1319,11 +1362,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1319
1362
|
}, {
|
|
1320
1363
|
user: {
|
|
1321
1364
|
outlineColor?: number | undefined;
|
|
1365
|
+
name: string;
|
|
1322
1366
|
position: {
|
|
1323
1367
|
x: number;
|
|
1324
1368
|
y: number;
|
|
1325
1369
|
};
|
|
1326
|
-
name: string;
|
|
1327
1370
|
playerId: number;
|
|
1328
1371
|
variables: Map<string, unknown>;
|
|
1329
1372
|
userUuid: string;
|
|
@@ -1335,11 +1378,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1335
1378
|
data: {
|
|
1336
1379
|
user: {
|
|
1337
1380
|
outlineColor?: number | undefined;
|
|
1381
|
+
name: string;
|
|
1338
1382
|
position: {
|
|
1339
1383
|
x: number;
|
|
1340
1384
|
y: number;
|
|
1341
1385
|
};
|
|
1342
|
-
name: string;
|
|
1343
1386
|
playerId: number;
|
|
1344
1387
|
variables: Map<string, unknown>;
|
|
1345
1388
|
userUuid: string;
|
|
@@ -1351,11 +1394,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1351
1394
|
data: {
|
|
1352
1395
|
user: {
|
|
1353
1396
|
outlineColor?: number | undefined;
|
|
1397
|
+
name: string;
|
|
1354
1398
|
position: {
|
|
1355
1399
|
x: number;
|
|
1356
1400
|
y: number;
|
|
1357
1401
|
};
|
|
1358
|
-
name: string;
|
|
1359
1402
|
playerId: number;
|
|
1360
1403
|
variables: Map<string, unknown>;
|
|
1361
1404
|
userUuid: string;
|
|
@@ -1384,22 +1427,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1384
1427
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1385
1428
|
}, "strip", z.ZodTypeAny, {
|
|
1386
1429
|
outlineColor?: number | undefined;
|
|
1430
|
+
name: string;
|
|
1387
1431
|
position: {
|
|
1388
1432
|
x: number;
|
|
1389
1433
|
y: number;
|
|
1390
1434
|
};
|
|
1391
|
-
name: string;
|
|
1392
1435
|
playerId: number;
|
|
1393
1436
|
variables: Map<string, unknown>;
|
|
1394
1437
|
userUuid: string;
|
|
1395
1438
|
availabilityStatus: string;
|
|
1396
1439
|
}, {
|
|
1397
1440
|
outlineColor?: number | undefined;
|
|
1441
|
+
name: string;
|
|
1398
1442
|
position: {
|
|
1399
1443
|
x: number;
|
|
1400
1444
|
y: number;
|
|
1401
1445
|
};
|
|
1402
|
-
name: string;
|
|
1403
1446
|
playerId: number;
|
|
1404
1447
|
variables: Map<string, unknown>;
|
|
1405
1448
|
userUuid: string;
|
|
@@ -1408,11 +1451,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1408
1451
|
}, "strip", z.ZodTypeAny, {
|
|
1409
1452
|
user: {
|
|
1410
1453
|
outlineColor?: number | undefined;
|
|
1454
|
+
name: string;
|
|
1411
1455
|
position: {
|
|
1412
1456
|
x: number;
|
|
1413
1457
|
y: number;
|
|
1414
1458
|
};
|
|
1415
|
-
name: string;
|
|
1416
1459
|
playerId: number;
|
|
1417
1460
|
variables: Map<string, unknown>;
|
|
1418
1461
|
userUuid: string;
|
|
@@ -1421,11 +1464,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1421
1464
|
}, {
|
|
1422
1465
|
user: {
|
|
1423
1466
|
outlineColor?: number | undefined;
|
|
1467
|
+
name: string;
|
|
1424
1468
|
position: {
|
|
1425
1469
|
x: number;
|
|
1426
1470
|
y: number;
|
|
1427
1471
|
};
|
|
1428
|
-
name: string;
|
|
1429
1472
|
playerId: number;
|
|
1430
1473
|
variables: Map<string, unknown>;
|
|
1431
1474
|
userUuid: string;
|
|
@@ -1437,11 +1480,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1437
1480
|
data: {
|
|
1438
1481
|
user: {
|
|
1439
1482
|
outlineColor?: number | undefined;
|
|
1483
|
+
name: string;
|
|
1440
1484
|
position: {
|
|
1441
1485
|
x: number;
|
|
1442
1486
|
y: number;
|
|
1443
1487
|
};
|
|
1444
|
-
name: string;
|
|
1445
1488
|
playerId: number;
|
|
1446
1489
|
variables: Map<string, unknown>;
|
|
1447
1490
|
userUuid: string;
|
|
@@ -1453,11 +1496,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1453
1496
|
data: {
|
|
1454
1497
|
user: {
|
|
1455
1498
|
outlineColor?: number | undefined;
|
|
1499
|
+
name: string;
|
|
1456
1500
|
position: {
|
|
1457
1501
|
x: number;
|
|
1458
1502
|
y: number;
|
|
1459
1503
|
};
|
|
1460
|
-
name: string;
|
|
1461
1504
|
playerId: number;
|
|
1462
1505
|
variables: Map<string, unknown>;
|
|
1463
1506
|
userUuid: string;
|
|
@@ -1632,22 +1675,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1632
1675
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1633
1676
|
}, "strip", z.ZodTypeAny, {
|
|
1634
1677
|
outlineColor?: number | undefined;
|
|
1678
|
+
name: string;
|
|
1635
1679
|
position: {
|
|
1636
1680
|
x: number;
|
|
1637
1681
|
y: number;
|
|
1638
1682
|
};
|
|
1639
|
-
name: string;
|
|
1640
1683
|
playerId: number;
|
|
1641
1684
|
variables: Map<string, unknown>;
|
|
1642
1685
|
userUuid: string;
|
|
1643
1686
|
availabilityStatus: string;
|
|
1644
1687
|
}, {
|
|
1645
1688
|
outlineColor?: number | undefined;
|
|
1689
|
+
name: string;
|
|
1646
1690
|
position: {
|
|
1647
1691
|
x: number;
|
|
1648
1692
|
y: number;
|
|
1649
1693
|
};
|
|
1650
|
-
name: string;
|
|
1651
1694
|
playerId: number;
|
|
1652
1695
|
variables: Map<string, unknown>;
|
|
1653
1696
|
userUuid: string;
|
|
@@ -1657,11 +1700,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1657
1700
|
type: "remotePlayerClickedEvent";
|
|
1658
1701
|
data: {
|
|
1659
1702
|
outlineColor?: number | undefined;
|
|
1703
|
+
name: string;
|
|
1660
1704
|
position: {
|
|
1661
1705
|
x: number;
|
|
1662
1706
|
y: number;
|
|
1663
1707
|
};
|
|
1664
|
-
name: string;
|
|
1665
1708
|
playerId: number;
|
|
1666
1709
|
variables: Map<string, unknown>;
|
|
1667
1710
|
userUuid: string;
|
|
@@ -1671,11 +1714,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1671
1714
|
type: "remotePlayerClickedEvent";
|
|
1672
1715
|
data: {
|
|
1673
1716
|
outlineColor?: number | undefined;
|
|
1717
|
+
name: string;
|
|
1674
1718
|
position: {
|
|
1675
1719
|
x: number;
|
|
1676
1720
|
y: number;
|
|
1677
1721
|
};
|
|
1678
|
-
name: string;
|
|
1679
1722
|
playerId: number;
|
|
1680
1723
|
variables: Map<string, unknown>;
|
|
1681
1724
|
userUuid: string;
|
|
@@ -1931,29 +1974,29 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1931
1974
|
subscribe: z.ZodBoolean;
|
|
1932
1975
|
}, "strip", z.ZodTypeAny, {
|
|
1933
1976
|
type: string;
|
|
1934
|
-
url: string;
|
|
1935
1977
|
name: string;
|
|
1978
|
+
url: string;
|
|
1936
1979
|
subscribe: boolean;
|
|
1937
1980
|
}, {
|
|
1938
1981
|
type: string;
|
|
1939
|
-
url: string;
|
|
1940
1982
|
name: string;
|
|
1983
|
+
url: string;
|
|
1941
1984
|
subscribe: boolean;
|
|
1942
1985
|
}>;
|
|
1943
1986
|
}, "strip", z.ZodTypeAny, {
|
|
1944
1987
|
type: "joinMuc";
|
|
1945
1988
|
data: {
|
|
1946
1989
|
type: string;
|
|
1947
|
-
url: string;
|
|
1948
1990
|
name: string;
|
|
1991
|
+
url: string;
|
|
1949
1992
|
subscribe: boolean;
|
|
1950
1993
|
};
|
|
1951
1994
|
}, {
|
|
1952
1995
|
type: "joinMuc";
|
|
1953
1996
|
data: {
|
|
1954
1997
|
type: string;
|
|
1955
|
-
url: string;
|
|
1956
1998
|
name: string;
|
|
1999
|
+
url: string;
|
|
1957
2000
|
subscribe: boolean;
|
|
1958
2001
|
};
|
|
1959
2002
|
}>, z.ZodObject<{
|
|
@@ -1977,22 +2020,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
1977
2020
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
1978
2021
|
}, "strip", z.ZodTypeAny, {
|
|
1979
2022
|
outlineColor?: number | undefined;
|
|
2023
|
+
name: string;
|
|
1980
2024
|
position: {
|
|
1981
2025
|
x: number;
|
|
1982
2026
|
y: number;
|
|
1983
2027
|
};
|
|
1984
|
-
name: string;
|
|
1985
2028
|
playerId: number;
|
|
1986
2029
|
variables: Map<string, unknown>;
|
|
1987
2030
|
userUuid: string;
|
|
1988
2031
|
availabilityStatus: string;
|
|
1989
2032
|
}, {
|
|
1990
2033
|
outlineColor?: number | undefined;
|
|
2034
|
+
name: string;
|
|
1991
2035
|
position: {
|
|
1992
2036
|
x: number;
|
|
1993
2037
|
y: number;
|
|
1994
2038
|
};
|
|
1995
|
-
name: string;
|
|
1996
2039
|
playerId: number;
|
|
1997
2040
|
variables: Map<string, unknown>;
|
|
1998
2041
|
userUuid: string;
|
|
@@ -2002,11 +2045,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2002
2045
|
type: "addRemotePlayer";
|
|
2003
2046
|
data: {
|
|
2004
2047
|
outlineColor?: number | undefined;
|
|
2048
|
+
name: string;
|
|
2005
2049
|
position: {
|
|
2006
2050
|
x: number;
|
|
2007
2051
|
y: number;
|
|
2008
2052
|
};
|
|
2009
|
-
name: string;
|
|
2010
2053
|
playerId: number;
|
|
2011
2054
|
variables: Map<string, unknown>;
|
|
2012
2055
|
userUuid: string;
|
|
@@ -2016,11 +2059,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2016
2059
|
type: "addRemotePlayer";
|
|
2017
2060
|
data: {
|
|
2018
2061
|
outlineColor?: number | undefined;
|
|
2062
|
+
name: string;
|
|
2019
2063
|
position: {
|
|
2020
2064
|
x: number;
|
|
2021
2065
|
y: number;
|
|
2022
2066
|
};
|
|
2023
|
-
name: string;
|
|
2024
2067
|
playerId: number;
|
|
2025
2068
|
variables: Map<string, unknown>;
|
|
2026
2069
|
userUuid: string;
|
|
@@ -2038,6 +2081,7 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2038
2081
|
}>, z.ZodObject<{
|
|
2039
2082
|
type: z.ZodLiteral<"remotePlayerChanged">;
|
|
2040
2083
|
data: z.ZodObject<{
|
|
2084
|
+
name: z.ZodOptional<z.ZodString>;
|
|
2041
2085
|
position: z.ZodOptional<z.ZodObject<{
|
|
2042
2086
|
x: z.ZodNumber;
|
|
2043
2087
|
y: z.ZodNumber;
|
|
@@ -2048,27 +2092,26 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2048
2092
|
x: number;
|
|
2049
2093
|
y: number;
|
|
2050
2094
|
}>>;
|
|
2051
|
-
name: z.ZodOptional<z.ZodString>;
|
|
2052
2095
|
playerId: z.ZodNumber;
|
|
2053
2096
|
variables: z.ZodOptional<z.ZodMap<z.ZodString, z.ZodUnknown>>;
|
|
2054
2097
|
availabilityStatus: z.ZodOptional<z.ZodString>;
|
|
2055
2098
|
outlineColor: z.ZodOptional<z.ZodOptional<z.ZodNumber>>;
|
|
2056
2099
|
}, "strip", z.ZodTypeAny, {
|
|
2100
|
+
name?: string | undefined;
|
|
2057
2101
|
position?: {
|
|
2058
2102
|
x: number;
|
|
2059
2103
|
y: number;
|
|
2060
2104
|
} | undefined;
|
|
2061
|
-
name?: string | undefined;
|
|
2062
2105
|
variables?: Map<string, unknown> | undefined;
|
|
2063
2106
|
availabilityStatus?: string | undefined;
|
|
2064
2107
|
outlineColor?: number | undefined;
|
|
2065
2108
|
playerId: number;
|
|
2066
2109
|
}, {
|
|
2110
|
+
name?: string | undefined;
|
|
2067
2111
|
position?: {
|
|
2068
2112
|
x: number;
|
|
2069
2113
|
y: number;
|
|
2070
2114
|
} | undefined;
|
|
2071
|
-
name?: string | undefined;
|
|
2072
2115
|
variables?: Map<string, unknown> | undefined;
|
|
2073
2116
|
availabilityStatus?: string | undefined;
|
|
2074
2117
|
outlineColor?: number | undefined;
|
|
@@ -2077,11 +2120,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2077
2120
|
}, "strip", z.ZodTypeAny, {
|
|
2078
2121
|
type: "remotePlayerChanged";
|
|
2079
2122
|
data: {
|
|
2123
|
+
name?: string | undefined;
|
|
2080
2124
|
position?: {
|
|
2081
2125
|
x: number;
|
|
2082
2126
|
y: number;
|
|
2083
2127
|
} | undefined;
|
|
2084
|
-
name?: string | undefined;
|
|
2085
2128
|
variables?: Map<string, unknown> | undefined;
|
|
2086
2129
|
availabilityStatus?: string | undefined;
|
|
2087
2130
|
outlineColor?: number | undefined;
|
|
@@ -2090,11 +2133,11 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2090
2133
|
}, {
|
|
2091
2134
|
type: "remotePlayerChanged";
|
|
2092
2135
|
data: {
|
|
2136
|
+
name?: string | undefined;
|
|
2093
2137
|
position?: {
|
|
2094
2138
|
x: number;
|
|
2095
2139
|
y: number;
|
|
2096
2140
|
} | undefined;
|
|
2097
|
-
name?: string | undefined;
|
|
2098
2141
|
variables?: Map<string, unknown> | undefined;
|
|
2099
2142
|
availabilityStatus?: string | undefined;
|
|
2100
2143
|
outlineColor?: number | undefined;
|
|
@@ -2107,16 +2150,22 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2107
2150
|
chatSounds: z.ZodBoolean;
|
|
2108
2151
|
enableChat: z.ZodBoolean;
|
|
2109
2152
|
enableChatUpload: z.ZodBoolean;
|
|
2153
|
+
enableChatOnlineList: z.ZodBoolean;
|
|
2154
|
+
enableChatDisconnectedList: z.ZodBoolean;
|
|
2110
2155
|
}, "strip", z.ZodTypeAny, {
|
|
2111
2156
|
notification: boolean;
|
|
2112
2157
|
chatSounds: boolean;
|
|
2113
2158
|
enableChat: boolean;
|
|
2114
2159
|
enableChatUpload: boolean;
|
|
2160
|
+
enableChatOnlineList: boolean;
|
|
2161
|
+
enableChatDisconnectedList: boolean;
|
|
2115
2162
|
}, {
|
|
2116
2163
|
notification: boolean;
|
|
2117
2164
|
chatSounds: boolean;
|
|
2118
2165
|
enableChat: boolean;
|
|
2119
2166
|
enableChatUpload: boolean;
|
|
2167
|
+
enableChatOnlineList: boolean;
|
|
2168
|
+
enableChatDisconnectedList: boolean;
|
|
2120
2169
|
}>;
|
|
2121
2170
|
}, "strip", z.ZodTypeAny, {
|
|
2122
2171
|
type: "settings";
|
|
@@ -2125,6 +2174,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2125
2174
|
chatSounds: boolean;
|
|
2126
2175
|
enableChat: boolean;
|
|
2127
2176
|
enableChatUpload: boolean;
|
|
2177
|
+
enableChatOnlineList: boolean;
|
|
2178
|
+
enableChatDisconnectedList: boolean;
|
|
2128
2179
|
};
|
|
2129
2180
|
}, {
|
|
2130
2181
|
type: "settings";
|
|
@@ -2133,6 +2184,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2133
2184
|
chatSounds: boolean;
|
|
2134
2185
|
enableChat: boolean;
|
|
2135
2186
|
enableChatUpload: boolean;
|
|
2187
|
+
enableChatOnlineList: boolean;
|
|
2188
|
+
enableChatDisconnectedList: boolean;
|
|
2136
2189
|
};
|
|
2137
2190
|
}>, z.ZodObject<{
|
|
2138
2191
|
type: z.ZodLiteral<"chatVisibility">;
|
|
@@ -2174,14 +2227,14 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2174
2227
|
subscribe: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2175
2228
|
}, "strip", z.ZodTypeAny, {
|
|
2176
2229
|
type: string;
|
|
2177
|
-
url: string;
|
|
2178
2230
|
name: string;
|
|
2231
|
+
url: string;
|
|
2179
2232
|
subscribe: boolean;
|
|
2180
2233
|
}, {
|
|
2181
2234
|
subscribe?: boolean | undefined;
|
|
2182
2235
|
type: string;
|
|
2183
|
-
url: string;
|
|
2184
2236
|
name: string;
|
|
2237
|
+
url: string;
|
|
2185
2238
|
}>, "many">;
|
|
2186
2239
|
jabberId: z.ZodString;
|
|
2187
2240
|
jabberPassword: z.ZodString;
|
|
@@ -2190,8 +2243,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2190
2243
|
conferenceDomain: string;
|
|
2191
2244
|
rooms: {
|
|
2192
2245
|
type: string;
|
|
2193
|
-
url: string;
|
|
2194
2246
|
name: string;
|
|
2247
|
+
url: string;
|
|
2195
2248
|
subscribe: boolean;
|
|
2196
2249
|
}[];
|
|
2197
2250
|
jabberId: string;
|
|
@@ -2202,8 +2255,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2202
2255
|
rooms: {
|
|
2203
2256
|
subscribe?: boolean | undefined;
|
|
2204
2257
|
type: string;
|
|
2205
|
-
url: string;
|
|
2206
2258
|
name: string;
|
|
2259
|
+
url: string;
|
|
2207
2260
|
}[];
|
|
2208
2261
|
jabberId: string;
|
|
2209
2262
|
jabberPassword: string;
|
|
@@ -2215,8 +2268,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2215
2268
|
conferenceDomain: string;
|
|
2216
2269
|
rooms: {
|
|
2217
2270
|
type: string;
|
|
2218
|
-
url: string;
|
|
2219
2271
|
name: string;
|
|
2272
|
+
url: string;
|
|
2220
2273
|
subscribe: boolean;
|
|
2221
2274
|
}[];
|
|
2222
2275
|
jabberId: string;
|
|
@@ -2230,8 +2283,8 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2230
2283
|
rooms: {
|
|
2231
2284
|
subscribe?: boolean | undefined;
|
|
2232
2285
|
type: string;
|
|
2233
|
-
url: string;
|
|
2234
2286
|
name: string;
|
|
2287
|
+
url: string;
|
|
2235
2288
|
}[];
|
|
2236
2289
|
jabberId: string;
|
|
2237
2290
|
jabberPassword: string;
|
|
@@ -2250,18 +2303,21 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2250
2303
|
data: z.ZodObject<{
|
|
2251
2304
|
type: z.ZodNativeEnum<typeof import("./ChatEvent").ChatMessageTypes>;
|
|
2252
2305
|
date: z.ZodDate;
|
|
2253
|
-
author: z.ZodOptional<z.ZodNullable<z.
|
|
2306
|
+
author: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
2307
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2254
2308
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2255
2309
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2256
2310
|
}, "strip", z.ZodTypeAny, {
|
|
2257
|
-
author?:
|
|
2311
|
+
author?: any;
|
|
2258
2312
|
text?: (string | null)[] | null | undefined;
|
|
2313
|
+
name?: string | null | undefined;
|
|
2259
2314
|
targets?: (string | null)[] | null | undefined;
|
|
2260
2315
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2261
2316
|
date: Date;
|
|
2262
2317
|
}, {
|
|
2263
|
-
author?:
|
|
2318
|
+
author?: any;
|
|
2264
2319
|
text?: (string | null)[] | null | undefined;
|
|
2320
|
+
name?: string | null | undefined;
|
|
2265
2321
|
targets?: (string | null)[] | null | undefined;
|
|
2266
2322
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2267
2323
|
date: Date;
|
|
@@ -2269,8 +2325,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2269
2325
|
}, "strip", z.ZodTypeAny, {
|
|
2270
2326
|
type: "comingUser";
|
|
2271
2327
|
data: {
|
|
2272
|
-
author?:
|
|
2328
|
+
author?: any;
|
|
2273
2329
|
text?: (string | null)[] | null | undefined;
|
|
2330
|
+
name?: string | null | undefined;
|
|
2274
2331
|
targets?: (string | null)[] | null | undefined;
|
|
2275
2332
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2276
2333
|
date: Date;
|
|
@@ -2278,8 +2335,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2278
2335
|
}, {
|
|
2279
2336
|
type: "comingUser";
|
|
2280
2337
|
data: {
|
|
2281
|
-
author?:
|
|
2338
|
+
author?: any;
|
|
2282
2339
|
text?: (string | null)[] | null | undefined;
|
|
2340
|
+
name?: string | null | undefined;
|
|
2283
2341
|
targets?: (string | null)[] | null | undefined;
|
|
2284
2342
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2285
2343
|
date: Date;
|
|
@@ -2289,18 +2347,21 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2289
2347
|
data: z.ZodObject<{
|
|
2290
2348
|
type: z.ZodNativeEnum<typeof import("./ChatEvent").ChatMessageTypes>;
|
|
2291
2349
|
date: z.ZodDate;
|
|
2292
|
-
author: z.ZodOptional<z.ZodNullable<z.
|
|
2350
|
+
author: z.ZodOptional<z.ZodNullable<z.ZodAny>>;
|
|
2351
|
+
name: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2293
2352
|
targets: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2294
2353
|
text: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNullable<z.ZodString>, "many">>>;
|
|
2295
2354
|
}, "strip", z.ZodTypeAny, {
|
|
2296
|
-
author?:
|
|
2355
|
+
author?: any;
|
|
2297
2356
|
text?: (string | null)[] | null | undefined;
|
|
2357
|
+
name?: string | null | undefined;
|
|
2298
2358
|
targets?: (string | null)[] | null | undefined;
|
|
2299
2359
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2300
2360
|
date: Date;
|
|
2301
2361
|
}, {
|
|
2302
|
-
author?:
|
|
2362
|
+
author?: any;
|
|
2303
2363
|
text?: (string | null)[] | null | undefined;
|
|
2364
|
+
name?: string | null | undefined;
|
|
2304
2365
|
targets?: (string | null)[] | null | undefined;
|
|
2305
2366
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2306
2367
|
date: Date;
|
|
@@ -2308,8 +2369,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2308
2369
|
}, "strip", z.ZodTypeAny, {
|
|
2309
2370
|
type: "addChatMessage";
|
|
2310
2371
|
data: {
|
|
2311
|
-
author?:
|
|
2372
|
+
author?: any;
|
|
2312
2373
|
text?: (string | null)[] | null | undefined;
|
|
2374
|
+
name?: string | null | undefined;
|
|
2313
2375
|
targets?: (string | null)[] | null | undefined;
|
|
2314
2376
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2315
2377
|
date: Date;
|
|
@@ -2317,8 +2379,9 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2317
2379
|
}, {
|
|
2318
2380
|
type: "addChatMessage";
|
|
2319
2381
|
data: {
|
|
2320
|
-
author?:
|
|
2382
|
+
author?: any;
|
|
2321
2383
|
text?: (string | null)[] | null | undefined;
|
|
2384
|
+
name?: string | null | undefined;
|
|
2322
2385
|
targets?: (string | null)[] | null | undefined;
|
|
2323
2386
|
type: import("./ChatEvent").ChatMessageTypes;
|
|
2324
2387
|
date: Date;
|
|
@@ -2332,6 +2395,69 @@ export declare const isIframeResponseEvent: z.ZodUnion<[z.ZodObject<{
|
|
|
2332
2395
|
}, {
|
|
2333
2396
|
type: "updateWritingStatusChatList";
|
|
2334
2397
|
data: (string | null)[];
|
|
2398
|
+
}>, z.ZodObject<{
|
|
2399
|
+
type: z.ZodLiteral<"buttonActionBarTrigger">;
|
|
2400
|
+
data: z.ZodObject<{
|
|
2401
|
+
id: z.ZodString;
|
|
2402
|
+
label: z.ZodString;
|
|
2403
|
+
}, "strip", z.ZodTypeAny, {
|
|
2404
|
+
id: string;
|
|
2405
|
+
label: string;
|
|
2406
|
+
}, {
|
|
2407
|
+
id: string;
|
|
2408
|
+
label: string;
|
|
2409
|
+
}>;
|
|
2410
|
+
}, "strip", z.ZodTypeAny, {
|
|
2411
|
+
type: "buttonActionBarTrigger";
|
|
2412
|
+
data: {
|
|
2413
|
+
id: string;
|
|
2414
|
+
label: string;
|
|
2415
|
+
};
|
|
2416
|
+
}, {
|
|
2417
|
+
type: "buttonActionBarTrigger";
|
|
2418
|
+
data: {
|
|
2419
|
+
id: string;
|
|
2420
|
+
label: string;
|
|
2421
|
+
};
|
|
2422
|
+
}>, z.ZodObject<{
|
|
2423
|
+
type: z.ZodLiteral<"modalCloseTrigger">;
|
|
2424
|
+
data: z.ZodObject<{
|
|
2425
|
+
src: z.ZodString;
|
|
2426
|
+
allow: z.ZodDefault<z.ZodNullable<z.ZodOptional<z.ZodString>>>;
|
|
2427
|
+
title: z.ZodDefault<z.ZodOptional<z.ZodString>>;
|
|
2428
|
+
position: z.ZodDefault<z.ZodOptional<z.ZodEnum<["right", "left", "center"]>>>;
|
|
2429
|
+
allowApi: z.ZodDefault<z.ZodOptional<z.ZodBoolean>>;
|
|
2430
|
+
}, "strip", z.ZodTypeAny, {
|
|
2431
|
+
allowApi: boolean;
|
|
2432
|
+
position: "left" | "right" | "center";
|
|
2433
|
+
allow: string | null;
|
|
2434
|
+
src: string;
|
|
2435
|
+
title: string;
|
|
2436
|
+
}, {
|
|
2437
|
+
allowApi?: boolean | undefined;
|
|
2438
|
+
position?: "left" | "right" | "center" | undefined;
|
|
2439
|
+
allow?: string | null | undefined;
|
|
2440
|
+
title?: string | undefined;
|
|
2441
|
+
src: string;
|
|
2442
|
+
}>;
|
|
2443
|
+
}, "strip", z.ZodTypeAny, {
|
|
2444
|
+
type: "modalCloseTrigger";
|
|
2445
|
+
data: {
|
|
2446
|
+
allowApi: boolean;
|
|
2447
|
+
position: "left" | "right" | "center";
|
|
2448
|
+
allow: string | null;
|
|
2449
|
+
src: string;
|
|
2450
|
+
title: string;
|
|
2451
|
+
};
|
|
2452
|
+
}, {
|
|
2453
|
+
type: "modalCloseTrigger";
|
|
2454
|
+
data: {
|
|
2455
|
+
allowApi?: boolean | undefined;
|
|
2456
|
+
position?: "left" | "right" | "center" | undefined;
|
|
2457
|
+
allow?: string | null | undefined;
|
|
2458
|
+
title?: string | undefined;
|
|
2459
|
+
src: string;
|
|
2460
|
+
};
|
|
2335
2461
|
}>]>;
|
|
2336
2462
|
export declare type IframeResponseEvent = z.infer<typeof isIframeResponseEvent>;
|
|
2337
2463
|
export declare const isLookingLikeIframeEventWrapper: z.ZodObject<{
|
|
@@ -2563,6 +2689,7 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2563
2689
|
allow?: string | undefined;
|
|
2564
2690
|
origin?: "player" | "map" | undefined;
|
|
2565
2691
|
scale?: number | undefined;
|
|
2692
|
+
name: string;
|
|
2566
2693
|
url: string;
|
|
2567
2694
|
position: {
|
|
2568
2695
|
x: number;
|
|
@@ -2570,13 +2697,13 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2570
2697
|
width: number;
|
|
2571
2698
|
height: number;
|
|
2572
2699
|
};
|
|
2573
|
-
name: string;
|
|
2574
2700
|
}, {
|
|
2575
2701
|
allowApi?: boolean | undefined;
|
|
2576
2702
|
visible?: boolean | undefined;
|
|
2577
2703
|
allow?: string | undefined;
|
|
2578
2704
|
origin?: "player" | "map" | undefined;
|
|
2579
2705
|
scale?: number | undefined;
|
|
2706
|
+
name: string;
|
|
2580
2707
|
url: string;
|
|
2581
2708
|
position: {
|
|
2582
2709
|
x: number;
|
|
@@ -2584,7 +2711,6 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2584
2711
|
width: number;
|
|
2585
2712
|
height: number;
|
|
2586
2713
|
};
|
|
2587
|
-
name: string;
|
|
2588
2714
|
}>;
|
|
2589
2715
|
};
|
|
2590
2716
|
deleteEmbeddedWebsite: {
|
|
@@ -2622,6 +2748,7 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2622
2748
|
allow?: string | undefined;
|
|
2623
2749
|
origin?: "player" | "map" | undefined;
|
|
2624
2750
|
scale?: number | undefined;
|
|
2751
|
+
name: string;
|
|
2625
2752
|
url: string;
|
|
2626
2753
|
position: {
|
|
2627
2754
|
x: number;
|
|
@@ -2629,13 +2756,13 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2629
2756
|
width: number;
|
|
2630
2757
|
height: number;
|
|
2631
2758
|
};
|
|
2632
|
-
name: string;
|
|
2633
2759
|
}, {
|
|
2634
2760
|
allowApi?: boolean | undefined;
|
|
2635
2761
|
visible?: boolean | undefined;
|
|
2636
2762
|
allow?: string | undefined;
|
|
2637
2763
|
origin?: "player" | "map" | undefined;
|
|
2638
2764
|
scale?: number | undefined;
|
|
2765
|
+
name: string;
|
|
2639
2766
|
url: string;
|
|
2640
2767
|
position: {
|
|
2641
2768
|
x: number;
|
|
@@ -2643,7 +2770,6 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
2643
2770
|
width: number;
|
|
2644
2771
|
height: number;
|
|
2645
2772
|
};
|
|
2646
|
-
name: string;
|
|
2647
2773
|
}>;
|
|
2648
2774
|
answer: z.ZodUndefined;
|
|
2649
2775
|
};
|
|
@@ -3063,22 +3189,22 @@ export declare const iframeQueryMapTypeGuards: {
|
|
|
3063
3189
|
variables: z.ZodMap<z.ZodString, z.ZodUnknown>;
|
|
3064
3190
|
}, "strip", z.ZodTypeAny, {
|
|
3065
3191
|
outlineColor?: number | undefined;
|
|
3192
|
+
name: string;
|
|
3066
3193
|
position: {
|
|
3067
3194
|
x: number;
|
|
3068
3195
|
y: number;
|
|
3069
3196
|
};
|
|
3070
|
-
name: string;
|
|
3071
3197
|
playerId: number;
|
|
3072
3198
|
variables: Map<string, unknown>;
|
|
3073
3199
|
userUuid: string;
|
|
3074
3200
|
availabilityStatus: string;
|
|
3075
3201
|
}, {
|
|
3076
3202
|
outlineColor?: number | undefined;
|
|
3203
|
+
name: string;
|
|
3077
3204
|
position: {
|
|
3078
3205
|
x: number;
|
|
3079
3206
|
y: number;
|
|
3080
3207
|
};
|
|
3081
|
-
name: string;
|
|
3082
3208
|
playerId: number;
|
|
3083
3209
|
variables: Map<string, unknown>;
|
|
3084
3210
|
userUuid: string;
|