@neta-art/cohub 8.6.0 → 8.7.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/dist/board/core/arrow-geometry.js +8 -45
- package/dist/board/core/draw-geometry.d.ts +8 -6
- package/dist/board/core/draw-geometry.js +6 -32
- package/dist/board/core/shape-types.d.ts +1 -1
- package/dist/board/export/scene.js +1 -0
- package/dist/board/geometry.d.ts +1 -1
- package/dist/board/index.d.ts +4 -3
- package/dist/board/index.js +2 -1
- package/dist/board/render/renderers/board-renderer-registry.d.ts +2 -0
- package/dist/board/render/renderers/draw-card-renderer.js +28 -18
- package/dist/board/semantic-document.d.ts +1 -1
- package/dist/board/semantic-document.js +23 -4
- package/dist/board/semantic-mutation.d.ts +1 -1
- package/dist/board/semantic-mutation.js +7 -1
- package/dist/chunks/http.js +32 -21
- package/dist/chunks/websocket.d.ts +410 -368
- package/dist/protocol/dist/board-authoring.d.ts +201 -181
- package/dist/protocol/dist/board-authoring.js +32 -21
- package/dist/protocol/dist/board-codec.js +200 -1
- package/dist/protocol/dist/board-geometry.d.ts +15 -0
- package/dist/protocol/dist/board-geometry.js +137 -0
- package/dist/protocol/dist/board-node.js +94 -1
- package/dist/protocol/dist/board.js +2 -2
- package/dist/protocol/dist/index.d.ts +2 -1
- package/package.json +1 -1
|
@@ -1202,16 +1202,18 @@ declare function parseBoardEffectInput(value: unknown): BoardEffectInput;
|
|
|
1202
1202
|
//#region ../protocol/dist/board-authoring.d.ts
|
|
1203
1203
|
declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
1204
1204
|
id: z.ZodString;
|
|
1205
|
-
|
|
1205
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1206
1206
|
x: z.ZodNumber;
|
|
1207
1207
|
y: z.ZodNumber;
|
|
1208
|
-
|
|
1209
|
-
|
|
1210
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1211
|
-
}, z.core.$strict>;
|
|
1208
|
+
}, z.core.$strict>>;
|
|
1209
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1212
1210
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1213
1211
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1214
1212
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1213
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1214
|
+
width: z.ZodNumber;
|
|
1215
|
+
height: z.ZodNumber;
|
|
1216
|
+
}, z.core.$strict>>;
|
|
1215
1217
|
style: z.ZodOptional<z.ZodObject<{
|
|
1216
1218
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1217
1219
|
amber: "amber";
|
|
@@ -1234,16 +1236,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1234
1236
|
}, z.core.$strict>;
|
|
1235
1237
|
}, z.core.$strict>, z.ZodObject<{
|
|
1236
1238
|
id: z.ZodString;
|
|
1237
|
-
|
|
1239
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1238
1240
|
x: z.ZodNumber;
|
|
1239
1241
|
y: z.ZodNumber;
|
|
1240
|
-
|
|
1241
|
-
|
|
1242
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1243
|
-
}, z.core.$strict>;
|
|
1242
|
+
}, z.core.$strict>>;
|
|
1243
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1244
1244
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1245
1245
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1246
1246
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1247
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1248
|
+
width: z.ZodNumber;
|
|
1249
|
+
height: z.ZodNumber;
|
|
1250
|
+
}, z.core.$strict>>;
|
|
1247
1251
|
style: z.ZodOptional<z.ZodObject<{
|
|
1248
1252
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1249
1253
|
amber: "amber";
|
|
@@ -1272,16 +1276,10 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1272
1276
|
}, z.core.$strict>;
|
|
1273
1277
|
}, z.core.$strict>, z.ZodObject<{
|
|
1274
1278
|
id: z.ZodString;
|
|
1275
|
-
frame: z.ZodObject<{
|
|
1276
|
-
x: z.ZodNumber;
|
|
1277
|
-
y: z.ZodNumber;
|
|
1278
|
-
width: z.ZodNumber;
|
|
1279
|
-
height: z.ZodNumber;
|
|
1280
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1281
|
-
}, z.core.$strict>;
|
|
1282
1279
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1283
1280
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1284
1281
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1282
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
1285
1283
|
style: z.ZodOptional<z.ZodObject<{
|
|
1286
1284
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1287
1285
|
amber: "amber";
|
|
@@ -1307,16 +1305,10 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1307
1305
|
}, z.core.$strict>;
|
|
1308
1306
|
}, z.core.$strict>, z.ZodObject<{
|
|
1309
1307
|
id: z.ZodString;
|
|
1310
|
-
frame: z.ZodObject<{
|
|
1311
|
-
x: z.ZodNumber;
|
|
1312
|
-
y: z.ZodNumber;
|
|
1313
|
-
width: z.ZodNumber;
|
|
1314
|
-
height: z.ZodNumber;
|
|
1315
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1316
|
-
}, z.core.$strict>;
|
|
1317
1308
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1318
1309
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1319
1310
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1311
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
1320
1312
|
style: z.ZodOptional<z.ZodObject<{
|
|
1321
1313
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1322
1314
|
amber: "amber";
|
|
@@ -1349,16 +1341,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1349
1341
|
}, z.core.$strict>;
|
|
1350
1342
|
}, z.core.$strict>, z.ZodObject<{
|
|
1351
1343
|
id: z.ZodString;
|
|
1352
|
-
|
|
1344
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1353
1345
|
x: z.ZodNumber;
|
|
1354
1346
|
y: z.ZodNumber;
|
|
1355
|
-
|
|
1356
|
-
|
|
1357
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1358
|
-
}, z.core.$strict>;
|
|
1347
|
+
}, z.core.$strict>>;
|
|
1348
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1359
1349
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1360
1350
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1361
1351
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1352
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1353
|
+
width: z.ZodNumber;
|
|
1354
|
+
height: z.ZodNumber;
|
|
1355
|
+
}, z.core.$strict>>;
|
|
1362
1356
|
style: z.ZodOptional<z.ZodObject<{
|
|
1363
1357
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1364
1358
|
amber: "amber";
|
|
@@ -1380,16 +1374,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1380
1374
|
}, z.core.$strict>;
|
|
1381
1375
|
}, z.core.$strict>, z.ZodObject<{
|
|
1382
1376
|
id: z.ZodString;
|
|
1383
|
-
|
|
1377
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1384
1378
|
x: z.ZodNumber;
|
|
1385
1379
|
y: z.ZodNumber;
|
|
1386
|
-
|
|
1387
|
-
|
|
1388
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1389
|
-
}, z.core.$strict>;
|
|
1380
|
+
}, z.core.$strict>>;
|
|
1381
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1390
1382
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1391
1383
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1392
1384
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1385
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1386
|
+
width: z.ZodNumber;
|
|
1387
|
+
height: z.ZodNumber;
|
|
1388
|
+
}, z.core.$strict>>;
|
|
1393
1389
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1394
1390
|
source: z.ZodObject<{
|
|
1395
1391
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1407,16 +1403,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1407
1403
|
}, z.core.$strict>;
|
|
1408
1404
|
}, z.core.$strict>, z.ZodObject<{
|
|
1409
1405
|
id: z.ZodString;
|
|
1410
|
-
|
|
1406
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1411
1407
|
x: z.ZodNumber;
|
|
1412
1408
|
y: z.ZodNumber;
|
|
1413
|
-
|
|
1414
|
-
|
|
1415
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1416
|
-
}, z.core.$strict>;
|
|
1409
|
+
}, z.core.$strict>>;
|
|
1410
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1417
1411
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1418
1412
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1419
1413
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1414
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1415
|
+
width: z.ZodNumber;
|
|
1416
|
+
height: z.ZodNumber;
|
|
1417
|
+
}, z.core.$strict>>;
|
|
1420
1418
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1421
1419
|
source: z.ZodObject<{
|
|
1422
1420
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1427,16 +1425,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1427
1425
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
1428
1426
|
}, z.core.$strict>, z.ZodObject<{
|
|
1429
1427
|
id: z.ZodString;
|
|
1430
|
-
|
|
1428
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1431
1429
|
x: z.ZodNumber;
|
|
1432
1430
|
y: z.ZodNumber;
|
|
1433
|
-
|
|
1434
|
-
|
|
1435
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1436
|
-
}, z.core.$strict>;
|
|
1431
|
+
}, z.core.$strict>>;
|
|
1432
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1437
1433
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1438
1434
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1439
1435
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1436
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1437
|
+
width: z.ZodNumber;
|
|
1438
|
+
height: z.ZodNumber;
|
|
1439
|
+
}, z.core.$strict>>;
|
|
1440
1440
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1441
1441
|
source: z.ZodObject<{
|
|
1442
1442
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1447,16 +1447,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1447
1447
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
1448
1448
|
}, z.core.$strict>, z.ZodObject<{
|
|
1449
1449
|
id: z.ZodString;
|
|
1450
|
-
|
|
1450
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1451
1451
|
x: z.ZodNumber;
|
|
1452
1452
|
y: z.ZodNumber;
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1456
|
-
}, z.core.$strict>;
|
|
1453
|
+
}, z.core.$strict>>;
|
|
1454
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1457
1455
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1458
1456
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1459
1457
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1458
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1459
|
+
width: z.ZodNumber;
|
|
1460
|
+
height: z.ZodNumber;
|
|
1461
|
+
}, z.core.$strict>>;
|
|
1460
1462
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1461
1463
|
source: z.ZodObject<{
|
|
1462
1464
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1467,16 +1469,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1467
1469
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
1468
1470
|
}, z.core.$strict>, z.ZodObject<{
|
|
1469
1471
|
id: z.ZodString;
|
|
1470
|
-
|
|
1472
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1471
1473
|
x: z.ZodNumber;
|
|
1472
1474
|
y: z.ZodNumber;
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1476
|
-
}, z.core.$strict>;
|
|
1475
|
+
}, z.core.$strict>>;
|
|
1476
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1477
1477
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1478
1478
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1479
1479
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1480
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1481
|
+
width: z.ZodNumber;
|
|
1482
|
+
height: z.ZodNumber;
|
|
1483
|
+
}, z.core.$strict>>;
|
|
1480
1484
|
type: z.ZodLiteral<"task">;
|
|
1481
1485
|
props: z.ZodObject<{
|
|
1482
1486
|
taskRunId: z.ZodString;
|
|
@@ -1485,16 +1489,18 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1485
1489
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1486
1490
|
}, z.core.$strict>], "type">, z.ZodObject<{
|
|
1487
1491
|
id: z.ZodString;
|
|
1488
|
-
|
|
1492
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1489
1493
|
x: z.ZodNumber;
|
|
1490
1494
|
y: z.ZodNumber;
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1494
|
-
}, z.core.$strict>;
|
|
1495
|
+
}, z.core.$strict>>;
|
|
1496
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1495
1497
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1496
1498
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1497
1499
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1500
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1501
|
+
width: z.ZodNumber;
|
|
1502
|
+
height: z.ZodNumber;
|
|
1503
|
+
}, z.core.$strict>>;
|
|
1498
1504
|
type: z.ZodString;
|
|
1499
1505
|
kindVersion: z.ZodNumber;
|
|
1500
1506
|
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -1508,13 +1514,15 @@ declare const BoardAuthoringItemSchema: z.ZodUnion<readonly [z.ZodDiscriminatedU
|
|
|
1508
1514
|
type BoardAuthoringItem = z.infer<typeof BoardAuthoringItemSchema>;
|
|
1509
1515
|
/** JSON Merge Patch semantics, constrained to the stable Item envelope. */
|
|
1510
1516
|
declare const BoardItemPatchSchema: z.ZodObject<{
|
|
1511
|
-
|
|
1517
|
+
position: z.ZodOptional<z.ZodObject<{
|
|
1512
1518
|
x: z.ZodOptional<z.ZodNumber>;
|
|
1513
1519
|
y: z.ZodOptional<z.ZodNumber>;
|
|
1514
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
1515
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
1516
|
-
rotation: z.ZodOptional<z.ZodNumber>;
|
|
1517
1520
|
}, z.core.$strict>>;
|
|
1521
|
+
size: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1522
|
+
width: z.ZodNumber;
|
|
1523
|
+
height: z.ZodNumber;
|
|
1524
|
+
}, z.core.$strict>>>;
|
|
1525
|
+
rotation: z.ZodOptional<z.ZodNumber>;
|
|
1518
1526
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1519
1527
|
locked: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1520
1528
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1534,16 +1542,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1534
1542
|
type: z.ZodLiteral<"item.create">;
|
|
1535
1543
|
item: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
1536
1544
|
id: z.ZodString;
|
|
1537
|
-
|
|
1545
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1538
1546
|
x: z.ZodNumber;
|
|
1539
1547
|
y: z.ZodNumber;
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1543
|
-
}, z.core.$strict>;
|
|
1548
|
+
}, z.core.$strict>>;
|
|
1549
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1544
1550
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1545
1551
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1546
1552
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1553
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1554
|
+
width: z.ZodNumber;
|
|
1555
|
+
height: z.ZodNumber;
|
|
1556
|
+
}, z.core.$strict>>;
|
|
1547
1557
|
style: z.ZodOptional<z.ZodObject<{
|
|
1548
1558
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1549
1559
|
amber: "amber";
|
|
@@ -1566,16 +1576,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1566
1576
|
}, z.core.$strict>;
|
|
1567
1577
|
}, z.core.$strict>, z.ZodObject<{
|
|
1568
1578
|
id: z.ZodString;
|
|
1569
|
-
|
|
1579
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1570
1580
|
x: z.ZodNumber;
|
|
1571
1581
|
y: z.ZodNumber;
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1575
|
-
}, z.core.$strict>;
|
|
1582
|
+
}, z.core.$strict>>;
|
|
1583
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1576
1584
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1577
1585
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1578
1586
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1587
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1588
|
+
width: z.ZodNumber;
|
|
1589
|
+
height: z.ZodNumber;
|
|
1590
|
+
}, z.core.$strict>>;
|
|
1579
1591
|
style: z.ZodOptional<z.ZodObject<{
|
|
1580
1592
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1581
1593
|
amber: "amber";
|
|
@@ -1604,16 +1616,10 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1604
1616
|
}, z.core.$strict>;
|
|
1605
1617
|
}, z.core.$strict>, z.ZodObject<{
|
|
1606
1618
|
id: z.ZodString;
|
|
1607
|
-
frame: z.ZodObject<{
|
|
1608
|
-
x: z.ZodNumber;
|
|
1609
|
-
y: z.ZodNumber;
|
|
1610
|
-
width: z.ZodNumber;
|
|
1611
|
-
height: z.ZodNumber;
|
|
1612
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1613
|
-
}, z.core.$strict>;
|
|
1614
1619
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1615
1620
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1616
1621
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1622
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
1617
1623
|
style: z.ZodOptional<z.ZodObject<{
|
|
1618
1624
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1619
1625
|
amber: "amber";
|
|
@@ -1639,16 +1645,10 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1639
1645
|
}, z.core.$strict>;
|
|
1640
1646
|
}, z.core.$strict>, z.ZodObject<{
|
|
1641
1647
|
id: z.ZodString;
|
|
1642
|
-
frame: z.ZodObject<{
|
|
1643
|
-
x: z.ZodNumber;
|
|
1644
|
-
y: z.ZodNumber;
|
|
1645
|
-
width: z.ZodNumber;
|
|
1646
|
-
height: z.ZodNumber;
|
|
1647
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1648
|
-
}, z.core.$strict>;
|
|
1649
1648
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1650
1649
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1651
1650
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1651
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
1652
1652
|
style: z.ZodOptional<z.ZodObject<{
|
|
1653
1653
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1654
1654
|
amber: "amber";
|
|
@@ -1681,16 +1681,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1681
1681
|
}, z.core.$strict>;
|
|
1682
1682
|
}, z.core.$strict>, z.ZodObject<{
|
|
1683
1683
|
id: z.ZodString;
|
|
1684
|
-
|
|
1684
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1685
1685
|
x: z.ZodNumber;
|
|
1686
1686
|
y: z.ZodNumber;
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1690
|
-
}, z.core.$strict>;
|
|
1687
|
+
}, z.core.$strict>>;
|
|
1688
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1691
1689
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1692
1690
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1693
1691
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1692
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1693
|
+
width: z.ZodNumber;
|
|
1694
|
+
height: z.ZodNumber;
|
|
1695
|
+
}, z.core.$strict>>;
|
|
1694
1696
|
style: z.ZodOptional<z.ZodObject<{
|
|
1695
1697
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1696
1698
|
amber: "amber";
|
|
@@ -1712,16 +1714,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1712
1714
|
}, z.core.$strict>;
|
|
1713
1715
|
}, z.core.$strict>, z.ZodObject<{
|
|
1714
1716
|
id: z.ZodString;
|
|
1715
|
-
|
|
1717
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1716
1718
|
x: z.ZodNumber;
|
|
1717
1719
|
y: z.ZodNumber;
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1721
|
-
}, z.core.$strict>;
|
|
1720
|
+
}, z.core.$strict>>;
|
|
1721
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1722
1722
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1723
1723
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1724
1724
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1725
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1726
|
+
width: z.ZodNumber;
|
|
1727
|
+
height: z.ZodNumber;
|
|
1728
|
+
}, z.core.$strict>>;
|
|
1725
1729
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1726
1730
|
source: z.ZodObject<{
|
|
1727
1731
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1739,16 +1743,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1739
1743
|
}, z.core.$strict>;
|
|
1740
1744
|
}, z.core.$strict>, z.ZodObject<{
|
|
1741
1745
|
id: z.ZodString;
|
|
1742
|
-
|
|
1746
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1743
1747
|
x: z.ZodNumber;
|
|
1744
1748
|
y: z.ZodNumber;
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1748
|
-
}, z.core.$strict>;
|
|
1749
|
+
}, z.core.$strict>>;
|
|
1750
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1749
1751
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1750
1752
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1751
1753
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1754
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1755
|
+
width: z.ZodNumber;
|
|
1756
|
+
height: z.ZodNumber;
|
|
1757
|
+
}, z.core.$strict>>;
|
|
1752
1758
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1753
1759
|
source: z.ZodObject<{
|
|
1754
1760
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1759,16 +1765,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1759
1765
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
1760
1766
|
}, z.core.$strict>, z.ZodObject<{
|
|
1761
1767
|
id: z.ZodString;
|
|
1762
|
-
|
|
1768
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1763
1769
|
x: z.ZodNumber;
|
|
1764
1770
|
y: z.ZodNumber;
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1768
|
-
}, z.core.$strict>;
|
|
1771
|
+
}, z.core.$strict>>;
|
|
1772
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1769
1773
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1770
1774
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1771
1775
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1776
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1777
|
+
width: z.ZodNumber;
|
|
1778
|
+
height: z.ZodNumber;
|
|
1779
|
+
}, z.core.$strict>>;
|
|
1772
1780
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1773
1781
|
source: z.ZodObject<{
|
|
1774
1782
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1779,16 +1787,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1779
1787
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
1780
1788
|
}, z.core.$strict>, z.ZodObject<{
|
|
1781
1789
|
id: z.ZodString;
|
|
1782
|
-
|
|
1790
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1783
1791
|
x: z.ZodNumber;
|
|
1784
1792
|
y: z.ZodNumber;
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1788
|
-
}, z.core.$strict>;
|
|
1793
|
+
}, z.core.$strict>>;
|
|
1794
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1789
1795
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1790
1796
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1791
1797
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1798
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1799
|
+
width: z.ZodNumber;
|
|
1800
|
+
height: z.ZodNumber;
|
|
1801
|
+
}, z.core.$strict>>;
|
|
1792
1802
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1793
1803
|
source: z.ZodObject<{
|
|
1794
1804
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -1799,16 +1809,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1799
1809
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
1800
1810
|
}, z.core.$strict>, z.ZodObject<{
|
|
1801
1811
|
id: z.ZodString;
|
|
1802
|
-
|
|
1812
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1803
1813
|
x: z.ZodNumber;
|
|
1804
1814
|
y: z.ZodNumber;
|
|
1805
|
-
|
|
1806
|
-
|
|
1807
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1808
|
-
}, z.core.$strict>;
|
|
1815
|
+
}, z.core.$strict>>;
|
|
1816
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1809
1817
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1810
1818
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1811
1819
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1820
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1821
|
+
width: z.ZodNumber;
|
|
1822
|
+
height: z.ZodNumber;
|
|
1823
|
+
}, z.core.$strict>>;
|
|
1812
1824
|
type: z.ZodLiteral<"task">;
|
|
1813
1825
|
props: z.ZodObject<{
|
|
1814
1826
|
taskRunId: z.ZodString;
|
|
@@ -1817,16 +1829,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1817
1829
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
1818
1830
|
}, z.core.$strict>], "type">, z.ZodObject<{
|
|
1819
1831
|
id: z.ZodString;
|
|
1820
|
-
|
|
1832
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1821
1833
|
x: z.ZodNumber;
|
|
1822
1834
|
y: z.ZodNumber;
|
|
1823
|
-
|
|
1824
|
-
|
|
1825
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1826
|
-
}, z.core.$strict>;
|
|
1835
|
+
}, z.core.$strict>>;
|
|
1836
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1827
1837
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1828
1838
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1829
1839
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1840
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1841
|
+
width: z.ZodNumber;
|
|
1842
|
+
height: z.ZodNumber;
|
|
1843
|
+
}, z.core.$strict>>;
|
|
1830
1844
|
type: z.ZodString;
|
|
1831
1845
|
kindVersion: z.ZodNumber;
|
|
1832
1846
|
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -1841,13 +1855,15 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1841
1855
|
type: z.ZodLiteral<"item.patch">;
|
|
1842
1856
|
itemId: z.ZodString;
|
|
1843
1857
|
patch: z.ZodObject<{
|
|
1844
|
-
|
|
1858
|
+
position: z.ZodOptional<z.ZodObject<{
|
|
1845
1859
|
x: z.ZodOptional<z.ZodNumber>;
|
|
1846
1860
|
y: z.ZodOptional<z.ZodNumber>;
|
|
1847
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
1848
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
1849
|
-
rotation: z.ZodOptional<z.ZodNumber>;
|
|
1850
1861
|
}, z.core.$strict>>;
|
|
1862
|
+
size: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
1863
|
+
width: z.ZodNumber;
|
|
1864
|
+
height: z.ZodNumber;
|
|
1865
|
+
}, z.core.$strict>>>;
|
|
1866
|
+
rotation: z.ZodOptional<z.ZodNumber>;
|
|
1851
1867
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1852
1868
|
locked: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
1853
1869
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -1860,16 +1876,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1860
1876
|
itemId: z.ZodString;
|
|
1861
1877
|
item: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
1862
1878
|
id: z.ZodString;
|
|
1863
|
-
|
|
1879
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1864
1880
|
x: z.ZodNumber;
|
|
1865
1881
|
y: z.ZodNumber;
|
|
1866
|
-
|
|
1867
|
-
|
|
1868
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1869
|
-
}, z.core.$strict>;
|
|
1882
|
+
}, z.core.$strict>>;
|
|
1883
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1870
1884
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1871
1885
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1872
1886
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1887
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1888
|
+
width: z.ZodNumber;
|
|
1889
|
+
height: z.ZodNumber;
|
|
1890
|
+
}, z.core.$strict>>;
|
|
1873
1891
|
style: z.ZodOptional<z.ZodObject<{
|
|
1874
1892
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1875
1893
|
amber: "amber";
|
|
@@ -1892,16 +1910,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1892
1910
|
}, z.core.$strict>;
|
|
1893
1911
|
}, z.core.$strict>, z.ZodObject<{
|
|
1894
1912
|
id: z.ZodString;
|
|
1895
|
-
|
|
1913
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
1896
1914
|
x: z.ZodNumber;
|
|
1897
1915
|
y: z.ZodNumber;
|
|
1898
|
-
|
|
1899
|
-
|
|
1900
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1901
|
-
}, z.core.$strict>;
|
|
1916
|
+
}, z.core.$strict>>;
|
|
1917
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1902
1918
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1903
1919
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1904
1920
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1921
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
1922
|
+
width: z.ZodNumber;
|
|
1923
|
+
height: z.ZodNumber;
|
|
1924
|
+
}, z.core.$strict>>;
|
|
1905
1925
|
style: z.ZodOptional<z.ZodObject<{
|
|
1906
1926
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1907
1927
|
amber: "amber";
|
|
@@ -1930,16 +1950,10 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1930
1950
|
}, z.core.$strict>;
|
|
1931
1951
|
}, z.core.$strict>, z.ZodObject<{
|
|
1932
1952
|
id: z.ZodString;
|
|
1933
|
-
frame: z.ZodObject<{
|
|
1934
|
-
x: z.ZodNumber;
|
|
1935
|
-
y: z.ZodNumber;
|
|
1936
|
-
width: z.ZodNumber;
|
|
1937
|
-
height: z.ZodNumber;
|
|
1938
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1939
|
-
}, z.core.$strict>;
|
|
1940
1953
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1941
1954
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1942
1955
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1956
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
1943
1957
|
style: z.ZodOptional<z.ZodObject<{
|
|
1944
1958
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1945
1959
|
amber: "amber";
|
|
@@ -1965,16 +1979,10 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
1965
1979
|
}, z.core.$strict>;
|
|
1966
1980
|
}, z.core.$strict>, z.ZodObject<{
|
|
1967
1981
|
id: z.ZodString;
|
|
1968
|
-
frame: z.ZodObject<{
|
|
1969
|
-
x: z.ZodNumber;
|
|
1970
|
-
y: z.ZodNumber;
|
|
1971
|
-
width: z.ZodNumber;
|
|
1972
|
-
height: z.ZodNumber;
|
|
1973
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
1974
|
-
}, z.core.$strict>;
|
|
1975
1982
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
1976
1983
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
1977
1984
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
1985
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
1978
1986
|
style: z.ZodOptional<z.ZodObject<{
|
|
1979
1987
|
color: z.ZodOptional<z.ZodEnum<{
|
|
1980
1988
|
amber: "amber";
|
|
@@ -2007,16 +2015,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2007
2015
|
}, z.core.$strict>;
|
|
2008
2016
|
}, z.core.$strict>, z.ZodObject<{
|
|
2009
2017
|
id: z.ZodString;
|
|
2010
|
-
|
|
2018
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2011
2019
|
x: z.ZodNumber;
|
|
2012
2020
|
y: z.ZodNumber;
|
|
2013
|
-
|
|
2014
|
-
|
|
2015
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2016
|
-
}, z.core.$strict>;
|
|
2021
|
+
}, z.core.$strict>>;
|
|
2022
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2017
2023
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2018
2024
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2019
2025
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2026
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2027
|
+
width: z.ZodNumber;
|
|
2028
|
+
height: z.ZodNumber;
|
|
2029
|
+
}, z.core.$strict>>;
|
|
2020
2030
|
style: z.ZodOptional<z.ZodObject<{
|
|
2021
2031
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2022
2032
|
amber: "amber";
|
|
@@ -2038,16 +2048,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2038
2048
|
}, z.core.$strict>;
|
|
2039
2049
|
}, z.core.$strict>, z.ZodObject<{
|
|
2040
2050
|
id: z.ZodString;
|
|
2041
|
-
|
|
2051
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2042
2052
|
x: z.ZodNumber;
|
|
2043
2053
|
y: z.ZodNumber;
|
|
2044
|
-
|
|
2045
|
-
|
|
2046
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2047
|
-
}, z.core.$strict>;
|
|
2054
|
+
}, z.core.$strict>>;
|
|
2055
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2048
2056
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2049
2057
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2050
2058
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2059
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2060
|
+
width: z.ZodNumber;
|
|
2061
|
+
height: z.ZodNumber;
|
|
2062
|
+
}, z.core.$strict>>;
|
|
2051
2063
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2052
2064
|
source: z.ZodObject<{
|
|
2053
2065
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2065,16 +2077,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2065
2077
|
}, z.core.$strict>;
|
|
2066
2078
|
}, z.core.$strict>, z.ZodObject<{
|
|
2067
2079
|
id: z.ZodString;
|
|
2068
|
-
|
|
2080
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2069
2081
|
x: z.ZodNumber;
|
|
2070
2082
|
y: z.ZodNumber;
|
|
2071
|
-
|
|
2072
|
-
|
|
2073
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2074
|
-
}, z.core.$strict>;
|
|
2083
|
+
}, z.core.$strict>>;
|
|
2084
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2075
2085
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2076
2086
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2077
2087
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2088
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2089
|
+
width: z.ZodNumber;
|
|
2090
|
+
height: z.ZodNumber;
|
|
2091
|
+
}, z.core.$strict>>;
|
|
2078
2092
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2079
2093
|
source: z.ZodObject<{
|
|
2080
2094
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2085,16 +2099,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2085
2099
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
2086
2100
|
}, z.core.$strict>, z.ZodObject<{
|
|
2087
2101
|
id: z.ZodString;
|
|
2088
|
-
|
|
2102
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2089
2103
|
x: z.ZodNumber;
|
|
2090
2104
|
y: z.ZodNumber;
|
|
2091
|
-
|
|
2092
|
-
|
|
2093
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2094
|
-
}, z.core.$strict>;
|
|
2105
|
+
}, z.core.$strict>>;
|
|
2106
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2095
2107
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2096
2108
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2097
2109
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2110
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2111
|
+
width: z.ZodNumber;
|
|
2112
|
+
height: z.ZodNumber;
|
|
2113
|
+
}, z.core.$strict>>;
|
|
2098
2114
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2099
2115
|
source: z.ZodObject<{
|
|
2100
2116
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2105,16 +2121,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2105
2121
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
2106
2122
|
}, z.core.$strict>, z.ZodObject<{
|
|
2107
2123
|
id: z.ZodString;
|
|
2108
|
-
|
|
2124
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2109
2125
|
x: z.ZodNumber;
|
|
2110
2126
|
y: z.ZodNumber;
|
|
2111
|
-
|
|
2112
|
-
|
|
2113
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2114
|
-
}, z.core.$strict>;
|
|
2127
|
+
}, z.core.$strict>>;
|
|
2128
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2115
2129
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2116
2130
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2117
2131
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2132
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2133
|
+
width: z.ZodNumber;
|
|
2134
|
+
height: z.ZodNumber;
|
|
2135
|
+
}, z.core.$strict>>;
|
|
2118
2136
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2119
2137
|
source: z.ZodObject<{
|
|
2120
2138
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2125,16 +2143,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2125
2143
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
2126
2144
|
}, z.core.$strict>, z.ZodObject<{
|
|
2127
2145
|
id: z.ZodString;
|
|
2128
|
-
|
|
2146
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2129
2147
|
x: z.ZodNumber;
|
|
2130
2148
|
y: z.ZodNumber;
|
|
2131
|
-
|
|
2132
|
-
|
|
2133
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2134
|
-
}, z.core.$strict>;
|
|
2149
|
+
}, z.core.$strict>>;
|
|
2150
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2135
2151
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2136
2152
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2137
2153
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2154
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2155
|
+
width: z.ZodNumber;
|
|
2156
|
+
height: z.ZodNumber;
|
|
2157
|
+
}, z.core.$strict>>;
|
|
2138
2158
|
type: z.ZodLiteral<"task">;
|
|
2139
2159
|
props: z.ZodObject<{
|
|
2140
2160
|
taskRunId: z.ZodString;
|
|
@@ -2143,16 +2163,18 @@ declare const BoardSemanticCommandSchema: z.ZodDiscriminatedUnion<[z.ZodObject<{
|
|
|
2143
2163
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2144
2164
|
}, z.core.$strict>], "type">, z.ZodObject<{
|
|
2145
2165
|
id: z.ZodString;
|
|
2146
|
-
|
|
2166
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2147
2167
|
x: z.ZodNumber;
|
|
2148
2168
|
y: z.ZodNumber;
|
|
2149
|
-
|
|
2150
|
-
|
|
2151
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2152
|
-
}, z.core.$strict>;
|
|
2169
|
+
}, z.core.$strict>>;
|
|
2170
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2153
2171
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2154
2172
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2155
2173
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2174
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2175
|
+
width: z.ZodNumber;
|
|
2176
|
+
height: z.ZodNumber;
|
|
2177
|
+
}, z.core.$strict>>;
|
|
2156
2178
|
type: z.ZodString;
|
|
2157
2179
|
kindVersion: z.ZodNumber;
|
|
2158
2180
|
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -2513,16 +2535,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2513
2535
|
type: z.ZodLiteral<"item.create">;
|
|
2514
2536
|
item: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
2515
2537
|
id: z.ZodString;
|
|
2516
|
-
|
|
2538
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2517
2539
|
x: z.ZodNumber;
|
|
2518
2540
|
y: z.ZodNumber;
|
|
2519
|
-
|
|
2520
|
-
|
|
2521
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2522
|
-
}, z.core.$strict>;
|
|
2541
|
+
}, z.core.$strict>>;
|
|
2542
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2523
2543
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2524
2544
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2525
2545
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2546
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2547
|
+
width: z.ZodNumber;
|
|
2548
|
+
height: z.ZodNumber;
|
|
2549
|
+
}, z.core.$strict>>;
|
|
2526
2550
|
style: z.ZodOptional<z.ZodObject<{
|
|
2527
2551
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2528
2552
|
amber: "amber";
|
|
@@ -2545,16 +2569,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2545
2569
|
}, z.core.$strict>;
|
|
2546
2570
|
}, z.core.$strict>, z.ZodObject<{
|
|
2547
2571
|
id: z.ZodString;
|
|
2548
|
-
|
|
2572
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2549
2573
|
x: z.ZodNumber;
|
|
2550
2574
|
y: z.ZodNumber;
|
|
2551
|
-
|
|
2552
|
-
|
|
2553
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2554
|
-
}, z.core.$strict>;
|
|
2575
|
+
}, z.core.$strict>>;
|
|
2576
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2555
2577
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2556
2578
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2557
2579
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2580
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2581
|
+
width: z.ZodNumber;
|
|
2582
|
+
height: z.ZodNumber;
|
|
2583
|
+
}, z.core.$strict>>;
|
|
2558
2584
|
style: z.ZodOptional<z.ZodObject<{
|
|
2559
2585
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2560
2586
|
amber: "amber";
|
|
@@ -2583,16 +2609,10 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2583
2609
|
}, z.core.$strict>;
|
|
2584
2610
|
}, z.core.$strict>, z.ZodObject<{
|
|
2585
2611
|
id: z.ZodString;
|
|
2586
|
-
frame: z.ZodObject<{
|
|
2587
|
-
x: z.ZodNumber;
|
|
2588
|
-
y: z.ZodNumber;
|
|
2589
|
-
width: z.ZodNumber;
|
|
2590
|
-
height: z.ZodNumber;
|
|
2591
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2592
|
-
}, z.core.$strict>;
|
|
2593
2612
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2594
2613
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2595
2614
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2615
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
2596
2616
|
style: z.ZodOptional<z.ZodObject<{
|
|
2597
2617
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2598
2618
|
amber: "amber";
|
|
@@ -2618,16 +2638,10 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2618
2638
|
}, z.core.$strict>;
|
|
2619
2639
|
}, z.core.$strict>, z.ZodObject<{
|
|
2620
2640
|
id: z.ZodString;
|
|
2621
|
-
frame: z.ZodObject<{
|
|
2622
|
-
x: z.ZodNumber;
|
|
2623
|
-
y: z.ZodNumber;
|
|
2624
|
-
width: z.ZodNumber;
|
|
2625
|
-
height: z.ZodNumber;
|
|
2626
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2627
|
-
}, z.core.$strict>;
|
|
2628
2641
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2629
2642
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2630
2643
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2644
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
2631
2645
|
style: z.ZodOptional<z.ZodObject<{
|
|
2632
2646
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2633
2647
|
amber: "amber";
|
|
@@ -2660,16 +2674,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2660
2674
|
}, z.core.$strict>;
|
|
2661
2675
|
}, z.core.$strict>, z.ZodObject<{
|
|
2662
2676
|
id: z.ZodString;
|
|
2663
|
-
|
|
2677
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2664
2678
|
x: z.ZodNumber;
|
|
2665
2679
|
y: z.ZodNumber;
|
|
2666
|
-
|
|
2667
|
-
|
|
2668
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2669
|
-
}, z.core.$strict>;
|
|
2680
|
+
}, z.core.$strict>>;
|
|
2681
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2670
2682
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2671
2683
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2672
2684
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2685
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2686
|
+
width: z.ZodNumber;
|
|
2687
|
+
height: z.ZodNumber;
|
|
2688
|
+
}, z.core.$strict>>;
|
|
2673
2689
|
style: z.ZodOptional<z.ZodObject<{
|
|
2674
2690
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2675
2691
|
amber: "amber";
|
|
@@ -2691,16 +2707,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2691
2707
|
}, z.core.$strict>;
|
|
2692
2708
|
}, z.core.$strict>, z.ZodObject<{
|
|
2693
2709
|
id: z.ZodString;
|
|
2694
|
-
|
|
2710
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2695
2711
|
x: z.ZodNumber;
|
|
2696
2712
|
y: z.ZodNumber;
|
|
2697
|
-
|
|
2698
|
-
|
|
2699
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2700
|
-
}, z.core.$strict>;
|
|
2713
|
+
}, z.core.$strict>>;
|
|
2714
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2701
2715
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2702
2716
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2703
2717
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2718
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2719
|
+
width: z.ZodNumber;
|
|
2720
|
+
height: z.ZodNumber;
|
|
2721
|
+
}, z.core.$strict>>;
|
|
2704
2722
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2705
2723
|
source: z.ZodObject<{
|
|
2706
2724
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2718,16 +2736,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2718
2736
|
}, z.core.$strict>;
|
|
2719
2737
|
}, z.core.$strict>, z.ZodObject<{
|
|
2720
2738
|
id: z.ZodString;
|
|
2721
|
-
|
|
2739
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2722
2740
|
x: z.ZodNumber;
|
|
2723
2741
|
y: z.ZodNumber;
|
|
2724
|
-
|
|
2725
|
-
|
|
2726
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2727
|
-
}, z.core.$strict>;
|
|
2742
|
+
}, z.core.$strict>>;
|
|
2743
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2728
2744
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2729
2745
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2730
2746
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2747
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2748
|
+
width: z.ZodNumber;
|
|
2749
|
+
height: z.ZodNumber;
|
|
2750
|
+
}, z.core.$strict>>;
|
|
2731
2751
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2732
2752
|
source: z.ZodObject<{
|
|
2733
2753
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2738,16 +2758,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2738
2758
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
2739
2759
|
}, z.core.$strict>, z.ZodObject<{
|
|
2740
2760
|
id: z.ZodString;
|
|
2741
|
-
|
|
2761
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2742
2762
|
x: z.ZodNumber;
|
|
2743
2763
|
y: z.ZodNumber;
|
|
2744
|
-
|
|
2745
|
-
|
|
2746
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2747
|
-
}, z.core.$strict>;
|
|
2764
|
+
}, z.core.$strict>>;
|
|
2765
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2748
2766
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2749
2767
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2750
2768
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2769
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2770
|
+
width: z.ZodNumber;
|
|
2771
|
+
height: z.ZodNumber;
|
|
2772
|
+
}, z.core.$strict>>;
|
|
2751
2773
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2752
2774
|
source: z.ZodObject<{
|
|
2753
2775
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2758,16 +2780,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2758
2780
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
2759
2781
|
}, z.core.$strict>, z.ZodObject<{
|
|
2760
2782
|
id: z.ZodString;
|
|
2761
|
-
|
|
2783
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2762
2784
|
x: z.ZodNumber;
|
|
2763
2785
|
y: z.ZodNumber;
|
|
2764
|
-
|
|
2765
|
-
|
|
2766
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2767
|
-
}, z.core.$strict>;
|
|
2786
|
+
}, z.core.$strict>>;
|
|
2787
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2768
2788
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2769
2789
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2770
2790
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2791
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2792
|
+
width: z.ZodNumber;
|
|
2793
|
+
height: z.ZodNumber;
|
|
2794
|
+
}, z.core.$strict>>;
|
|
2771
2795
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2772
2796
|
source: z.ZodObject<{
|
|
2773
2797
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -2778,16 +2802,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2778
2802
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
2779
2803
|
}, z.core.$strict>, z.ZodObject<{
|
|
2780
2804
|
id: z.ZodString;
|
|
2781
|
-
|
|
2805
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2782
2806
|
x: z.ZodNumber;
|
|
2783
2807
|
y: z.ZodNumber;
|
|
2784
|
-
|
|
2785
|
-
|
|
2786
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2787
|
-
}, z.core.$strict>;
|
|
2808
|
+
}, z.core.$strict>>;
|
|
2809
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2788
2810
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2789
2811
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2790
2812
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2813
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2814
|
+
width: z.ZodNumber;
|
|
2815
|
+
height: z.ZodNumber;
|
|
2816
|
+
}, z.core.$strict>>;
|
|
2791
2817
|
type: z.ZodLiteral<"task">;
|
|
2792
2818
|
props: z.ZodObject<{
|
|
2793
2819
|
taskRunId: z.ZodString;
|
|
@@ -2796,16 +2822,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2796
2822
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
2797
2823
|
}, z.core.$strict>], "type">, z.ZodObject<{
|
|
2798
2824
|
id: z.ZodString;
|
|
2799
|
-
|
|
2825
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2800
2826
|
x: z.ZodNumber;
|
|
2801
2827
|
y: z.ZodNumber;
|
|
2802
|
-
|
|
2803
|
-
|
|
2804
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2805
|
-
}, z.core.$strict>;
|
|
2828
|
+
}, z.core.$strict>>;
|
|
2829
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2806
2830
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2807
2831
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2808
2832
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2833
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2834
|
+
width: z.ZodNumber;
|
|
2835
|
+
height: z.ZodNumber;
|
|
2836
|
+
}, z.core.$strict>>;
|
|
2809
2837
|
type: z.ZodString;
|
|
2810
2838
|
kindVersion: z.ZodNumber;
|
|
2811
2839
|
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -2820,13 +2848,15 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2820
2848
|
type: z.ZodLiteral<"item.patch">;
|
|
2821
2849
|
itemId: z.ZodString;
|
|
2822
2850
|
patch: z.ZodObject<{
|
|
2823
|
-
|
|
2851
|
+
position: z.ZodOptional<z.ZodObject<{
|
|
2824
2852
|
x: z.ZodOptional<z.ZodNumber>;
|
|
2825
2853
|
y: z.ZodOptional<z.ZodNumber>;
|
|
2826
|
-
width: z.ZodOptional<z.ZodNumber>;
|
|
2827
|
-
height: z.ZodOptional<z.ZodNumber>;
|
|
2828
|
-
rotation: z.ZodOptional<z.ZodNumber>;
|
|
2829
2854
|
}, z.core.$strict>>;
|
|
2855
|
+
size: z.ZodOptional<z.ZodNullable<z.ZodObject<{
|
|
2856
|
+
width: z.ZodNumber;
|
|
2857
|
+
height: z.ZodNumber;
|
|
2858
|
+
}, z.core.$strict>>>;
|
|
2859
|
+
rotation: z.ZodOptional<z.ZodNumber>;
|
|
2830
2860
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2831
2861
|
locked: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
|
|
2832
2862
|
props: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
@@ -2839,16 +2869,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2839
2869
|
itemId: z.ZodString;
|
|
2840
2870
|
item: z.ZodUnion<readonly [z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
2841
2871
|
id: z.ZodString;
|
|
2842
|
-
|
|
2872
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2843
2873
|
x: z.ZodNumber;
|
|
2844
2874
|
y: z.ZodNumber;
|
|
2845
|
-
|
|
2846
|
-
|
|
2847
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2848
|
-
}, z.core.$strict>;
|
|
2875
|
+
}, z.core.$strict>>;
|
|
2876
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2849
2877
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2850
2878
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2851
2879
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2880
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2881
|
+
width: z.ZodNumber;
|
|
2882
|
+
height: z.ZodNumber;
|
|
2883
|
+
}, z.core.$strict>>;
|
|
2852
2884
|
style: z.ZodOptional<z.ZodObject<{
|
|
2853
2885
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2854
2886
|
amber: "amber";
|
|
@@ -2871,16 +2903,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2871
2903
|
}, z.core.$strict>;
|
|
2872
2904
|
}, z.core.$strict>, z.ZodObject<{
|
|
2873
2905
|
id: z.ZodString;
|
|
2874
|
-
|
|
2906
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2875
2907
|
x: z.ZodNumber;
|
|
2876
2908
|
y: z.ZodNumber;
|
|
2877
|
-
|
|
2878
|
-
|
|
2879
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2880
|
-
}, z.core.$strict>;
|
|
2909
|
+
}, z.core.$strict>>;
|
|
2910
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2881
2911
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2882
2912
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2883
2913
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2914
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
2915
|
+
width: z.ZodNumber;
|
|
2916
|
+
height: z.ZodNumber;
|
|
2917
|
+
}, z.core.$strict>>;
|
|
2884
2918
|
style: z.ZodOptional<z.ZodObject<{
|
|
2885
2919
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2886
2920
|
amber: "amber";
|
|
@@ -2909,16 +2943,10 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2909
2943
|
}, z.core.$strict>;
|
|
2910
2944
|
}, z.core.$strict>, z.ZodObject<{
|
|
2911
2945
|
id: z.ZodString;
|
|
2912
|
-
frame: z.ZodObject<{
|
|
2913
|
-
x: z.ZodNumber;
|
|
2914
|
-
y: z.ZodNumber;
|
|
2915
|
-
width: z.ZodNumber;
|
|
2916
|
-
height: z.ZodNumber;
|
|
2917
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2918
|
-
}, z.core.$strict>;
|
|
2919
2946
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2920
2947
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2921
2948
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2949
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
2922
2950
|
style: z.ZodOptional<z.ZodObject<{
|
|
2923
2951
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2924
2952
|
amber: "amber";
|
|
@@ -2944,16 +2972,10 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2944
2972
|
}, z.core.$strict>;
|
|
2945
2973
|
}, z.core.$strict>, z.ZodObject<{
|
|
2946
2974
|
id: z.ZodString;
|
|
2947
|
-
frame: z.ZodObject<{
|
|
2948
|
-
x: z.ZodNumber;
|
|
2949
|
-
y: z.ZodNumber;
|
|
2950
|
-
width: z.ZodNumber;
|
|
2951
|
-
height: z.ZodNumber;
|
|
2952
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2953
|
-
}, z.core.$strict>;
|
|
2954
2975
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2955
2976
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2956
2977
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
2978
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
2957
2979
|
style: z.ZodOptional<z.ZodObject<{
|
|
2958
2980
|
color: z.ZodOptional<z.ZodEnum<{
|
|
2959
2981
|
amber: "amber";
|
|
@@ -2986,16 +3008,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
2986
3008
|
}, z.core.$strict>;
|
|
2987
3009
|
}, z.core.$strict>, z.ZodObject<{
|
|
2988
3010
|
id: z.ZodString;
|
|
2989
|
-
|
|
3011
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
2990
3012
|
x: z.ZodNumber;
|
|
2991
3013
|
y: z.ZodNumber;
|
|
2992
|
-
|
|
2993
|
-
|
|
2994
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2995
|
-
}, z.core.$strict>;
|
|
3014
|
+
}, z.core.$strict>>;
|
|
3015
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
2996
3016
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
2997
3017
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
2998
3018
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3019
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3020
|
+
width: z.ZodNumber;
|
|
3021
|
+
height: z.ZodNumber;
|
|
3022
|
+
}, z.core.$strict>>;
|
|
2999
3023
|
style: z.ZodOptional<z.ZodObject<{
|
|
3000
3024
|
color: z.ZodOptional<z.ZodEnum<{
|
|
3001
3025
|
amber: "amber";
|
|
@@ -3017,16 +3041,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
3017
3041
|
}, z.core.$strict>;
|
|
3018
3042
|
}, z.core.$strict>, z.ZodObject<{
|
|
3019
3043
|
id: z.ZodString;
|
|
3020
|
-
|
|
3044
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3021
3045
|
x: z.ZodNumber;
|
|
3022
3046
|
y: z.ZodNumber;
|
|
3023
|
-
|
|
3024
|
-
|
|
3025
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3026
|
-
}, z.core.$strict>;
|
|
3047
|
+
}, z.core.$strict>>;
|
|
3048
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3027
3049
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3028
3050
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3029
3051
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3052
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3053
|
+
width: z.ZodNumber;
|
|
3054
|
+
height: z.ZodNumber;
|
|
3055
|
+
}, z.core.$strict>>;
|
|
3030
3056
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3031
3057
|
source: z.ZodObject<{
|
|
3032
3058
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3044,16 +3070,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
3044
3070
|
}, z.core.$strict>;
|
|
3045
3071
|
}, z.core.$strict>, z.ZodObject<{
|
|
3046
3072
|
id: z.ZodString;
|
|
3047
|
-
|
|
3073
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3048
3074
|
x: z.ZodNumber;
|
|
3049
3075
|
y: z.ZodNumber;
|
|
3050
|
-
|
|
3051
|
-
|
|
3052
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3053
|
-
}, z.core.$strict>;
|
|
3076
|
+
}, z.core.$strict>>;
|
|
3077
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3054
3078
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3055
3079
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3056
3080
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3081
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3082
|
+
width: z.ZodNumber;
|
|
3083
|
+
height: z.ZodNumber;
|
|
3084
|
+
}, z.core.$strict>>;
|
|
3057
3085
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3058
3086
|
source: z.ZodObject<{
|
|
3059
3087
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3064,16 +3092,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
3064
3092
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
3065
3093
|
}, z.core.$strict>, z.ZodObject<{
|
|
3066
3094
|
id: z.ZodString;
|
|
3067
|
-
|
|
3095
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3068
3096
|
x: z.ZodNumber;
|
|
3069
3097
|
y: z.ZodNumber;
|
|
3070
|
-
|
|
3071
|
-
|
|
3072
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3073
|
-
}, z.core.$strict>;
|
|
3098
|
+
}, z.core.$strict>>;
|
|
3099
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3074
3100
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3075
3101
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3076
3102
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3103
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3104
|
+
width: z.ZodNumber;
|
|
3105
|
+
height: z.ZodNumber;
|
|
3106
|
+
}, z.core.$strict>>;
|
|
3077
3107
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3078
3108
|
source: z.ZodObject<{
|
|
3079
3109
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3084,16 +3114,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
3084
3114
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
3085
3115
|
}, z.core.$strict>, z.ZodObject<{
|
|
3086
3116
|
id: z.ZodString;
|
|
3087
|
-
|
|
3117
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3088
3118
|
x: z.ZodNumber;
|
|
3089
3119
|
y: z.ZodNumber;
|
|
3090
|
-
|
|
3091
|
-
|
|
3092
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3093
|
-
}, z.core.$strict>;
|
|
3120
|
+
}, z.core.$strict>>;
|
|
3121
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3094
3122
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3095
3123
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3096
3124
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3125
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3126
|
+
width: z.ZodNumber;
|
|
3127
|
+
height: z.ZodNumber;
|
|
3128
|
+
}, z.core.$strict>>;
|
|
3097
3129
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3098
3130
|
source: z.ZodObject<{
|
|
3099
3131
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3104,16 +3136,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
3104
3136
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
3105
3137
|
}, z.core.$strict>, z.ZodObject<{
|
|
3106
3138
|
id: z.ZodString;
|
|
3107
|
-
|
|
3139
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3108
3140
|
x: z.ZodNumber;
|
|
3109
3141
|
y: z.ZodNumber;
|
|
3110
|
-
|
|
3111
|
-
|
|
3112
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3113
|
-
}, z.core.$strict>;
|
|
3142
|
+
}, z.core.$strict>>;
|
|
3143
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3114
3144
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3115
3145
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3116
3146
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3147
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3148
|
+
width: z.ZodNumber;
|
|
3149
|
+
height: z.ZodNumber;
|
|
3150
|
+
}, z.core.$strict>>;
|
|
3117
3151
|
type: z.ZodLiteral<"task">;
|
|
3118
3152
|
props: z.ZodObject<{
|
|
3119
3153
|
taskRunId: z.ZodString;
|
|
@@ -3122,16 +3156,18 @@ declare const BoardSemanticMutationSchema: z.ZodObject<{
|
|
|
3122
3156
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3123
3157
|
}, z.core.$strict>], "type">, z.ZodObject<{
|
|
3124
3158
|
id: z.ZodString;
|
|
3125
|
-
|
|
3159
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3126
3160
|
x: z.ZodNumber;
|
|
3127
3161
|
y: z.ZodNumber;
|
|
3128
|
-
|
|
3129
|
-
|
|
3130
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3131
|
-
}, z.core.$strict>;
|
|
3162
|
+
}, z.core.$strict>>;
|
|
3163
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3132
3164
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3133
3165
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3134
3166
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3167
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3168
|
+
width: z.ZodNumber;
|
|
3169
|
+
height: z.ZodNumber;
|
|
3170
|
+
}, z.core.$strict>>;
|
|
3135
3171
|
type: z.ZodString;
|
|
3136
3172
|
kindVersion: z.ZodNumber;
|
|
3137
3173
|
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|
|
@@ -3481,8 +3517,8 @@ declare const BOARD_AUTHORING_ITEM_CAPABILITIES: {
|
|
|
3481
3517
|
colors: readonly ["brand", "neutral", "black", "white", "blue", "green", "amber", "violet", "rose"];
|
|
3482
3518
|
shapes: readonly ["rectangle", "rounded", "ellipse", "diamond", "triangle"];
|
|
3483
3519
|
coordinates: {
|
|
3484
|
-
|
|
3485
|
-
drawPoints: "
|
|
3520
|
+
position: "world";
|
|
3521
|
+
drawPoints: "world";
|
|
3486
3522
|
arrowEndpoints: "world";
|
|
3487
3523
|
};
|
|
3488
3524
|
};
|
|
@@ -3646,16 +3682,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3646
3682
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3647
3683
|
items: z.ZodOptional<z.ZodArray<z.ZodUnion<readonly [z.ZodDiscriminatedUnion<readonly [z.ZodObject<{
|
|
3648
3684
|
id: z.ZodString;
|
|
3649
|
-
|
|
3685
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3650
3686
|
x: z.ZodNumber;
|
|
3651
3687
|
y: z.ZodNumber;
|
|
3652
|
-
|
|
3653
|
-
|
|
3654
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3655
|
-
}, z.core.$strict>;
|
|
3688
|
+
}, z.core.$strict>>;
|
|
3689
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3656
3690
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3657
3691
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3658
3692
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3693
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3694
|
+
width: z.ZodNumber;
|
|
3695
|
+
height: z.ZodNumber;
|
|
3696
|
+
}, z.core.$strict>>;
|
|
3659
3697
|
style: z.ZodOptional<z.ZodObject<{
|
|
3660
3698
|
color: z.ZodOptional<z.ZodEnum<{
|
|
3661
3699
|
amber: "amber";
|
|
@@ -3678,16 +3716,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3678
3716
|
}, z.core.$strict>;
|
|
3679
3717
|
}, z.core.$strict>, z.ZodObject<{
|
|
3680
3718
|
id: z.ZodString;
|
|
3681
|
-
|
|
3719
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3682
3720
|
x: z.ZodNumber;
|
|
3683
3721
|
y: z.ZodNumber;
|
|
3684
|
-
|
|
3685
|
-
|
|
3686
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3687
|
-
}, z.core.$strict>;
|
|
3722
|
+
}, z.core.$strict>>;
|
|
3723
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3688
3724
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3689
3725
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3690
3726
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3727
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3728
|
+
width: z.ZodNumber;
|
|
3729
|
+
height: z.ZodNumber;
|
|
3730
|
+
}, z.core.$strict>>;
|
|
3691
3731
|
style: z.ZodOptional<z.ZodObject<{
|
|
3692
3732
|
color: z.ZodOptional<z.ZodEnum<{
|
|
3693
3733
|
amber: "amber";
|
|
@@ -3716,16 +3756,10 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3716
3756
|
}, z.core.$strict>;
|
|
3717
3757
|
}, z.core.$strict>, z.ZodObject<{
|
|
3718
3758
|
id: z.ZodString;
|
|
3719
|
-
frame: z.ZodObject<{
|
|
3720
|
-
x: z.ZodNumber;
|
|
3721
|
-
y: z.ZodNumber;
|
|
3722
|
-
width: z.ZodNumber;
|
|
3723
|
-
height: z.ZodNumber;
|
|
3724
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3725
|
-
}, z.core.$strict>;
|
|
3726
3759
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3727
3760
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3728
3761
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3762
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
3729
3763
|
style: z.ZodOptional<z.ZodObject<{
|
|
3730
3764
|
color: z.ZodOptional<z.ZodEnum<{
|
|
3731
3765
|
amber: "amber";
|
|
@@ -3751,16 +3785,10 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3751
3785
|
}, z.core.$strict>;
|
|
3752
3786
|
}, z.core.$strict>, z.ZodObject<{
|
|
3753
3787
|
id: z.ZodString;
|
|
3754
|
-
frame: z.ZodObject<{
|
|
3755
|
-
x: z.ZodNumber;
|
|
3756
|
-
y: z.ZodNumber;
|
|
3757
|
-
width: z.ZodNumber;
|
|
3758
|
-
height: z.ZodNumber;
|
|
3759
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3760
|
-
}, z.core.$strict>;
|
|
3761
3788
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3762
3789
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3763
3790
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3791
|
+
rotation: z.ZodDefault<z.ZodLiteral<0>>;
|
|
3764
3792
|
style: z.ZodOptional<z.ZodObject<{
|
|
3765
3793
|
color: z.ZodOptional<z.ZodEnum<{
|
|
3766
3794
|
amber: "amber";
|
|
@@ -3793,16 +3821,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3793
3821
|
}, z.core.$strict>;
|
|
3794
3822
|
}, z.core.$strict>, z.ZodObject<{
|
|
3795
3823
|
id: z.ZodString;
|
|
3796
|
-
|
|
3824
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3797
3825
|
x: z.ZodNumber;
|
|
3798
3826
|
y: z.ZodNumber;
|
|
3799
|
-
|
|
3800
|
-
|
|
3801
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3802
|
-
}, z.core.$strict>;
|
|
3827
|
+
}, z.core.$strict>>;
|
|
3828
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3803
3829
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3804
3830
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3805
3831
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3832
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3833
|
+
width: z.ZodNumber;
|
|
3834
|
+
height: z.ZodNumber;
|
|
3835
|
+
}, z.core.$strict>>;
|
|
3806
3836
|
style: z.ZodOptional<z.ZodObject<{
|
|
3807
3837
|
color: z.ZodOptional<z.ZodEnum<{
|
|
3808
3838
|
amber: "amber";
|
|
@@ -3824,16 +3854,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3824
3854
|
}, z.core.$strict>;
|
|
3825
3855
|
}, z.core.$strict>, z.ZodObject<{
|
|
3826
3856
|
id: z.ZodString;
|
|
3827
|
-
|
|
3857
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3828
3858
|
x: z.ZodNumber;
|
|
3829
3859
|
y: z.ZodNumber;
|
|
3830
|
-
|
|
3831
|
-
|
|
3832
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3833
|
-
}, z.core.$strict>;
|
|
3860
|
+
}, z.core.$strict>>;
|
|
3861
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3834
3862
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3835
3863
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3836
3864
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3865
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3866
|
+
width: z.ZodNumber;
|
|
3867
|
+
height: z.ZodNumber;
|
|
3868
|
+
}, z.core.$strict>>;
|
|
3837
3869
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3838
3870
|
source: z.ZodObject<{
|
|
3839
3871
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3851,16 +3883,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3851
3883
|
}, z.core.$strict>;
|
|
3852
3884
|
}, z.core.$strict>, z.ZodObject<{
|
|
3853
3885
|
id: z.ZodString;
|
|
3854
|
-
|
|
3886
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3855
3887
|
x: z.ZodNumber;
|
|
3856
3888
|
y: z.ZodNumber;
|
|
3857
|
-
|
|
3858
|
-
|
|
3859
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3860
|
-
}, z.core.$strict>;
|
|
3889
|
+
}, z.core.$strict>>;
|
|
3890
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3861
3891
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3862
3892
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3863
3893
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3894
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3895
|
+
width: z.ZodNumber;
|
|
3896
|
+
height: z.ZodNumber;
|
|
3897
|
+
}, z.core.$strict>>;
|
|
3864
3898
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3865
3899
|
source: z.ZodObject<{
|
|
3866
3900
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3871,16 +3905,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3871
3905
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
3872
3906
|
}, z.core.$strict>, z.ZodObject<{
|
|
3873
3907
|
id: z.ZodString;
|
|
3874
|
-
|
|
3908
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3875
3909
|
x: z.ZodNumber;
|
|
3876
3910
|
y: z.ZodNumber;
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3880
|
-
}, z.core.$strict>;
|
|
3911
|
+
}, z.core.$strict>>;
|
|
3912
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3881
3913
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3882
3914
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3883
3915
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3916
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3917
|
+
width: z.ZodNumber;
|
|
3918
|
+
height: z.ZodNumber;
|
|
3919
|
+
}, z.core.$strict>>;
|
|
3884
3920
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3885
3921
|
source: z.ZodObject<{
|
|
3886
3922
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3891,16 +3927,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3891
3927
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
3892
3928
|
}, z.core.$strict>, z.ZodObject<{
|
|
3893
3929
|
id: z.ZodString;
|
|
3894
|
-
|
|
3930
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3895
3931
|
x: z.ZodNumber;
|
|
3896
3932
|
y: z.ZodNumber;
|
|
3897
|
-
|
|
3898
|
-
|
|
3899
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3900
|
-
}, z.core.$strict>;
|
|
3933
|
+
}, z.core.$strict>>;
|
|
3934
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3901
3935
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3902
3936
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3903
3937
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3938
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3939
|
+
width: z.ZodNumber;
|
|
3940
|
+
height: z.ZodNumber;
|
|
3941
|
+
}, z.core.$strict>>;
|
|
3904
3942
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3905
3943
|
source: z.ZodObject<{
|
|
3906
3944
|
kind: z.ZodLiteral<"space-file">;
|
|
@@ -3911,16 +3949,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3911
3949
|
props: z.ZodObject<{}, z.core.$strict>;
|
|
3912
3950
|
}, z.core.$strict>, z.ZodObject<{
|
|
3913
3951
|
id: z.ZodString;
|
|
3914
|
-
|
|
3952
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3915
3953
|
x: z.ZodNumber;
|
|
3916
3954
|
y: z.ZodNumber;
|
|
3917
|
-
|
|
3918
|
-
|
|
3919
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3920
|
-
}, z.core.$strict>;
|
|
3955
|
+
}, z.core.$strict>>;
|
|
3956
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3921
3957
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3922
3958
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3923
3959
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3960
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3961
|
+
width: z.ZodNumber;
|
|
3962
|
+
height: z.ZodNumber;
|
|
3963
|
+
}, z.core.$strict>>;
|
|
3924
3964
|
type: z.ZodLiteral<"task">;
|
|
3925
3965
|
props: z.ZodObject<{
|
|
3926
3966
|
taskRunId: z.ZodString;
|
|
@@ -3929,16 +3969,18 @@ declare const BoardCreateInputSchema: z.ZodObject<{
|
|
|
3929
3969
|
style: z.ZodOptional<z.ZodObject<{}, z.core.$strict>>;
|
|
3930
3970
|
}, z.core.$strict>], "type">, z.ZodObject<{
|
|
3931
3971
|
id: z.ZodString;
|
|
3932
|
-
|
|
3972
|
+
position: z.ZodDefault<z.ZodObject<{
|
|
3933
3973
|
x: z.ZodNumber;
|
|
3934
3974
|
y: z.ZodNumber;
|
|
3935
|
-
|
|
3936
|
-
|
|
3937
|
-
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3938
|
-
}, z.core.$strict>;
|
|
3975
|
+
}, z.core.$strict>>;
|
|
3976
|
+
rotation: z.ZodDefault<z.ZodNumber>;
|
|
3939
3977
|
parentId: z.ZodOptional<z.ZodNullable<z.ZodString>>;
|
|
3940
3978
|
locked: z.ZodOptional<z.ZodBoolean>;
|
|
3941
3979
|
metadata: z.ZodOptional<z.ZodRecord<z.ZodString, z.ZodUnknown>>;
|
|
3980
|
+
size: z.ZodOptional<z.ZodObject<{
|
|
3981
|
+
width: z.ZodNumber;
|
|
3982
|
+
height: z.ZodNumber;
|
|
3983
|
+
}, z.core.$strict>>;
|
|
3942
3984
|
type: z.ZodString;
|
|
3943
3985
|
kindVersion: z.ZodNumber;
|
|
3944
3986
|
props: z.ZodRecord<z.ZodString, z.ZodUnknown>;
|