@prismicio/types-internal 1.2.0-alpha.0 → 1.2.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/lib/content/fields/GroupContent.d.ts +810 -0
- package/lib/content/fields/GroupContent.js +17 -0
- package/lib/content/fields/index.d.ts +3 -0
- package/lib/content/fields/index.js +6 -0
- package/lib/content/fields/nestable/BooleanContent.d.ts +7 -0
- package/lib/content/fields/nestable/BooleanContent.js +11 -0
- package/lib/content/fields/nestable/EmbedContent.d.ts +70 -0
- package/lib/content/fields/nestable/EmbedContent.js +13 -0
- package/lib/content/fields/nestable/FieldContent.d.ts +26 -0
- package/lib/content/fields/nestable/FieldContent.js +22 -0
- package/lib/content/fields/nestable/GeoPointContent.d.ts +18 -0
- package/lib/content/fields/nestable/GeoPointContent.js +13 -0
- package/lib/content/fields/nestable/Image.d.ts +103 -0
- package/lib/content/fields/nestable/Image.js +13 -0
- package/lib/content/fields/nestable/ImageContent.d.ts +104 -0
- package/lib/content/fields/nestable/ImageContent.js +13 -0
- package/lib/content/fields/nestable/IntegrationFieldContent.d.ts +7 -0
- package/lib/content/fields/nestable/IntegrationFieldContent.js +11 -0
- package/lib/content/fields/nestable/LinkContent.d.ts +159 -0
- package/lib/content/fields/nestable/LinkContent.js +48 -0
- package/lib/content/fields/nestable/NestableContent.d.ts +400 -0
- package/lib/content/fields/nestable/NestableContent.js +25 -0
- package/lib/content/fields/nestable/RichTextContent.d.ts +127 -0
- package/lib/content/fields/nestable/RichTextContent.js +11 -0
- package/lib/content/fields/nestable/SeparatorContent.d.ts +6 -0
- package/lib/content/fields/nestable/SeparatorContent.js +10 -0
- package/lib/content/fields/nestable/index.d.ts +10 -0
- package/lib/content/fields/nestable/index.js +13 -0
- package/lib/content/fields/slices/SharedSliceContent.d.ts +806 -0
- package/lib/content/fields/slices/SharedSliceContent.js +15 -0
- package/lib/content/fields/slices/index.d.ts +1 -0
- package/lib/content/fields/slices/index.js +4 -0
- package/lib/content/index.d.ts +1 -0
- package/lib/content/index.js +4 -0
- package/lib/customtypes/Comparators/SharedSlice.d.ts +260 -260
- package/lib/customtypes/Comparators/Variation.d.ts +258 -258
- package/lib/customtypes/CustomType.d.ts +932 -932
- package/lib/customtypes/Section.d.ts +932 -932
- package/lib/customtypes/widgets/Widget.d.ts +664 -664
- package/lib/customtypes/widgets/slices/Slices.d.ts +792 -792
- package/lib/documents/widgets/nestable/EmbedContent.d.ts +5 -6
- package/lib/documents/widgets/nestable/EmbedContent.js +5 -5
- package/lib/documents/widgets/nestable/ImageContent.d.ts +14 -14
- package/lib/documents/widgets/nestable/Link/ExternalLink.d.ts +4 -4
- package/lib/documents/widgets/nestable/Link/FileLink.d.ts +1 -1
- package/lib/documents/widgets/nestable/Link/FileLink.js +2 -1
- package/lib/documents/widgets/nestable/Link/LinkContent.d.ts +3 -3
- package/lib/documents/widgets/nestable/Link/index.d.ts +5 -5
- package/lib/documents/widgets/nestable/SeparatorContent.d.ts +4 -0
- package/lib/documents/widgets/nestable/SeparatorContent.js +5 -0
- package/lib/documents/widgets/nestable/StructuredTextContent/Block.d.ts +10 -10
- package/lib/utils/Objects.d.ts +3 -3
- package/lib/validators/TrimmedString.d.ts +5 -0
- package/lib/validators/TrimmedString.js +23 -0
- package/package.json +1 -1
- package/src/content/fields/GroupContent.ts +21 -0
- package/src/content/fields/index.ts +3 -0
- package/src/content/fields/nestable/BooleanContent.ts +11 -0
- package/src/content/fields/nestable/EmbedContent.ts +16 -0
- package/src/content/fields/nestable/FieldContent.ts +25 -0
- package/src/content/fields/nestable/GeoPointContent.ts +16 -0
- package/src/content/fields/nestable/ImageContent.ts +16 -0
- package/src/content/fields/nestable/IntegrationFieldContent.ts +11 -0
- package/src/content/fields/nestable/LinkContent.ts +68 -0
- package/src/content/fields/nestable/NestableContent.ts +25 -0
- package/src/content/fields/nestable/RichTextContent.ts +14 -0
- package/src/content/fields/nestable/SeparatorContent.ts +10 -0
- package/src/content/fields/nestable/index.ts +10 -0
- package/src/content/fields/slices/SharedSliceContent.ts +14 -0
- package/src/content/fields/slices/index.ts +1 -0
- package/src/content/index.ts +1 -0
- package/src/documents/widgets/nestable/EmbedContent.ts +1 -1
- package/src/documents/widgets/nestable/Link/FileLink.ts +2 -1
- package/src/documents/widgets/nestable/SeparatorContent.ts +5 -0
- package/src/utils/Objects.ts +13 -14
- package/src/validators/TrimmedString.ts +33 -0
|
@@ -1329,328 +1329,328 @@ export declare const StaticSlicesConfig: t.ExactC<t.PartialC<{
|
|
|
1329
1329
|
docURL: string;
|
|
1330
1330
|
version: string;
|
|
1331
1331
|
} & {
|
|
1332
|
-
display?: string
|
|
1332
|
+
display?: string;
|
|
1333
1333
|
primary?: {
|
|
1334
1334
|
[x: string]: ({
|
|
1335
1335
|
type: "Boolean";
|
|
1336
1336
|
} & {
|
|
1337
1337
|
config?: {
|
|
1338
1338
|
label?: string | null | undefined;
|
|
1339
|
-
default_value?: boolean
|
|
1340
|
-
placeholder_true?: string
|
|
1341
|
-
placeholder_false?: string
|
|
1342
|
-
}
|
|
1339
|
+
default_value?: boolean;
|
|
1340
|
+
placeholder_true?: string;
|
|
1341
|
+
placeholder_false?: string;
|
|
1342
|
+
};
|
|
1343
1343
|
}) | ({
|
|
1344
1344
|
type: "Color";
|
|
1345
1345
|
} & {
|
|
1346
1346
|
fieldset?: string | null | undefined;
|
|
1347
1347
|
config?: {
|
|
1348
1348
|
label?: string | null | undefined;
|
|
1349
|
-
placeholder?: string
|
|
1350
|
-
}
|
|
1349
|
+
placeholder?: string;
|
|
1350
|
+
};
|
|
1351
1351
|
}) | ({
|
|
1352
1352
|
type: "Date";
|
|
1353
1353
|
} & {
|
|
1354
1354
|
fieldset?: string | null | undefined;
|
|
1355
1355
|
config?: {
|
|
1356
1356
|
label?: string | null | undefined;
|
|
1357
|
-
placeholder?: string
|
|
1358
|
-
default?: string
|
|
1359
|
-
}
|
|
1357
|
+
placeholder?: string;
|
|
1358
|
+
default?: string;
|
|
1359
|
+
};
|
|
1360
1360
|
}) | ({
|
|
1361
1361
|
type: "Embed";
|
|
1362
1362
|
} & {
|
|
1363
1363
|
fieldset?: string | null | undefined;
|
|
1364
1364
|
config?: {
|
|
1365
1365
|
label?: string | null | undefined;
|
|
1366
|
-
placeholder?: string
|
|
1367
|
-
useAsTitle?: boolean
|
|
1368
|
-
}
|
|
1366
|
+
placeholder?: string;
|
|
1367
|
+
useAsTitle?: boolean;
|
|
1368
|
+
};
|
|
1369
1369
|
}) | ({
|
|
1370
1370
|
type: "GeoPoint";
|
|
1371
1371
|
} & {
|
|
1372
1372
|
fieldset?: string | null | undefined;
|
|
1373
1373
|
config?: {
|
|
1374
1374
|
label?: string | null | undefined;
|
|
1375
|
-
}
|
|
1375
|
+
};
|
|
1376
1376
|
}) | ({
|
|
1377
1377
|
type: "Image";
|
|
1378
1378
|
} & {
|
|
1379
1379
|
fieldset?: string | null | undefined;
|
|
1380
1380
|
config?: {
|
|
1381
1381
|
label?: string | null | undefined;
|
|
1382
|
-
placeholder?: string
|
|
1382
|
+
placeholder?: string;
|
|
1383
1383
|
constraint?: {
|
|
1384
|
-
width?: number | null
|
|
1385
|
-
height?: number | null
|
|
1386
|
-
}
|
|
1384
|
+
width?: number | null;
|
|
1385
|
+
height?: number | null;
|
|
1386
|
+
};
|
|
1387
1387
|
thumbnails?: readonly ({
|
|
1388
1388
|
name: string;
|
|
1389
1389
|
} & {
|
|
1390
|
-
width?: number | null
|
|
1391
|
-
height?: number | null
|
|
1392
|
-
})[]
|
|
1393
|
-
}
|
|
1390
|
+
width?: number | null;
|
|
1391
|
+
height?: number | null;
|
|
1392
|
+
})[];
|
|
1393
|
+
};
|
|
1394
1394
|
}) | ({
|
|
1395
1395
|
type: "IntegrationFields";
|
|
1396
1396
|
} & {
|
|
1397
1397
|
fieldset?: string | null | undefined;
|
|
1398
1398
|
config?: {
|
|
1399
1399
|
label?: string | null | undefined;
|
|
1400
|
-
placeholder?: string
|
|
1401
|
-
catalog?: string
|
|
1402
|
-
}
|
|
1400
|
+
placeholder?: string;
|
|
1401
|
+
catalog?: string;
|
|
1402
|
+
};
|
|
1403
1403
|
}) | ({
|
|
1404
1404
|
type: "Link";
|
|
1405
1405
|
} & {
|
|
1406
1406
|
fieldset?: string | null | undefined;
|
|
1407
1407
|
config?: {
|
|
1408
1408
|
label?: string | null | undefined;
|
|
1409
|
-
useAsTitle?: boolean
|
|
1410
|
-
placeholder?: string
|
|
1411
|
-
select?: "web" | "media" | "document" | null
|
|
1412
|
-
customtypes?: readonly string[]
|
|
1413
|
-
masks?: readonly string[]
|
|
1414
|
-
tags?: readonly string[]
|
|
1415
|
-
allowTargetBlank?: boolean
|
|
1416
|
-
}
|
|
1409
|
+
useAsTitle?: boolean;
|
|
1410
|
+
placeholder?: string;
|
|
1411
|
+
select?: "web" | "media" | "document" | null;
|
|
1412
|
+
customtypes?: readonly string[];
|
|
1413
|
+
masks?: readonly string[];
|
|
1414
|
+
tags?: readonly string[];
|
|
1415
|
+
allowTargetBlank?: boolean;
|
|
1416
|
+
};
|
|
1417
1417
|
}) | ({
|
|
1418
1418
|
type: "Number";
|
|
1419
1419
|
} & {
|
|
1420
1420
|
fieldset?: string | null | undefined;
|
|
1421
1421
|
config?: {
|
|
1422
1422
|
label?: string | null | undefined;
|
|
1423
|
-
placeholder?: string
|
|
1424
|
-
min?: number
|
|
1425
|
-
max?: number
|
|
1426
|
-
step?: number
|
|
1427
|
-
}
|
|
1423
|
+
placeholder?: string;
|
|
1424
|
+
min?: number;
|
|
1425
|
+
max?: number;
|
|
1426
|
+
step?: number;
|
|
1427
|
+
};
|
|
1428
1428
|
}) | ({
|
|
1429
1429
|
type: "Range";
|
|
1430
1430
|
} & {
|
|
1431
1431
|
fieldset?: string | null | undefined;
|
|
1432
1432
|
config?: {
|
|
1433
1433
|
label?: string | null | undefined;
|
|
1434
|
-
placeholder?: string
|
|
1435
|
-
min?: number
|
|
1436
|
-
max?: number
|
|
1437
|
-
step?: number
|
|
1438
|
-
}
|
|
1434
|
+
placeholder?: string;
|
|
1435
|
+
min?: number;
|
|
1436
|
+
max?: number;
|
|
1437
|
+
step?: number;
|
|
1438
|
+
};
|
|
1439
1439
|
}) | ({
|
|
1440
1440
|
type: "StructuredText";
|
|
1441
1441
|
} & {
|
|
1442
1442
|
fieldset?: string | null | undefined;
|
|
1443
1443
|
config?: {
|
|
1444
1444
|
label?: string | null | undefined;
|
|
1445
|
-
placeholder?: string
|
|
1446
|
-
useAsTitle?: boolean
|
|
1447
|
-
single?: string
|
|
1448
|
-
multi?: string
|
|
1445
|
+
placeholder?: string;
|
|
1446
|
+
useAsTitle?: boolean;
|
|
1447
|
+
single?: string;
|
|
1448
|
+
multi?: string;
|
|
1449
1449
|
imageConstraint?: {
|
|
1450
|
-
width?: number | null
|
|
1451
|
-
height?: number | null
|
|
1452
|
-
}
|
|
1453
|
-
labels?: readonly string[]
|
|
1454
|
-
allowTargetBlank?: boolean
|
|
1455
|
-
}
|
|
1450
|
+
width?: number | null;
|
|
1451
|
+
height?: number | null;
|
|
1452
|
+
};
|
|
1453
|
+
labels?: readonly string[];
|
|
1454
|
+
allowTargetBlank?: boolean;
|
|
1455
|
+
};
|
|
1456
1456
|
}) | ({
|
|
1457
1457
|
type: "Select";
|
|
1458
1458
|
} & {
|
|
1459
1459
|
fieldset?: string | null | undefined;
|
|
1460
1460
|
config?: {
|
|
1461
1461
|
label?: string | null | undefined;
|
|
1462
|
-
placeholder?: string
|
|
1463
|
-
default_value?: string
|
|
1464
|
-
options?: readonly string[]
|
|
1465
|
-
}
|
|
1462
|
+
placeholder?: string;
|
|
1463
|
+
default_value?: string;
|
|
1464
|
+
options?: readonly string[];
|
|
1465
|
+
};
|
|
1466
1466
|
}) | ({
|
|
1467
1467
|
type: "Separator";
|
|
1468
1468
|
} & {
|
|
1469
1469
|
config?: {
|
|
1470
1470
|
label?: string | null | undefined;
|
|
1471
|
-
}
|
|
1471
|
+
};
|
|
1472
1472
|
}) | ({
|
|
1473
1473
|
type: "Text";
|
|
1474
1474
|
} & {
|
|
1475
1475
|
fieldset?: string | null | undefined;
|
|
1476
1476
|
config?: {
|
|
1477
1477
|
label?: string | null | undefined;
|
|
1478
|
-
useAsTitle?: boolean
|
|
1479
|
-
placeholder?: string
|
|
1480
|
-
}
|
|
1478
|
+
useAsTitle?: boolean;
|
|
1479
|
+
placeholder?: string;
|
|
1480
|
+
};
|
|
1481
1481
|
}) | ({
|
|
1482
1482
|
type: "Timestamp";
|
|
1483
1483
|
} & {
|
|
1484
1484
|
fieldset?: string | null | undefined;
|
|
1485
1485
|
config?: {
|
|
1486
1486
|
label?: string | null | undefined;
|
|
1487
|
-
placeholder?: string
|
|
1488
|
-
default?: string
|
|
1489
|
-
}
|
|
1487
|
+
placeholder?: string;
|
|
1488
|
+
default?: string;
|
|
1489
|
+
};
|
|
1490
1490
|
});
|
|
1491
|
-
}
|
|
1491
|
+
};
|
|
1492
1492
|
items?: {
|
|
1493
1493
|
[x: string]: ({
|
|
1494
1494
|
type: "Boolean";
|
|
1495
1495
|
} & {
|
|
1496
1496
|
config?: {
|
|
1497
1497
|
label?: string | null | undefined;
|
|
1498
|
-
default_value?: boolean
|
|
1499
|
-
placeholder_true?: string
|
|
1500
|
-
placeholder_false?: string
|
|
1501
|
-
}
|
|
1498
|
+
default_value?: boolean;
|
|
1499
|
+
placeholder_true?: string;
|
|
1500
|
+
placeholder_false?: string;
|
|
1501
|
+
};
|
|
1502
1502
|
}) | ({
|
|
1503
1503
|
type: "Color";
|
|
1504
1504
|
} & {
|
|
1505
1505
|
fieldset?: string | null | undefined;
|
|
1506
1506
|
config?: {
|
|
1507
1507
|
label?: string | null | undefined;
|
|
1508
|
-
placeholder?: string
|
|
1509
|
-
}
|
|
1508
|
+
placeholder?: string;
|
|
1509
|
+
};
|
|
1510
1510
|
}) | ({
|
|
1511
1511
|
type: "Date";
|
|
1512
1512
|
} & {
|
|
1513
1513
|
fieldset?: string | null | undefined;
|
|
1514
1514
|
config?: {
|
|
1515
1515
|
label?: string | null | undefined;
|
|
1516
|
-
placeholder?: string
|
|
1517
|
-
default?: string
|
|
1518
|
-
}
|
|
1516
|
+
placeholder?: string;
|
|
1517
|
+
default?: string;
|
|
1518
|
+
};
|
|
1519
1519
|
}) | ({
|
|
1520
1520
|
type: "Embed";
|
|
1521
1521
|
} & {
|
|
1522
1522
|
fieldset?: string | null | undefined;
|
|
1523
1523
|
config?: {
|
|
1524
1524
|
label?: string | null | undefined;
|
|
1525
|
-
placeholder?: string
|
|
1526
|
-
useAsTitle?: boolean
|
|
1527
|
-
}
|
|
1525
|
+
placeholder?: string;
|
|
1526
|
+
useAsTitle?: boolean;
|
|
1527
|
+
};
|
|
1528
1528
|
}) | ({
|
|
1529
1529
|
type: "GeoPoint";
|
|
1530
1530
|
} & {
|
|
1531
1531
|
fieldset?: string | null | undefined;
|
|
1532
1532
|
config?: {
|
|
1533
1533
|
label?: string | null | undefined;
|
|
1534
|
-
}
|
|
1534
|
+
};
|
|
1535
1535
|
}) | ({
|
|
1536
1536
|
type: "Image";
|
|
1537
1537
|
} & {
|
|
1538
1538
|
fieldset?: string | null | undefined;
|
|
1539
1539
|
config?: {
|
|
1540
1540
|
label?: string | null | undefined;
|
|
1541
|
-
placeholder?: string
|
|
1541
|
+
placeholder?: string;
|
|
1542
1542
|
constraint?: {
|
|
1543
|
-
width?: number | null
|
|
1544
|
-
height?: number | null
|
|
1545
|
-
}
|
|
1543
|
+
width?: number | null;
|
|
1544
|
+
height?: number | null;
|
|
1545
|
+
};
|
|
1546
1546
|
thumbnails?: readonly ({
|
|
1547
1547
|
name: string;
|
|
1548
1548
|
} & {
|
|
1549
|
-
width?: number | null
|
|
1550
|
-
height?: number | null
|
|
1551
|
-
})[]
|
|
1552
|
-
}
|
|
1549
|
+
width?: number | null;
|
|
1550
|
+
height?: number | null;
|
|
1551
|
+
})[];
|
|
1552
|
+
};
|
|
1553
1553
|
}) | ({
|
|
1554
1554
|
type: "IntegrationFields";
|
|
1555
1555
|
} & {
|
|
1556
1556
|
fieldset?: string | null | undefined;
|
|
1557
1557
|
config?: {
|
|
1558
1558
|
label?: string | null | undefined;
|
|
1559
|
-
placeholder?: string
|
|
1560
|
-
catalog?: string
|
|
1561
|
-
}
|
|
1559
|
+
placeholder?: string;
|
|
1560
|
+
catalog?: string;
|
|
1561
|
+
};
|
|
1562
1562
|
}) | ({
|
|
1563
1563
|
type: "Link";
|
|
1564
1564
|
} & {
|
|
1565
1565
|
fieldset?: string | null | undefined;
|
|
1566
1566
|
config?: {
|
|
1567
1567
|
label?: string | null | undefined;
|
|
1568
|
-
useAsTitle?: boolean
|
|
1569
|
-
placeholder?: string
|
|
1570
|
-
select?: "web" | "media" | "document" | null
|
|
1571
|
-
customtypes?: readonly string[]
|
|
1572
|
-
masks?: readonly string[]
|
|
1573
|
-
tags?: readonly string[]
|
|
1574
|
-
allowTargetBlank?: boolean
|
|
1575
|
-
}
|
|
1568
|
+
useAsTitle?: boolean;
|
|
1569
|
+
placeholder?: string;
|
|
1570
|
+
select?: "web" | "media" | "document" | null;
|
|
1571
|
+
customtypes?: readonly string[];
|
|
1572
|
+
masks?: readonly string[];
|
|
1573
|
+
tags?: readonly string[];
|
|
1574
|
+
allowTargetBlank?: boolean;
|
|
1575
|
+
};
|
|
1576
1576
|
}) | ({
|
|
1577
1577
|
type: "Number";
|
|
1578
1578
|
} & {
|
|
1579
1579
|
fieldset?: string | null | undefined;
|
|
1580
1580
|
config?: {
|
|
1581
1581
|
label?: string | null | undefined;
|
|
1582
|
-
placeholder?: string
|
|
1583
|
-
min?: number
|
|
1584
|
-
max?: number
|
|
1585
|
-
step?: number
|
|
1586
|
-
}
|
|
1582
|
+
placeholder?: string;
|
|
1583
|
+
min?: number;
|
|
1584
|
+
max?: number;
|
|
1585
|
+
step?: number;
|
|
1586
|
+
};
|
|
1587
1587
|
}) | ({
|
|
1588
1588
|
type: "Range";
|
|
1589
1589
|
} & {
|
|
1590
1590
|
fieldset?: string | null | undefined;
|
|
1591
1591
|
config?: {
|
|
1592
1592
|
label?: string | null | undefined;
|
|
1593
|
-
placeholder?: string
|
|
1594
|
-
min?: number
|
|
1595
|
-
max?: number
|
|
1596
|
-
step?: number
|
|
1597
|
-
}
|
|
1593
|
+
placeholder?: string;
|
|
1594
|
+
min?: number;
|
|
1595
|
+
max?: number;
|
|
1596
|
+
step?: number;
|
|
1597
|
+
};
|
|
1598
1598
|
}) | ({
|
|
1599
1599
|
type: "StructuredText";
|
|
1600
1600
|
} & {
|
|
1601
1601
|
fieldset?: string | null | undefined;
|
|
1602
1602
|
config?: {
|
|
1603
1603
|
label?: string | null | undefined;
|
|
1604
|
-
placeholder?: string
|
|
1605
|
-
useAsTitle?: boolean
|
|
1606
|
-
single?: string
|
|
1607
|
-
multi?: string
|
|
1604
|
+
placeholder?: string;
|
|
1605
|
+
useAsTitle?: boolean;
|
|
1606
|
+
single?: string;
|
|
1607
|
+
multi?: string;
|
|
1608
1608
|
imageConstraint?: {
|
|
1609
|
-
width?: number | null
|
|
1610
|
-
height?: number | null
|
|
1611
|
-
}
|
|
1612
|
-
labels?: readonly string[]
|
|
1613
|
-
allowTargetBlank?: boolean
|
|
1614
|
-
}
|
|
1609
|
+
width?: number | null;
|
|
1610
|
+
height?: number | null;
|
|
1611
|
+
};
|
|
1612
|
+
labels?: readonly string[];
|
|
1613
|
+
allowTargetBlank?: boolean;
|
|
1614
|
+
};
|
|
1615
1615
|
}) | ({
|
|
1616
1616
|
type: "Select";
|
|
1617
1617
|
} & {
|
|
1618
1618
|
fieldset?: string | null | undefined;
|
|
1619
1619
|
config?: {
|
|
1620
1620
|
label?: string | null | undefined;
|
|
1621
|
-
placeholder?: string
|
|
1622
|
-
default_value?: string
|
|
1623
|
-
options?: readonly string[]
|
|
1624
|
-
}
|
|
1621
|
+
placeholder?: string;
|
|
1622
|
+
default_value?: string;
|
|
1623
|
+
options?: readonly string[];
|
|
1624
|
+
};
|
|
1625
1625
|
}) | ({
|
|
1626
1626
|
type: "Separator";
|
|
1627
1627
|
} & {
|
|
1628
1628
|
config?: {
|
|
1629
1629
|
label?: string | null | undefined;
|
|
1630
|
-
}
|
|
1630
|
+
};
|
|
1631
1631
|
}) | ({
|
|
1632
1632
|
type: "Text";
|
|
1633
1633
|
} & {
|
|
1634
1634
|
fieldset?: string | null | undefined;
|
|
1635
1635
|
config?: {
|
|
1636
1636
|
label?: string | null | undefined;
|
|
1637
|
-
useAsTitle?: boolean
|
|
1638
|
-
placeholder?: string
|
|
1639
|
-
}
|
|
1637
|
+
useAsTitle?: boolean;
|
|
1638
|
+
placeholder?: string;
|
|
1639
|
+
};
|
|
1640
1640
|
}) | ({
|
|
1641
1641
|
type: "Timestamp";
|
|
1642
1642
|
} & {
|
|
1643
1643
|
fieldset?: string | null | undefined;
|
|
1644
1644
|
config?: {
|
|
1645
1645
|
label?: string | null | undefined;
|
|
1646
|
-
placeholder?: string
|
|
1647
|
-
default?: string
|
|
1648
|
-
}
|
|
1646
|
+
placeholder?: string;
|
|
1647
|
+
default?: string;
|
|
1648
|
+
};
|
|
1649
1649
|
});
|
|
1650
|
-
}
|
|
1650
|
+
};
|
|
1651
1651
|
})[];
|
|
1652
1652
|
} & {
|
|
1653
|
-
description?: string
|
|
1653
|
+
description?: string;
|
|
1654
1654
|
}, unknown, unknown>]>>;
|
|
1655
1655
|
}>>;
|
|
1656
1656
|
export declare type StaticSlicesConfig = t.TypeOf<typeof StaticSlicesConfig>;
|
|
@@ -2329,663 +2329,663 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2329
2329
|
[x: string]: readonly ({
|
|
2330
2330
|
name: string;
|
|
2331
2331
|
} & {
|
|
2332
|
-
display?: string
|
|
2332
|
+
display?: string;
|
|
2333
2333
|
})[];
|
|
2334
|
-
} | null
|
|
2334
|
+
} | null;
|
|
2335
2335
|
choices?: {
|
|
2336
2336
|
[x: string]: ({
|
|
2337
2337
|
type: "Boolean";
|
|
2338
2338
|
} & {
|
|
2339
2339
|
config?: {
|
|
2340
2340
|
label?: string | null | undefined;
|
|
2341
|
-
default_value?: boolean
|
|
2342
|
-
placeholder_true?: string
|
|
2343
|
-
placeholder_false?: string
|
|
2344
|
-
}
|
|
2341
|
+
default_value?: boolean;
|
|
2342
|
+
placeholder_true?: string;
|
|
2343
|
+
placeholder_false?: string;
|
|
2344
|
+
};
|
|
2345
2345
|
}) | ({
|
|
2346
2346
|
type: "Color";
|
|
2347
2347
|
} & {
|
|
2348
2348
|
fieldset?: string | null | undefined;
|
|
2349
2349
|
config?: {
|
|
2350
2350
|
label?: string | null | undefined;
|
|
2351
|
-
placeholder?: string
|
|
2352
|
-
}
|
|
2351
|
+
placeholder?: string;
|
|
2352
|
+
};
|
|
2353
2353
|
}) | ({
|
|
2354
2354
|
type: "Date";
|
|
2355
2355
|
} & {
|
|
2356
2356
|
fieldset?: string | null | undefined;
|
|
2357
2357
|
config?: {
|
|
2358
2358
|
label?: string | null | undefined;
|
|
2359
|
-
placeholder?: string
|
|
2360
|
-
default?: string
|
|
2361
|
-
}
|
|
2359
|
+
placeholder?: string;
|
|
2360
|
+
default?: string;
|
|
2361
|
+
};
|
|
2362
2362
|
}) | ({
|
|
2363
2363
|
type: "Embed";
|
|
2364
2364
|
} & {
|
|
2365
2365
|
fieldset?: string | null | undefined;
|
|
2366
2366
|
config?: {
|
|
2367
2367
|
label?: string | null | undefined;
|
|
2368
|
-
placeholder?: string
|
|
2369
|
-
useAsTitle?: boolean
|
|
2370
|
-
}
|
|
2368
|
+
placeholder?: string;
|
|
2369
|
+
useAsTitle?: boolean;
|
|
2370
|
+
};
|
|
2371
2371
|
}) | ({
|
|
2372
2372
|
type: "GeoPoint";
|
|
2373
2373
|
} & {
|
|
2374
2374
|
fieldset?: string | null | undefined;
|
|
2375
2375
|
config?: {
|
|
2376
2376
|
label?: string | null | undefined;
|
|
2377
|
-
}
|
|
2377
|
+
};
|
|
2378
2378
|
}) | ({
|
|
2379
2379
|
type: "Image";
|
|
2380
2380
|
} & {
|
|
2381
2381
|
fieldset?: string | null | undefined;
|
|
2382
2382
|
config?: {
|
|
2383
2383
|
label?: string | null | undefined;
|
|
2384
|
-
placeholder?: string
|
|
2384
|
+
placeholder?: string;
|
|
2385
2385
|
constraint?: {
|
|
2386
|
-
width?: number | null
|
|
2387
|
-
height?: number | null
|
|
2388
|
-
}
|
|
2386
|
+
width?: number | null;
|
|
2387
|
+
height?: number | null;
|
|
2388
|
+
};
|
|
2389
2389
|
thumbnails?: readonly ({
|
|
2390
2390
|
name: string;
|
|
2391
2391
|
} & {
|
|
2392
|
-
width?: number | null
|
|
2393
|
-
height?: number | null
|
|
2394
|
-
})[]
|
|
2395
|
-
}
|
|
2392
|
+
width?: number | null;
|
|
2393
|
+
height?: number | null;
|
|
2394
|
+
})[];
|
|
2395
|
+
};
|
|
2396
2396
|
}) | ({
|
|
2397
2397
|
type: "IntegrationFields";
|
|
2398
2398
|
} & {
|
|
2399
2399
|
fieldset?: string | null | undefined;
|
|
2400
2400
|
config?: {
|
|
2401
2401
|
label?: string | null | undefined;
|
|
2402
|
-
placeholder?: string
|
|
2403
|
-
catalog?: string
|
|
2404
|
-
}
|
|
2402
|
+
placeholder?: string;
|
|
2403
|
+
catalog?: string;
|
|
2404
|
+
};
|
|
2405
2405
|
}) | ({
|
|
2406
2406
|
type: "Link";
|
|
2407
2407
|
} & {
|
|
2408
2408
|
fieldset?: string | null | undefined;
|
|
2409
2409
|
config?: {
|
|
2410
2410
|
label?: string | null | undefined;
|
|
2411
|
-
useAsTitle?: boolean
|
|
2412
|
-
placeholder?: string
|
|
2413
|
-
select?: "web" | "media" | "document" | null
|
|
2414
|
-
customtypes?: readonly string[]
|
|
2415
|
-
masks?: readonly string[]
|
|
2416
|
-
tags?: readonly string[]
|
|
2417
|
-
allowTargetBlank?: boolean
|
|
2418
|
-
}
|
|
2411
|
+
useAsTitle?: boolean;
|
|
2412
|
+
placeholder?: string;
|
|
2413
|
+
select?: "web" | "media" | "document" | null;
|
|
2414
|
+
customtypes?: readonly string[];
|
|
2415
|
+
masks?: readonly string[];
|
|
2416
|
+
tags?: readonly string[];
|
|
2417
|
+
allowTargetBlank?: boolean;
|
|
2418
|
+
};
|
|
2419
2419
|
}) | ({
|
|
2420
2420
|
type: "Number";
|
|
2421
2421
|
} & {
|
|
2422
2422
|
fieldset?: string | null | undefined;
|
|
2423
2423
|
config?: {
|
|
2424
2424
|
label?: string | null | undefined;
|
|
2425
|
-
placeholder?: string
|
|
2426
|
-
min?: number
|
|
2427
|
-
max?: number
|
|
2428
|
-
step?: number
|
|
2429
|
-
}
|
|
2425
|
+
placeholder?: string;
|
|
2426
|
+
min?: number;
|
|
2427
|
+
max?: number;
|
|
2428
|
+
step?: number;
|
|
2429
|
+
};
|
|
2430
2430
|
}) | ({
|
|
2431
2431
|
type: "Range";
|
|
2432
2432
|
} & {
|
|
2433
2433
|
fieldset?: string | null | undefined;
|
|
2434
2434
|
config?: {
|
|
2435
2435
|
label?: string | null | undefined;
|
|
2436
|
-
placeholder?: string
|
|
2437
|
-
min?: number
|
|
2438
|
-
max?: number
|
|
2439
|
-
step?: number
|
|
2440
|
-
}
|
|
2436
|
+
placeholder?: string;
|
|
2437
|
+
min?: number;
|
|
2438
|
+
max?: number;
|
|
2439
|
+
step?: number;
|
|
2440
|
+
};
|
|
2441
2441
|
}) | ({
|
|
2442
2442
|
type: "StructuredText";
|
|
2443
2443
|
} & {
|
|
2444
2444
|
fieldset?: string | null | undefined;
|
|
2445
2445
|
config?: {
|
|
2446
2446
|
label?: string | null | undefined;
|
|
2447
|
-
placeholder?: string
|
|
2448
|
-
useAsTitle?: boolean
|
|
2449
|
-
single?: string
|
|
2450
|
-
multi?: string
|
|
2447
|
+
placeholder?: string;
|
|
2448
|
+
useAsTitle?: boolean;
|
|
2449
|
+
single?: string;
|
|
2450
|
+
multi?: string;
|
|
2451
2451
|
imageConstraint?: {
|
|
2452
|
-
width?: number | null
|
|
2453
|
-
height?: number | null
|
|
2454
|
-
}
|
|
2455
|
-
labels?: readonly string[]
|
|
2456
|
-
allowTargetBlank?: boolean
|
|
2457
|
-
}
|
|
2452
|
+
width?: number | null;
|
|
2453
|
+
height?: number | null;
|
|
2454
|
+
};
|
|
2455
|
+
labels?: readonly string[];
|
|
2456
|
+
allowTargetBlank?: boolean;
|
|
2457
|
+
};
|
|
2458
2458
|
}) | ({
|
|
2459
2459
|
type: "Select";
|
|
2460
2460
|
} & {
|
|
2461
2461
|
fieldset?: string | null | undefined;
|
|
2462
2462
|
config?: {
|
|
2463
2463
|
label?: string | null | undefined;
|
|
2464
|
-
placeholder?: string
|
|
2465
|
-
default_value?: string
|
|
2466
|
-
options?: readonly string[]
|
|
2467
|
-
}
|
|
2464
|
+
placeholder?: string;
|
|
2465
|
+
default_value?: string;
|
|
2466
|
+
options?: readonly string[];
|
|
2467
|
+
};
|
|
2468
2468
|
}) | ({
|
|
2469
2469
|
type: "Separator";
|
|
2470
2470
|
} & {
|
|
2471
2471
|
config?: {
|
|
2472
2472
|
label?: string | null | undefined;
|
|
2473
|
-
}
|
|
2473
|
+
};
|
|
2474
2474
|
}) | ({
|
|
2475
2475
|
type: "Text";
|
|
2476
2476
|
} & {
|
|
2477
2477
|
fieldset?: string | null | undefined;
|
|
2478
2478
|
config?: {
|
|
2479
2479
|
label?: string | null | undefined;
|
|
2480
|
-
useAsTitle?: boolean
|
|
2481
|
-
placeholder?: string
|
|
2482
|
-
}
|
|
2480
|
+
useAsTitle?: boolean;
|
|
2481
|
+
placeholder?: string;
|
|
2482
|
+
};
|
|
2483
2483
|
}) | ({
|
|
2484
2484
|
type: "Timestamp";
|
|
2485
2485
|
} & {
|
|
2486
2486
|
fieldset?: string | null | undefined;
|
|
2487
2487
|
config?: {
|
|
2488
2488
|
label?: string | null | undefined;
|
|
2489
|
-
placeholder?: string
|
|
2490
|
-
default?: string
|
|
2491
|
-
}
|
|
2489
|
+
placeholder?: string;
|
|
2490
|
+
default?: string;
|
|
2491
|
+
};
|
|
2492
2492
|
}) | ({
|
|
2493
2493
|
type: "Slice";
|
|
2494
2494
|
} & {
|
|
2495
2495
|
fieldset?: string | null | undefined;
|
|
2496
|
-
description?: string
|
|
2497
|
-
icon?: string
|
|
2498
|
-
display?: string
|
|
2496
|
+
description?: string;
|
|
2497
|
+
icon?: string;
|
|
2498
|
+
display?: string;
|
|
2499
2499
|
"non-repeat"?: {
|
|
2500
2500
|
[x: string]: ({
|
|
2501
2501
|
type: "Boolean";
|
|
2502
2502
|
} & {
|
|
2503
2503
|
config?: {
|
|
2504
2504
|
label?: string | null | undefined;
|
|
2505
|
-
default_value?: boolean
|
|
2506
|
-
placeholder_true?: string
|
|
2507
|
-
placeholder_false?: string
|
|
2508
|
-
}
|
|
2505
|
+
default_value?: boolean;
|
|
2506
|
+
placeholder_true?: string;
|
|
2507
|
+
placeholder_false?: string;
|
|
2508
|
+
};
|
|
2509
2509
|
}) | ({
|
|
2510
2510
|
type: "Color";
|
|
2511
2511
|
} & {
|
|
2512
2512
|
fieldset?: string | null | undefined;
|
|
2513
2513
|
config?: {
|
|
2514
2514
|
label?: string | null | undefined;
|
|
2515
|
-
placeholder?: string
|
|
2516
|
-
}
|
|
2515
|
+
placeholder?: string;
|
|
2516
|
+
};
|
|
2517
2517
|
}) | ({
|
|
2518
2518
|
type: "Date";
|
|
2519
2519
|
} & {
|
|
2520
2520
|
fieldset?: string | null | undefined;
|
|
2521
2521
|
config?: {
|
|
2522
2522
|
label?: string | null | undefined;
|
|
2523
|
-
placeholder?: string
|
|
2524
|
-
default?: string
|
|
2525
|
-
}
|
|
2523
|
+
placeholder?: string;
|
|
2524
|
+
default?: string;
|
|
2525
|
+
};
|
|
2526
2526
|
}) | ({
|
|
2527
2527
|
type: "Embed";
|
|
2528
2528
|
} & {
|
|
2529
2529
|
fieldset?: string | null | undefined;
|
|
2530
2530
|
config?: {
|
|
2531
2531
|
label?: string | null | undefined;
|
|
2532
|
-
placeholder?: string
|
|
2533
|
-
useAsTitle?: boolean
|
|
2534
|
-
}
|
|
2532
|
+
placeholder?: string;
|
|
2533
|
+
useAsTitle?: boolean;
|
|
2534
|
+
};
|
|
2535
2535
|
}) | ({
|
|
2536
2536
|
type: "GeoPoint";
|
|
2537
2537
|
} & {
|
|
2538
2538
|
fieldset?: string | null | undefined;
|
|
2539
2539
|
config?: {
|
|
2540
2540
|
label?: string | null | undefined;
|
|
2541
|
-
}
|
|
2541
|
+
};
|
|
2542
2542
|
}) | ({
|
|
2543
2543
|
type: "Image";
|
|
2544
2544
|
} & {
|
|
2545
2545
|
fieldset?: string | null | undefined;
|
|
2546
2546
|
config?: {
|
|
2547
2547
|
label?: string | null | undefined;
|
|
2548
|
-
placeholder?: string
|
|
2548
|
+
placeholder?: string;
|
|
2549
2549
|
constraint?: {
|
|
2550
|
-
width?: number | null
|
|
2551
|
-
height?: number | null
|
|
2552
|
-
}
|
|
2550
|
+
width?: number | null;
|
|
2551
|
+
height?: number | null;
|
|
2552
|
+
};
|
|
2553
2553
|
thumbnails?: readonly ({
|
|
2554
2554
|
name: string;
|
|
2555
2555
|
} & {
|
|
2556
|
-
width?: number | null
|
|
2557
|
-
height?: number | null
|
|
2558
|
-
})[]
|
|
2559
|
-
}
|
|
2556
|
+
width?: number | null;
|
|
2557
|
+
height?: number | null;
|
|
2558
|
+
})[];
|
|
2559
|
+
};
|
|
2560
2560
|
}) | ({
|
|
2561
2561
|
type: "IntegrationFields";
|
|
2562
2562
|
} & {
|
|
2563
2563
|
fieldset?: string | null | undefined;
|
|
2564
2564
|
config?: {
|
|
2565
2565
|
label?: string | null | undefined;
|
|
2566
|
-
placeholder?: string
|
|
2567
|
-
catalog?: string
|
|
2568
|
-
}
|
|
2566
|
+
placeholder?: string;
|
|
2567
|
+
catalog?: string;
|
|
2568
|
+
};
|
|
2569
2569
|
}) | ({
|
|
2570
2570
|
type: "Link";
|
|
2571
2571
|
} & {
|
|
2572
2572
|
fieldset?: string | null | undefined;
|
|
2573
2573
|
config?: {
|
|
2574
2574
|
label?: string | null | undefined;
|
|
2575
|
-
useAsTitle?: boolean
|
|
2576
|
-
placeholder?: string
|
|
2577
|
-
select?: "web" | "media" | "document" | null
|
|
2578
|
-
customtypes?: readonly string[]
|
|
2579
|
-
masks?: readonly string[]
|
|
2580
|
-
tags?: readonly string[]
|
|
2581
|
-
allowTargetBlank?: boolean
|
|
2582
|
-
}
|
|
2575
|
+
useAsTitle?: boolean;
|
|
2576
|
+
placeholder?: string;
|
|
2577
|
+
select?: "web" | "media" | "document" | null;
|
|
2578
|
+
customtypes?: readonly string[];
|
|
2579
|
+
masks?: readonly string[];
|
|
2580
|
+
tags?: readonly string[];
|
|
2581
|
+
allowTargetBlank?: boolean;
|
|
2582
|
+
};
|
|
2583
2583
|
}) | ({
|
|
2584
2584
|
type: "Number";
|
|
2585
2585
|
} & {
|
|
2586
2586
|
fieldset?: string | null | undefined;
|
|
2587
2587
|
config?: {
|
|
2588
2588
|
label?: string | null | undefined;
|
|
2589
|
-
placeholder?: string
|
|
2590
|
-
min?: number
|
|
2591
|
-
max?: number
|
|
2592
|
-
step?: number
|
|
2593
|
-
}
|
|
2589
|
+
placeholder?: string;
|
|
2590
|
+
min?: number;
|
|
2591
|
+
max?: number;
|
|
2592
|
+
step?: number;
|
|
2593
|
+
};
|
|
2594
2594
|
}) | ({
|
|
2595
2595
|
type: "Range";
|
|
2596
2596
|
} & {
|
|
2597
2597
|
fieldset?: string | null | undefined;
|
|
2598
2598
|
config?: {
|
|
2599
2599
|
label?: string | null | undefined;
|
|
2600
|
-
placeholder?: string
|
|
2601
|
-
min?: number
|
|
2602
|
-
max?: number
|
|
2603
|
-
step?: number
|
|
2604
|
-
}
|
|
2600
|
+
placeholder?: string;
|
|
2601
|
+
min?: number;
|
|
2602
|
+
max?: number;
|
|
2603
|
+
step?: number;
|
|
2604
|
+
};
|
|
2605
2605
|
}) | ({
|
|
2606
2606
|
type: "StructuredText";
|
|
2607
2607
|
} & {
|
|
2608
2608
|
fieldset?: string | null | undefined;
|
|
2609
2609
|
config?: {
|
|
2610
2610
|
label?: string | null | undefined;
|
|
2611
|
-
placeholder?: string
|
|
2612
|
-
useAsTitle?: boolean
|
|
2613
|
-
single?: string
|
|
2614
|
-
multi?: string
|
|
2611
|
+
placeholder?: string;
|
|
2612
|
+
useAsTitle?: boolean;
|
|
2613
|
+
single?: string;
|
|
2614
|
+
multi?: string;
|
|
2615
2615
|
imageConstraint?: {
|
|
2616
|
-
width?: number | null
|
|
2617
|
-
height?: number | null
|
|
2618
|
-
}
|
|
2619
|
-
labels?: readonly string[]
|
|
2620
|
-
allowTargetBlank?: boolean
|
|
2621
|
-
}
|
|
2616
|
+
width?: number | null;
|
|
2617
|
+
height?: number | null;
|
|
2618
|
+
};
|
|
2619
|
+
labels?: readonly string[];
|
|
2620
|
+
allowTargetBlank?: boolean;
|
|
2621
|
+
};
|
|
2622
2622
|
}) | ({
|
|
2623
2623
|
type: "Select";
|
|
2624
2624
|
} & {
|
|
2625
2625
|
fieldset?: string | null | undefined;
|
|
2626
2626
|
config?: {
|
|
2627
2627
|
label?: string | null | undefined;
|
|
2628
|
-
placeholder?: string
|
|
2629
|
-
default_value?: string
|
|
2630
|
-
options?: readonly string[]
|
|
2631
|
-
}
|
|
2628
|
+
placeholder?: string;
|
|
2629
|
+
default_value?: string;
|
|
2630
|
+
options?: readonly string[];
|
|
2631
|
+
};
|
|
2632
2632
|
}) | ({
|
|
2633
2633
|
type: "Separator";
|
|
2634
2634
|
} & {
|
|
2635
2635
|
config?: {
|
|
2636
2636
|
label?: string | null | undefined;
|
|
2637
|
-
}
|
|
2637
|
+
};
|
|
2638
2638
|
}) | ({
|
|
2639
2639
|
type: "Text";
|
|
2640
2640
|
} & {
|
|
2641
2641
|
fieldset?: string | null | undefined;
|
|
2642
2642
|
config?: {
|
|
2643
2643
|
label?: string | null | undefined;
|
|
2644
|
-
useAsTitle?: boolean
|
|
2645
|
-
placeholder?: string
|
|
2646
|
-
}
|
|
2644
|
+
useAsTitle?: boolean;
|
|
2645
|
+
placeholder?: string;
|
|
2646
|
+
};
|
|
2647
2647
|
}) | ({
|
|
2648
2648
|
type: "Timestamp";
|
|
2649
2649
|
} & {
|
|
2650
2650
|
fieldset?: string | null | undefined;
|
|
2651
2651
|
config?: {
|
|
2652
2652
|
label?: string | null | undefined;
|
|
2653
|
-
placeholder?: string
|
|
2654
|
-
default?: string
|
|
2655
|
-
}
|
|
2653
|
+
placeholder?: string;
|
|
2654
|
+
default?: string;
|
|
2655
|
+
};
|
|
2656
2656
|
});
|
|
2657
|
-
}
|
|
2657
|
+
};
|
|
2658
2658
|
repeat?: {
|
|
2659
2659
|
[x: string]: ({
|
|
2660
2660
|
type: "Boolean";
|
|
2661
2661
|
} & {
|
|
2662
2662
|
config?: {
|
|
2663
2663
|
label?: string | null | undefined;
|
|
2664
|
-
default_value?: boolean
|
|
2665
|
-
placeholder_true?: string
|
|
2666
|
-
placeholder_false?: string
|
|
2667
|
-
}
|
|
2664
|
+
default_value?: boolean;
|
|
2665
|
+
placeholder_true?: string;
|
|
2666
|
+
placeholder_false?: string;
|
|
2667
|
+
};
|
|
2668
2668
|
}) | ({
|
|
2669
2669
|
type: "Color";
|
|
2670
2670
|
} & {
|
|
2671
2671
|
fieldset?: string | null | undefined;
|
|
2672
2672
|
config?: {
|
|
2673
2673
|
label?: string | null | undefined;
|
|
2674
|
-
placeholder?: string
|
|
2675
|
-
}
|
|
2674
|
+
placeholder?: string;
|
|
2675
|
+
};
|
|
2676
2676
|
}) | ({
|
|
2677
2677
|
type: "Date";
|
|
2678
2678
|
} & {
|
|
2679
2679
|
fieldset?: string | null | undefined;
|
|
2680
2680
|
config?: {
|
|
2681
2681
|
label?: string | null | undefined;
|
|
2682
|
-
placeholder?: string
|
|
2683
|
-
default?: string
|
|
2684
|
-
}
|
|
2682
|
+
placeholder?: string;
|
|
2683
|
+
default?: string;
|
|
2684
|
+
};
|
|
2685
2685
|
}) | ({
|
|
2686
2686
|
type: "Embed";
|
|
2687
2687
|
} & {
|
|
2688
2688
|
fieldset?: string | null | undefined;
|
|
2689
2689
|
config?: {
|
|
2690
2690
|
label?: string | null | undefined;
|
|
2691
|
-
placeholder?: string
|
|
2692
|
-
useAsTitle?: boolean
|
|
2693
|
-
}
|
|
2691
|
+
placeholder?: string;
|
|
2692
|
+
useAsTitle?: boolean;
|
|
2693
|
+
};
|
|
2694
2694
|
}) | ({
|
|
2695
2695
|
type: "GeoPoint";
|
|
2696
2696
|
} & {
|
|
2697
2697
|
fieldset?: string | null | undefined;
|
|
2698
2698
|
config?: {
|
|
2699
2699
|
label?: string | null | undefined;
|
|
2700
|
-
}
|
|
2700
|
+
};
|
|
2701
2701
|
}) | ({
|
|
2702
2702
|
type: "Image";
|
|
2703
2703
|
} & {
|
|
2704
2704
|
fieldset?: string | null | undefined;
|
|
2705
2705
|
config?: {
|
|
2706
2706
|
label?: string | null | undefined;
|
|
2707
|
-
placeholder?: string
|
|
2707
|
+
placeholder?: string;
|
|
2708
2708
|
constraint?: {
|
|
2709
|
-
width?: number | null
|
|
2710
|
-
height?: number | null
|
|
2711
|
-
}
|
|
2709
|
+
width?: number | null;
|
|
2710
|
+
height?: number | null;
|
|
2711
|
+
};
|
|
2712
2712
|
thumbnails?: readonly ({
|
|
2713
2713
|
name: string;
|
|
2714
2714
|
} & {
|
|
2715
|
-
width?: number | null
|
|
2716
|
-
height?: number | null
|
|
2717
|
-
})[]
|
|
2718
|
-
}
|
|
2715
|
+
width?: number | null;
|
|
2716
|
+
height?: number | null;
|
|
2717
|
+
})[];
|
|
2718
|
+
};
|
|
2719
2719
|
}) | ({
|
|
2720
2720
|
type: "IntegrationFields";
|
|
2721
2721
|
} & {
|
|
2722
2722
|
fieldset?: string | null | undefined;
|
|
2723
2723
|
config?: {
|
|
2724
2724
|
label?: string | null | undefined;
|
|
2725
|
-
placeholder?: string
|
|
2726
|
-
catalog?: string
|
|
2727
|
-
}
|
|
2725
|
+
placeholder?: string;
|
|
2726
|
+
catalog?: string;
|
|
2727
|
+
};
|
|
2728
2728
|
}) | ({
|
|
2729
2729
|
type: "Link";
|
|
2730
2730
|
} & {
|
|
2731
2731
|
fieldset?: string | null | undefined;
|
|
2732
2732
|
config?: {
|
|
2733
2733
|
label?: string | null | undefined;
|
|
2734
|
-
useAsTitle?: boolean
|
|
2735
|
-
placeholder?: string
|
|
2736
|
-
select?: "web" | "media" | "document" | null
|
|
2737
|
-
customtypes?: readonly string[]
|
|
2738
|
-
masks?: readonly string[]
|
|
2739
|
-
tags?: readonly string[]
|
|
2740
|
-
allowTargetBlank?: boolean
|
|
2741
|
-
}
|
|
2734
|
+
useAsTitle?: boolean;
|
|
2735
|
+
placeholder?: string;
|
|
2736
|
+
select?: "web" | "media" | "document" | null;
|
|
2737
|
+
customtypes?: readonly string[];
|
|
2738
|
+
masks?: readonly string[];
|
|
2739
|
+
tags?: readonly string[];
|
|
2740
|
+
allowTargetBlank?: boolean;
|
|
2741
|
+
};
|
|
2742
2742
|
}) | ({
|
|
2743
2743
|
type: "Number";
|
|
2744
2744
|
} & {
|
|
2745
2745
|
fieldset?: string | null | undefined;
|
|
2746
2746
|
config?: {
|
|
2747
2747
|
label?: string | null | undefined;
|
|
2748
|
-
placeholder?: string
|
|
2749
|
-
min?: number
|
|
2750
|
-
max?: number
|
|
2751
|
-
step?: number
|
|
2752
|
-
}
|
|
2748
|
+
placeholder?: string;
|
|
2749
|
+
min?: number;
|
|
2750
|
+
max?: number;
|
|
2751
|
+
step?: number;
|
|
2752
|
+
};
|
|
2753
2753
|
}) | ({
|
|
2754
2754
|
type: "Range";
|
|
2755
2755
|
} & {
|
|
2756
2756
|
fieldset?: string | null | undefined;
|
|
2757
2757
|
config?: {
|
|
2758
2758
|
label?: string | null | undefined;
|
|
2759
|
-
placeholder?: string
|
|
2760
|
-
min?: number
|
|
2761
|
-
max?: number
|
|
2762
|
-
step?: number
|
|
2763
|
-
}
|
|
2759
|
+
placeholder?: string;
|
|
2760
|
+
min?: number;
|
|
2761
|
+
max?: number;
|
|
2762
|
+
step?: number;
|
|
2763
|
+
};
|
|
2764
2764
|
}) | ({
|
|
2765
2765
|
type: "StructuredText";
|
|
2766
2766
|
} & {
|
|
2767
2767
|
fieldset?: string | null | undefined;
|
|
2768
2768
|
config?: {
|
|
2769
2769
|
label?: string | null | undefined;
|
|
2770
|
-
placeholder?: string
|
|
2771
|
-
useAsTitle?: boolean
|
|
2772
|
-
single?: string
|
|
2773
|
-
multi?: string
|
|
2770
|
+
placeholder?: string;
|
|
2771
|
+
useAsTitle?: boolean;
|
|
2772
|
+
single?: string;
|
|
2773
|
+
multi?: string;
|
|
2774
2774
|
imageConstraint?: {
|
|
2775
|
-
width?: number | null
|
|
2776
|
-
height?: number | null
|
|
2777
|
-
}
|
|
2778
|
-
labels?: readonly string[]
|
|
2779
|
-
allowTargetBlank?: boolean
|
|
2780
|
-
}
|
|
2775
|
+
width?: number | null;
|
|
2776
|
+
height?: number | null;
|
|
2777
|
+
};
|
|
2778
|
+
labels?: readonly string[];
|
|
2779
|
+
allowTargetBlank?: boolean;
|
|
2780
|
+
};
|
|
2781
2781
|
}) | ({
|
|
2782
2782
|
type: "Select";
|
|
2783
2783
|
} & {
|
|
2784
2784
|
fieldset?: string | null | undefined;
|
|
2785
2785
|
config?: {
|
|
2786
2786
|
label?: string | null | undefined;
|
|
2787
|
-
placeholder?: string
|
|
2788
|
-
default_value?: string
|
|
2789
|
-
options?: readonly string[]
|
|
2790
|
-
}
|
|
2787
|
+
placeholder?: string;
|
|
2788
|
+
default_value?: string;
|
|
2789
|
+
options?: readonly string[];
|
|
2790
|
+
};
|
|
2791
2791
|
}) | ({
|
|
2792
2792
|
type: "Separator";
|
|
2793
2793
|
} & {
|
|
2794
2794
|
config?: {
|
|
2795
2795
|
label?: string | null | undefined;
|
|
2796
|
-
}
|
|
2796
|
+
};
|
|
2797
2797
|
}) | ({
|
|
2798
2798
|
type: "Text";
|
|
2799
2799
|
} & {
|
|
2800
2800
|
fieldset?: string | null | undefined;
|
|
2801
2801
|
config?: {
|
|
2802
2802
|
label?: string | null | undefined;
|
|
2803
|
-
useAsTitle?: boolean
|
|
2804
|
-
placeholder?: string
|
|
2805
|
-
}
|
|
2803
|
+
useAsTitle?: boolean;
|
|
2804
|
+
placeholder?: string;
|
|
2805
|
+
};
|
|
2806
2806
|
}) | ({
|
|
2807
2807
|
type: "Timestamp";
|
|
2808
2808
|
} & {
|
|
2809
2809
|
fieldset?: string | null | undefined;
|
|
2810
2810
|
config?: {
|
|
2811
2811
|
label?: string | null | undefined;
|
|
2812
|
-
placeholder?: string
|
|
2813
|
-
default?: string
|
|
2814
|
-
}
|
|
2812
|
+
placeholder?: string;
|
|
2813
|
+
default?: string;
|
|
2814
|
+
};
|
|
2815
2815
|
});
|
|
2816
|
-
}
|
|
2816
|
+
};
|
|
2817
2817
|
config?: {
|
|
2818
2818
|
label?: string | null | undefined;
|
|
2819
|
-
}
|
|
2819
|
+
};
|
|
2820
2820
|
}) | ({
|
|
2821
2821
|
type: "Group";
|
|
2822
2822
|
} & {
|
|
2823
2823
|
fieldset?: string | null | undefined;
|
|
2824
|
-
icon?: string
|
|
2825
|
-
description?: string
|
|
2824
|
+
icon?: string;
|
|
2825
|
+
description?: string;
|
|
2826
2826
|
config?: {
|
|
2827
2827
|
label?: string | null | undefined;
|
|
2828
|
-
repeat?: boolean
|
|
2828
|
+
repeat?: boolean;
|
|
2829
2829
|
fields?: {
|
|
2830
2830
|
[x: string]: ({
|
|
2831
2831
|
type: "Boolean";
|
|
2832
2832
|
} & {
|
|
2833
2833
|
config?: {
|
|
2834
2834
|
label?: string | null | undefined;
|
|
2835
|
-
default_value?: boolean
|
|
2836
|
-
placeholder_true?: string
|
|
2837
|
-
placeholder_false?: string
|
|
2838
|
-
}
|
|
2835
|
+
default_value?: boolean;
|
|
2836
|
+
placeholder_true?: string;
|
|
2837
|
+
placeholder_false?: string;
|
|
2838
|
+
};
|
|
2839
2839
|
}) | ({
|
|
2840
2840
|
type: "Color";
|
|
2841
2841
|
} & {
|
|
2842
2842
|
fieldset?: string | null | undefined;
|
|
2843
2843
|
config?: {
|
|
2844
2844
|
label?: string | null | undefined;
|
|
2845
|
-
placeholder?: string
|
|
2846
|
-
}
|
|
2845
|
+
placeholder?: string;
|
|
2846
|
+
};
|
|
2847
2847
|
}) | ({
|
|
2848
2848
|
type: "Date";
|
|
2849
2849
|
} & {
|
|
2850
2850
|
fieldset?: string | null | undefined;
|
|
2851
2851
|
config?: {
|
|
2852
2852
|
label?: string | null | undefined;
|
|
2853
|
-
placeholder?: string
|
|
2854
|
-
default?: string
|
|
2855
|
-
}
|
|
2853
|
+
placeholder?: string;
|
|
2854
|
+
default?: string;
|
|
2855
|
+
};
|
|
2856
2856
|
}) | ({
|
|
2857
2857
|
type: "Embed";
|
|
2858
2858
|
} & {
|
|
2859
2859
|
fieldset?: string | null | undefined;
|
|
2860
2860
|
config?: {
|
|
2861
2861
|
label?: string | null | undefined;
|
|
2862
|
-
placeholder?: string
|
|
2863
|
-
useAsTitle?: boolean
|
|
2864
|
-
}
|
|
2862
|
+
placeholder?: string;
|
|
2863
|
+
useAsTitle?: boolean;
|
|
2864
|
+
};
|
|
2865
2865
|
}) | ({
|
|
2866
2866
|
type: "GeoPoint";
|
|
2867
2867
|
} & {
|
|
2868
2868
|
fieldset?: string | null | undefined;
|
|
2869
2869
|
config?: {
|
|
2870
2870
|
label?: string | null | undefined;
|
|
2871
|
-
}
|
|
2871
|
+
};
|
|
2872
2872
|
}) | ({
|
|
2873
2873
|
type: "Image";
|
|
2874
2874
|
} & {
|
|
2875
2875
|
fieldset?: string | null | undefined;
|
|
2876
2876
|
config?: {
|
|
2877
2877
|
label?: string | null | undefined;
|
|
2878
|
-
placeholder?: string
|
|
2878
|
+
placeholder?: string;
|
|
2879
2879
|
constraint?: {
|
|
2880
|
-
width?: number | null
|
|
2881
|
-
height?: number | null
|
|
2882
|
-
}
|
|
2880
|
+
width?: number | null;
|
|
2881
|
+
height?: number | null;
|
|
2882
|
+
};
|
|
2883
2883
|
thumbnails?: readonly ({
|
|
2884
2884
|
name: string;
|
|
2885
2885
|
} & {
|
|
2886
|
-
width?: number | null
|
|
2887
|
-
height?: number | null
|
|
2888
|
-
})[]
|
|
2889
|
-
}
|
|
2886
|
+
width?: number | null;
|
|
2887
|
+
height?: number | null;
|
|
2888
|
+
})[];
|
|
2889
|
+
};
|
|
2890
2890
|
}) | ({
|
|
2891
2891
|
type: "IntegrationFields";
|
|
2892
2892
|
} & {
|
|
2893
2893
|
fieldset?: string | null | undefined;
|
|
2894
2894
|
config?: {
|
|
2895
2895
|
label?: string | null | undefined;
|
|
2896
|
-
placeholder?: string
|
|
2897
|
-
catalog?: string
|
|
2898
|
-
}
|
|
2896
|
+
placeholder?: string;
|
|
2897
|
+
catalog?: string;
|
|
2898
|
+
};
|
|
2899
2899
|
}) | ({
|
|
2900
2900
|
type: "Link";
|
|
2901
2901
|
} & {
|
|
2902
2902
|
fieldset?: string | null | undefined;
|
|
2903
2903
|
config?: {
|
|
2904
2904
|
label?: string | null | undefined;
|
|
2905
|
-
useAsTitle?: boolean
|
|
2906
|
-
placeholder?: string
|
|
2907
|
-
select?: "web" | "media" | "document" | null
|
|
2908
|
-
customtypes?: readonly string[]
|
|
2909
|
-
masks?: readonly string[]
|
|
2910
|
-
tags?: readonly string[]
|
|
2911
|
-
allowTargetBlank?: boolean
|
|
2912
|
-
}
|
|
2905
|
+
useAsTitle?: boolean;
|
|
2906
|
+
placeholder?: string;
|
|
2907
|
+
select?: "web" | "media" | "document" | null;
|
|
2908
|
+
customtypes?: readonly string[];
|
|
2909
|
+
masks?: readonly string[];
|
|
2910
|
+
tags?: readonly string[];
|
|
2911
|
+
allowTargetBlank?: boolean;
|
|
2912
|
+
};
|
|
2913
2913
|
}) | ({
|
|
2914
2914
|
type: "Number";
|
|
2915
2915
|
} & {
|
|
2916
2916
|
fieldset?: string | null | undefined;
|
|
2917
2917
|
config?: {
|
|
2918
2918
|
label?: string | null | undefined;
|
|
2919
|
-
placeholder?: string
|
|
2920
|
-
min?: number
|
|
2921
|
-
max?: number
|
|
2922
|
-
step?: number
|
|
2923
|
-
}
|
|
2919
|
+
placeholder?: string;
|
|
2920
|
+
min?: number;
|
|
2921
|
+
max?: number;
|
|
2922
|
+
step?: number;
|
|
2923
|
+
};
|
|
2924
2924
|
}) | ({
|
|
2925
2925
|
type: "Range";
|
|
2926
2926
|
} & {
|
|
2927
2927
|
fieldset?: string | null | undefined;
|
|
2928
2928
|
config?: {
|
|
2929
2929
|
label?: string | null | undefined;
|
|
2930
|
-
placeholder?: string
|
|
2931
|
-
min?: number
|
|
2932
|
-
max?: number
|
|
2933
|
-
step?: number
|
|
2934
|
-
}
|
|
2930
|
+
placeholder?: string;
|
|
2931
|
+
min?: number;
|
|
2932
|
+
max?: number;
|
|
2933
|
+
step?: number;
|
|
2934
|
+
};
|
|
2935
2935
|
}) | ({
|
|
2936
2936
|
type: "StructuredText";
|
|
2937
2937
|
} & {
|
|
2938
2938
|
fieldset?: string | null | undefined;
|
|
2939
2939
|
config?: {
|
|
2940
2940
|
label?: string | null | undefined;
|
|
2941
|
-
placeholder?: string
|
|
2942
|
-
useAsTitle?: boolean
|
|
2943
|
-
single?: string
|
|
2944
|
-
multi?: string
|
|
2941
|
+
placeholder?: string;
|
|
2942
|
+
useAsTitle?: boolean;
|
|
2943
|
+
single?: string;
|
|
2944
|
+
multi?: string;
|
|
2945
2945
|
imageConstraint?: {
|
|
2946
|
-
width?: number | null
|
|
2947
|
-
height?: number | null
|
|
2948
|
-
}
|
|
2949
|
-
labels?: readonly string[]
|
|
2950
|
-
allowTargetBlank?: boolean
|
|
2951
|
-
}
|
|
2946
|
+
width?: number | null;
|
|
2947
|
+
height?: number | null;
|
|
2948
|
+
};
|
|
2949
|
+
labels?: readonly string[];
|
|
2950
|
+
allowTargetBlank?: boolean;
|
|
2951
|
+
};
|
|
2952
2952
|
}) | ({
|
|
2953
2953
|
type: "Select";
|
|
2954
2954
|
} & {
|
|
2955
2955
|
fieldset?: string | null | undefined;
|
|
2956
2956
|
config?: {
|
|
2957
2957
|
label?: string | null | undefined;
|
|
2958
|
-
placeholder?: string
|
|
2959
|
-
default_value?: string
|
|
2960
|
-
options?: readonly string[]
|
|
2961
|
-
}
|
|
2958
|
+
placeholder?: string;
|
|
2959
|
+
default_value?: string;
|
|
2960
|
+
options?: readonly string[];
|
|
2961
|
+
};
|
|
2962
2962
|
}) | ({
|
|
2963
2963
|
type: "Separator";
|
|
2964
2964
|
} & {
|
|
2965
2965
|
config?: {
|
|
2966
2966
|
label?: string | null | undefined;
|
|
2967
|
-
}
|
|
2967
|
+
};
|
|
2968
2968
|
}) | ({
|
|
2969
2969
|
type: "Text";
|
|
2970
2970
|
} & {
|
|
2971
2971
|
fieldset?: string | null | undefined;
|
|
2972
2972
|
config?: {
|
|
2973
2973
|
label?: string | null | undefined;
|
|
2974
|
-
useAsTitle?: boolean
|
|
2975
|
-
placeholder?: string
|
|
2976
|
-
}
|
|
2974
|
+
useAsTitle?: boolean;
|
|
2975
|
+
placeholder?: string;
|
|
2976
|
+
};
|
|
2977
2977
|
}) | ({
|
|
2978
2978
|
type: "Timestamp";
|
|
2979
2979
|
} & {
|
|
2980
2980
|
fieldset?: string | null | undefined;
|
|
2981
2981
|
config?: {
|
|
2982
2982
|
label?: string | null | undefined;
|
|
2983
|
-
placeholder?: string
|
|
2984
|
-
default?: string
|
|
2985
|
-
}
|
|
2983
|
+
placeholder?: string;
|
|
2984
|
+
default?: string;
|
|
2985
|
+
};
|
|
2986
2986
|
});
|
|
2987
|
-
}
|
|
2988
|
-
}
|
|
2987
|
+
};
|
|
2988
|
+
};
|
|
2989
2989
|
}) | ({
|
|
2990
2990
|
id: string;
|
|
2991
2991
|
type: "SharedSlice";
|
|
@@ -2998,330 +2998,330 @@ export declare const StaticSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
2998
2998
|
docURL: string;
|
|
2999
2999
|
version: string;
|
|
3000
3000
|
} & {
|
|
3001
|
-
display?: string
|
|
3001
|
+
display?: string;
|
|
3002
3002
|
primary?: {
|
|
3003
3003
|
[x: string]: ({
|
|
3004
3004
|
type: "Boolean";
|
|
3005
3005
|
} & {
|
|
3006
3006
|
config?: {
|
|
3007
3007
|
label?: string | null | undefined;
|
|
3008
|
-
default_value?: boolean
|
|
3009
|
-
placeholder_true?: string
|
|
3010
|
-
placeholder_false?: string
|
|
3011
|
-
}
|
|
3008
|
+
default_value?: boolean;
|
|
3009
|
+
placeholder_true?: string;
|
|
3010
|
+
placeholder_false?: string;
|
|
3011
|
+
};
|
|
3012
3012
|
}) | ({
|
|
3013
3013
|
type: "Color";
|
|
3014
3014
|
} & {
|
|
3015
3015
|
fieldset?: string | null | undefined;
|
|
3016
3016
|
config?: {
|
|
3017
3017
|
label?: string | null | undefined;
|
|
3018
|
-
placeholder?: string
|
|
3019
|
-
}
|
|
3018
|
+
placeholder?: string;
|
|
3019
|
+
};
|
|
3020
3020
|
}) | ({
|
|
3021
3021
|
type: "Date";
|
|
3022
3022
|
} & {
|
|
3023
3023
|
fieldset?: string | null | undefined;
|
|
3024
3024
|
config?: {
|
|
3025
3025
|
label?: string | null | undefined;
|
|
3026
|
-
placeholder?: string
|
|
3027
|
-
default?: string
|
|
3028
|
-
}
|
|
3026
|
+
placeholder?: string;
|
|
3027
|
+
default?: string;
|
|
3028
|
+
};
|
|
3029
3029
|
}) | ({
|
|
3030
3030
|
type: "Embed";
|
|
3031
3031
|
} & {
|
|
3032
3032
|
fieldset?: string | null | undefined;
|
|
3033
3033
|
config?: {
|
|
3034
3034
|
label?: string | null | undefined;
|
|
3035
|
-
placeholder?: string
|
|
3036
|
-
useAsTitle?: boolean
|
|
3037
|
-
}
|
|
3035
|
+
placeholder?: string;
|
|
3036
|
+
useAsTitle?: boolean;
|
|
3037
|
+
};
|
|
3038
3038
|
}) | ({
|
|
3039
3039
|
type: "GeoPoint";
|
|
3040
3040
|
} & {
|
|
3041
3041
|
fieldset?: string | null | undefined;
|
|
3042
3042
|
config?: {
|
|
3043
3043
|
label?: string | null | undefined;
|
|
3044
|
-
}
|
|
3044
|
+
};
|
|
3045
3045
|
}) | ({
|
|
3046
3046
|
type: "Image";
|
|
3047
3047
|
} & {
|
|
3048
3048
|
fieldset?: string | null | undefined;
|
|
3049
3049
|
config?: {
|
|
3050
3050
|
label?: string | null | undefined;
|
|
3051
|
-
placeholder?: string
|
|
3051
|
+
placeholder?: string;
|
|
3052
3052
|
constraint?: {
|
|
3053
|
-
width?: number | null
|
|
3054
|
-
height?: number | null
|
|
3055
|
-
}
|
|
3053
|
+
width?: number | null;
|
|
3054
|
+
height?: number | null;
|
|
3055
|
+
};
|
|
3056
3056
|
thumbnails?: readonly ({
|
|
3057
3057
|
name: string;
|
|
3058
3058
|
} & {
|
|
3059
|
-
width?: number | null
|
|
3060
|
-
height?: number | null
|
|
3061
|
-
})[]
|
|
3062
|
-
}
|
|
3059
|
+
width?: number | null;
|
|
3060
|
+
height?: number | null;
|
|
3061
|
+
})[];
|
|
3062
|
+
};
|
|
3063
3063
|
}) | ({
|
|
3064
3064
|
type: "IntegrationFields";
|
|
3065
3065
|
} & {
|
|
3066
3066
|
fieldset?: string | null | undefined;
|
|
3067
3067
|
config?: {
|
|
3068
3068
|
label?: string | null | undefined;
|
|
3069
|
-
placeholder?: string
|
|
3070
|
-
catalog?: string
|
|
3071
|
-
}
|
|
3069
|
+
placeholder?: string;
|
|
3070
|
+
catalog?: string;
|
|
3071
|
+
};
|
|
3072
3072
|
}) | ({
|
|
3073
3073
|
type: "Link";
|
|
3074
3074
|
} & {
|
|
3075
3075
|
fieldset?: string | null | undefined;
|
|
3076
3076
|
config?: {
|
|
3077
3077
|
label?: string | null | undefined;
|
|
3078
|
-
useAsTitle?: boolean
|
|
3079
|
-
placeholder?: string
|
|
3080
|
-
select?: "web" | "media" | "document" | null
|
|
3081
|
-
customtypes?: readonly string[]
|
|
3082
|
-
masks?: readonly string[]
|
|
3083
|
-
tags?: readonly string[]
|
|
3084
|
-
allowTargetBlank?: boolean
|
|
3085
|
-
}
|
|
3078
|
+
useAsTitle?: boolean;
|
|
3079
|
+
placeholder?: string;
|
|
3080
|
+
select?: "web" | "media" | "document" | null;
|
|
3081
|
+
customtypes?: readonly string[];
|
|
3082
|
+
masks?: readonly string[];
|
|
3083
|
+
tags?: readonly string[];
|
|
3084
|
+
allowTargetBlank?: boolean;
|
|
3085
|
+
};
|
|
3086
3086
|
}) | ({
|
|
3087
3087
|
type: "Number";
|
|
3088
3088
|
} & {
|
|
3089
3089
|
fieldset?: string | null | undefined;
|
|
3090
3090
|
config?: {
|
|
3091
3091
|
label?: string | null | undefined;
|
|
3092
|
-
placeholder?: string
|
|
3093
|
-
min?: number
|
|
3094
|
-
max?: number
|
|
3095
|
-
step?: number
|
|
3096
|
-
}
|
|
3092
|
+
placeholder?: string;
|
|
3093
|
+
min?: number;
|
|
3094
|
+
max?: number;
|
|
3095
|
+
step?: number;
|
|
3096
|
+
};
|
|
3097
3097
|
}) | ({
|
|
3098
3098
|
type: "Range";
|
|
3099
3099
|
} & {
|
|
3100
3100
|
fieldset?: string | null | undefined;
|
|
3101
3101
|
config?: {
|
|
3102
3102
|
label?: string | null | undefined;
|
|
3103
|
-
placeholder?: string
|
|
3104
|
-
min?: number
|
|
3105
|
-
max?: number
|
|
3106
|
-
step?: number
|
|
3107
|
-
}
|
|
3103
|
+
placeholder?: string;
|
|
3104
|
+
min?: number;
|
|
3105
|
+
max?: number;
|
|
3106
|
+
step?: number;
|
|
3107
|
+
};
|
|
3108
3108
|
}) | ({
|
|
3109
3109
|
type: "StructuredText";
|
|
3110
3110
|
} & {
|
|
3111
3111
|
fieldset?: string | null | undefined;
|
|
3112
3112
|
config?: {
|
|
3113
3113
|
label?: string | null | undefined;
|
|
3114
|
-
placeholder?: string
|
|
3115
|
-
useAsTitle?: boolean
|
|
3116
|
-
single?: string
|
|
3117
|
-
multi?: string
|
|
3114
|
+
placeholder?: string;
|
|
3115
|
+
useAsTitle?: boolean;
|
|
3116
|
+
single?: string;
|
|
3117
|
+
multi?: string;
|
|
3118
3118
|
imageConstraint?: {
|
|
3119
|
-
width?: number | null
|
|
3120
|
-
height?: number | null
|
|
3121
|
-
}
|
|
3122
|
-
labels?: readonly string[]
|
|
3123
|
-
allowTargetBlank?: boolean
|
|
3124
|
-
}
|
|
3119
|
+
width?: number | null;
|
|
3120
|
+
height?: number | null;
|
|
3121
|
+
};
|
|
3122
|
+
labels?: readonly string[];
|
|
3123
|
+
allowTargetBlank?: boolean;
|
|
3124
|
+
};
|
|
3125
3125
|
}) | ({
|
|
3126
3126
|
type: "Select";
|
|
3127
3127
|
} & {
|
|
3128
3128
|
fieldset?: string | null | undefined;
|
|
3129
3129
|
config?: {
|
|
3130
3130
|
label?: string | null | undefined;
|
|
3131
|
-
placeholder?: string
|
|
3132
|
-
default_value?: string
|
|
3133
|
-
options?: readonly string[]
|
|
3134
|
-
}
|
|
3131
|
+
placeholder?: string;
|
|
3132
|
+
default_value?: string;
|
|
3133
|
+
options?: readonly string[];
|
|
3134
|
+
};
|
|
3135
3135
|
}) | ({
|
|
3136
3136
|
type: "Separator";
|
|
3137
3137
|
} & {
|
|
3138
3138
|
config?: {
|
|
3139
3139
|
label?: string | null | undefined;
|
|
3140
|
-
}
|
|
3140
|
+
};
|
|
3141
3141
|
}) | ({
|
|
3142
3142
|
type: "Text";
|
|
3143
3143
|
} & {
|
|
3144
3144
|
fieldset?: string | null | undefined;
|
|
3145
3145
|
config?: {
|
|
3146
3146
|
label?: string | null | undefined;
|
|
3147
|
-
useAsTitle?: boolean
|
|
3148
|
-
placeholder?: string
|
|
3149
|
-
}
|
|
3147
|
+
useAsTitle?: boolean;
|
|
3148
|
+
placeholder?: string;
|
|
3149
|
+
};
|
|
3150
3150
|
}) | ({
|
|
3151
3151
|
type: "Timestamp";
|
|
3152
3152
|
} & {
|
|
3153
3153
|
fieldset?: string | null | undefined;
|
|
3154
3154
|
config?: {
|
|
3155
3155
|
label?: string | null | undefined;
|
|
3156
|
-
placeholder?: string
|
|
3157
|
-
default?: string
|
|
3158
|
-
}
|
|
3156
|
+
placeholder?: string;
|
|
3157
|
+
default?: string;
|
|
3158
|
+
};
|
|
3159
3159
|
});
|
|
3160
|
-
}
|
|
3160
|
+
};
|
|
3161
3161
|
items?: {
|
|
3162
3162
|
[x: string]: ({
|
|
3163
3163
|
type: "Boolean";
|
|
3164
3164
|
} & {
|
|
3165
3165
|
config?: {
|
|
3166
3166
|
label?: string | null | undefined;
|
|
3167
|
-
default_value?: boolean
|
|
3168
|
-
placeholder_true?: string
|
|
3169
|
-
placeholder_false?: string
|
|
3170
|
-
}
|
|
3167
|
+
default_value?: boolean;
|
|
3168
|
+
placeholder_true?: string;
|
|
3169
|
+
placeholder_false?: string;
|
|
3170
|
+
};
|
|
3171
3171
|
}) | ({
|
|
3172
3172
|
type: "Color";
|
|
3173
3173
|
} & {
|
|
3174
3174
|
fieldset?: string | null | undefined;
|
|
3175
3175
|
config?: {
|
|
3176
3176
|
label?: string | null | undefined;
|
|
3177
|
-
placeholder?: string
|
|
3178
|
-
}
|
|
3177
|
+
placeholder?: string;
|
|
3178
|
+
};
|
|
3179
3179
|
}) | ({
|
|
3180
3180
|
type: "Date";
|
|
3181
3181
|
} & {
|
|
3182
3182
|
fieldset?: string | null | undefined;
|
|
3183
3183
|
config?: {
|
|
3184
3184
|
label?: string | null | undefined;
|
|
3185
|
-
placeholder?: string
|
|
3186
|
-
default?: string
|
|
3187
|
-
}
|
|
3185
|
+
placeholder?: string;
|
|
3186
|
+
default?: string;
|
|
3187
|
+
};
|
|
3188
3188
|
}) | ({
|
|
3189
3189
|
type: "Embed";
|
|
3190
3190
|
} & {
|
|
3191
3191
|
fieldset?: string | null | undefined;
|
|
3192
3192
|
config?: {
|
|
3193
3193
|
label?: string | null | undefined;
|
|
3194
|
-
placeholder?: string
|
|
3195
|
-
useAsTitle?: boolean
|
|
3196
|
-
}
|
|
3194
|
+
placeholder?: string;
|
|
3195
|
+
useAsTitle?: boolean;
|
|
3196
|
+
};
|
|
3197
3197
|
}) | ({
|
|
3198
3198
|
type: "GeoPoint";
|
|
3199
3199
|
} & {
|
|
3200
3200
|
fieldset?: string | null | undefined;
|
|
3201
3201
|
config?: {
|
|
3202
3202
|
label?: string | null | undefined;
|
|
3203
|
-
}
|
|
3203
|
+
};
|
|
3204
3204
|
}) | ({
|
|
3205
3205
|
type: "Image";
|
|
3206
3206
|
} & {
|
|
3207
3207
|
fieldset?: string | null | undefined;
|
|
3208
3208
|
config?: {
|
|
3209
3209
|
label?: string | null | undefined;
|
|
3210
|
-
placeholder?: string
|
|
3210
|
+
placeholder?: string;
|
|
3211
3211
|
constraint?: {
|
|
3212
|
-
width?: number | null
|
|
3213
|
-
height?: number | null
|
|
3214
|
-
}
|
|
3212
|
+
width?: number | null;
|
|
3213
|
+
height?: number | null;
|
|
3214
|
+
};
|
|
3215
3215
|
thumbnails?: readonly ({
|
|
3216
3216
|
name: string;
|
|
3217
3217
|
} & {
|
|
3218
|
-
width?: number | null
|
|
3219
|
-
height?: number | null
|
|
3220
|
-
})[]
|
|
3221
|
-
}
|
|
3218
|
+
width?: number | null;
|
|
3219
|
+
height?: number | null;
|
|
3220
|
+
})[];
|
|
3221
|
+
};
|
|
3222
3222
|
}) | ({
|
|
3223
3223
|
type: "IntegrationFields";
|
|
3224
3224
|
} & {
|
|
3225
3225
|
fieldset?: string | null | undefined;
|
|
3226
3226
|
config?: {
|
|
3227
3227
|
label?: string | null | undefined;
|
|
3228
|
-
placeholder?: string
|
|
3229
|
-
catalog?: string
|
|
3230
|
-
}
|
|
3228
|
+
placeholder?: string;
|
|
3229
|
+
catalog?: string;
|
|
3230
|
+
};
|
|
3231
3231
|
}) | ({
|
|
3232
3232
|
type: "Link";
|
|
3233
3233
|
} & {
|
|
3234
3234
|
fieldset?: string | null | undefined;
|
|
3235
3235
|
config?: {
|
|
3236
3236
|
label?: string | null | undefined;
|
|
3237
|
-
useAsTitle?: boolean
|
|
3238
|
-
placeholder?: string
|
|
3239
|
-
select?: "web" | "media" | "document" | null
|
|
3240
|
-
customtypes?: readonly string[]
|
|
3241
|
-
masks?: readonly string[]
|
|
3242
|
-
tags?: readonly string[]
|
|
3243
|
-
allowTargetBlank?: boolean
|
|
3244
|
-
}
|
|
3237
|
+
useAsTitle?: boolean;
|
|
3238
|
+
placeholder?: string;
|
|
3239
|
+
select?: "web" | "media" | "document" | null;
|
|
3240
|
+
customtypes?: readonly string[];
|
|
3241
|
+
masks?: readonly string[];
|
|
3242
|
+
tags?: readonly string[];
|
|
3243
|
+
allowTargetBlank?: boolean;
|
|
3244
|
+
};
|
|
3245
3245
|
}) | ({
|
|
3246
3246
|
type: "Number";
|
|
3247
3247
|
} & {
|
|
3248
3248
|
fieldset?: string | null | undefined;
|
|
3249
3249
|
config?: {
|
|
3250
3250
|
label?: string | null | undefined;
|
|
3251
|
-
placeholder?: string
|
|
3252
|
-
min?: number
|
|
3253
|
-
max?: number
|
|
3254
|
-
step?: number
|
|
3255
|
-
}
|
|
3251
|
+
placeholder?: string;
|
|
3252
|
+
min?: number;
|
|
3253
|
+
max?: number;
|
|
3254
|
+
step?: number;
|
|
3255
|
+
};
|
|
3256
3256
|
}) | ({
|
|
3257
3257
|
type: "Range";
|
|
3258
3258
|
} & {
|
|
3259
3259
|
fieldset?: string | null | undefined;
|
|
3260
3260
|
config?: {
|
|
3261
3261
|
label?: string | null | undefined;
|
|
3262
|
-
placeholder?: string
|
|
3263
|
-
min?: number
|
|
3264
|
-
max?: number
|
|
3265
|
-
step?: number
|
|
3266
|
-
}
|
|
3262
|
+
placeholder?: string;
|
|
3263
|
+
min?: number;
|
|
3264
|
+
max?: number;
|
|
3265
|
+
step?: number;
|
|
3266
|
+
};
|
|
3267
3267
|
}) | ({
|
|
3268
3268
|
type: "StructuredText";
|
|
3269
3269
|
} & {
|
|
3270
3270
|
fieldset?: string | null | undefined;
|
|
3271
3271
|
config?: {
|
|
3272
3272
|
label?: string | null | undefined;
|
|
3273
|
-
placeholder?: string
|
|
3274
|
-
useAsTitle?: boolean
|
|
3275
|
-
single?: string
|
|
3276
|
-
multi?: string
|
|
3273
|
+
placeholder?: string;
|
|
3274
|
+
useAsTitle?: boolean;
|
|
3275
|
+
single?: string;
|
|
3276
|
+
multi?: string;
|
|
3277
3277
|
imageConstraint?: {
|
|
3278
|
-
width?: number | null
|
|
3279
|
-
height?: number | null
|
|
3280
|
-
}
|
|
3281
|
-
labels?: readonly string[]
|
|
3282
|
-
allowTargetBlank?: boolean
|
|
3283
|
-
}
|
|
3278
|
+
width?: number | null;
|
|
3279
|
+
height?: number | null;
|
|
3280
|
+
};
|
|
3281
|
+
labels?: readonly string[];
|
|
3282
|
+
allowTargetBlank?: boolean;
|
|
3283
|
+
};
|
|
3284
3284
|
}) | ({
|
|
3285
3285
|
type: "Select";
|
|
3286
3286
|
} & {
|
|
3287
3287
|
fieldset?: string | null | undefined;
|
|
3288
3288
|
config?: {
|
|
3289
3289
|
label?: string | null | undefined;
|
|
3290
|
-
placeholder?: string
|
|
3291
|
-
default_value?: string
|
|
3292
|
-
options?: readonly string[]
|
|
3293
|
-
}
|
|
3290
|
+
placeholder?: string;
|
|
3291
|
+
default_value?: string;
|
|
3292
|
+
options?: readonly string[];
|
|
3293
|
+
};
|
|
3294
3294
|
}) | ({
|
|
3295
3295
|
type: "Separator";
|
|
3296
3296
|
} & {
|
|
3297
3297
|
config?: {
|
|
3298
3298
|
label?: string | null | undefined;
|
|
3299
|
-
}
|
|
3299
|
+
};
|
|
3300
3300
|
}) | ({
|
|
3301
3301
|
type: "Text";
|
|
3302
3302
|
} & {
|
|
3303
3303
|
fieldset?: string | null | undefined;
|
|
3304
3304
|
config?: {
|
|
3305
3305
|
label?: string | null | undefined;
|
|
3306
|
-
useAsTitle?: boolean
|
|
3307
|
-
placeholder?: string
|
|
3308
|
-
}
|
|
3306
|
+
useAsTitle?: boolean;
|
|
3307
|
+
placeholder?: string;
|
|
3308
|
+
};
|
|
3309
3309
|
}) | ({
|
|
3310
3310
|
type: "Timestamp";
|
|
3311
3311
|
} & {
|
|
3312
3312
|
fieldset?: string | null | undefined;
|
|
3313
3313
|
config?: {
|
|
3314
3314
|
label?: string | null | undefined;
|
|
3315
|
-
placeholder?: string
|
|
3316
|
-
default?: string
|
|
3317
|
-
}
|
|
3315
|
+
placeholder?: string;
|
|
3316
|
+
default?: string;
|
|
3317
|
+
};
|
|
3318
3318
|
});
|
|
3319
|
-
}
|
|
3319
|
+
};
|
|
3320
3320
|
})[];
|
|
3321
3321
|
} & {
|
|
3322
|
-
description?: string
|
|
3322
|
+
description?: string;
|
|
3323
3323
|
});
|
|
3324
|
-
}
|
|
3324
|
+
};
|
|
3325
3325
|
}, unknown, unknown>;
|
|
3326
3326
|
}>]>>;
|
|
3327
3327
|
export declare type StaticSlices = t.TypeOf<typeof StaticSlices>;
|
|
@@ -3335,667 +3335,667 @@ export declare const DynamicSlices: t.ExactC<t.IntersectionC<[t.TypeC<{
|
|
|
3335
3335
|
[x: string]: readonly ({
|
|
3336
3336
|
name: string;
|
|
3337
3337
|
} & {
|
|
3338
|
-
display?: string
|
|
3338
|
+
display?: string;
|
|
3339
3339
|
})[];
|
|
3340
|
-
} | null
|
|
3340
|
+
} | null;
|
|
3341
3341
|
choices?: {
|
|
3342
3342
|
[x: string]: ({
|
|
3343
3343
|
type: "Boolean";
|
|
3344
3344
|
} & {
|
|
3345
3345
|
config?: {
|
|
3346
3346
|
label?: string | null | undefined;
|
|
3347
|
-
default_value?: boolean
|
|
3348
|
-
placeholder_true?: string
|
|
3349
|
-
placeholder_false?: string
|
|
3350
|
-
}
|
|
3347
|
+
default_value?: boolean;
|
|
3348
|
+
placeholder_true?: string;
|
|
3349
|
+
placeholder_false?: string;
|
|
3350
|
+
};
|
|
3351
3351
|
}) | ({
|
|
3352
3352
|
type: "Color";
|
|
3353
3353
|
} & {
|
|
3354
3354
|
fieldset?: string | null | undefined;
|
|
3355
3355
|
config?: {
|
|
3356
3356
|
label?: string | null | undefined;
|
|
3357
|
-
placeholder?: string
|
|
3358
|
-
}
|
|
3357
|
+
placeholder?: string;
|
|
3358
|
+
};
|
|
3359
3359
|
}) | ({
|
|
3360
3360
|
type: "Date";
|
|
3361
3361
|
} & {
|
|
3362
3362
|
fieldset?: string | null | undefined;
|
|
3363
3363
|
config?: {
|
|
3364
3364
|
label?: string | null | undefined;
|
|
3365
|
-
placeholder?: string
|
|
3366
|
-
default?: string
|
|
3367
|
-
}
|
|
3365
|
+
placeholder?: string;
|
|
3366
|
+
default?: string;
|
|
3367
|
+
};
|
|
3368
3368
|
}) | ({
|
|
3369
3369
|
type: "Embed";
|
|
3370
3370
|
} & {
|
|
3371
3371
|
fieldset?: string | null | undefined;
|
|
3372
3372
|
config?: {
|
|
3373
3373
|
label?: string | null | undefined;
|
|
3374
|
-
placeholder?: string
|
|
3375
|
-
useAsTitle?: boolean
|
|
3376
|
-
}
|
|
3374
|
+
placeholder?: string;
|
|
3375
|
+
useAsTitle?: boolean;
|
|
3376
|
+
};
|
|
3377
3377
|
}) | ({
|
|
3378
3378
|
type: "GeoPoint";
|
|
3379
3379
|
} & {
|
|
3380
3380
|
fieldset?: string | null | undefined;
|
|
3381
3381
|
config?: {
|
|
3382
3382
|
label?: string | null | undefined;
|
|
3383
|
-
}
|
|
3383
|
+
};
|
|
3384
3384
|
}) | ({
|
|
3385
3385
|
type: "Image";
|
|
3386
3386
|
} & {
|
|
3387
3387
|
fieldset?: string | null | undefined;
|
|
3388
3388
|
config?: {
|
|
3389
3389
|
label?: string | null | undefined;
|
|
3390
|
-
placeholder?: string
|
|
3390
|
+
placeholder?: string;
|
|
3391
3391
|
constraint?: {
|
|
3392
|
-
width?: number | null
|
|
3393
|
-
height?: number | null
|
|
3394
|
-
}
|
|
3392
|
+
width?: number | null;
|
|
3393
|
+
height?: number | null;
|
|
3394
|
+
};
|
|
3395
3395
|
thumbnails?: readonly ({
|
|
3396
3396
|
name: string;
|
|
3397
3397
|
} & {
|
|
3398
|
-
width?: number | null
|
|
3399
|
-
height?: number | null
|
|
3400
|
-
})[]
|
|
3401
|
-
}
|
|
3398
|
+
width?: number | null;
|
|
3399
|
+
height?: number | null;
|
|
3400
|
+
})[];
|
|
3401
|
+
};
|
|
3402
3402
|
}) | ({
|
|
3403
3403
|
type: "IntegrationFields";
|
|
3404
3404
|
} & {
|
|
3405
3405
|
fieldset?: string | null | undefined;
|
|
3406
3406
|
config?: {
|
|
3407
3407
|
label?: string | null | undefined;
|
|
3408
|
-
placeholder?: string
|
|
3409
|
-
catalog?: string
|
|
3410
|
-
}
|
|
3408
|
+
placeholder?: string;
|
|
3409
|
+
catalog?: string;
|
|
3410
|
+
};
|
|
3411
3411
|
}) | ({
|
|
3412
3412
|
type: "Link";
|
|
3413
3413
|
} & {
|
|
3414
3414
|
fieldset?: string | null | undefined;
|
|
3415
3415
|
config?: {
|
|
3416
3416
|
label?: string | null | undefined;
|
|
3417
|
-
useAsTitle?: boolean
|
|
3418
|
-
placeholder?: string
|
|
3419
|
-
select?: "web" | "media" | "document" | null
|
|
3420
|
-
customtypes?: readonly string[]
|
|
3421
|
-
masks?: readonly string[]
|
|
3422
|
-
tags?: readonly string[]
|
|
3423
|
-
allowTargetBlank?: boolean
|
|
3424
|
-
}
|
|
3417
|
+
useAsTitle?: boolean;
|
|
3418
|
+
placeholder?: string;
|
|
3419
|
+
select?: "web" | "media" | "document" | null;
|
|
3420
|
+
customtypes?: readonly string[];
|
|
3421
|
+
masks?: readonly string[];
|
|
3422
|
+
tags?: readonly string[];
|
|
3423
|
+
allowTargetBlank?: boolean;
|
|
3424
|
+
};
|
|
3425
3425
|
}) | ({
|
|
3426
3426
|
type: "Number";
|
|
3427
3427
|
} & {
|
|
3428
3428
|
fieldset?: string | null | undefined;
|
|
3429
3429
|
config?: {
|
|
3430
3430
|
label?: string | null | undefined;
|
|
3431
|
-
placeholder?: string
|
|
3432
|
-
min?: number
|
|
3433
|
-
max?: number
|
|
3434
|
-
step?: number
|
|
3435
|
-
}
|
|
3431
|
+
placeholder?: string;
|
|
3432
|
+
min?: number;
|
|
3433
|
+
max?: number;
|
|
3434
|
+
step?: number;
|
|
3435
|
+
};
|
|
3436
3436
|
}) | ({
|
|
3437
3437
|
type: "Range";
|
|
3438
3438
|
} & {
|
|
3439
3439
|
fieldset?: string | null | undefined;
|
|
3440
3440
|
config?: {
|
|
3441
3441
|
label?: string | null | undefined;
|
|
3442
|
-
placeholder?: string
|
|
3443
|
-
min?: number
|
|
3444
|
-
max?: number
|
|
3445
|
-
step?: number
|
|
3446
|
-
}
|
|
3442
|
+
placeholder?: string;
|
|
3443
|
+
min?: number;
|
|
3444
|
+
max?: number;
|
|
3445
|
+
step?: number;
|
|
3446
|
+
};
|
|
3447
3447
|
}) | ({
|
|
3448
3448
|
type: "StructuredText";
|
|
3449
3449
|
} & {
|
|
3450
3450
|
fieldset?: string | null | undefined;
|
|
3451
3451
|
config?: {
|
|
3452
3452
|
label?: string | null | undefined;
|
|
3453
|
-
placeholder?: string
|
|
3454
|
-
useAsTitle?: boolean
|
|
3455
|
-
single?: string
|
|
3456
|
-
multi?: string
|
|
3453
|
+
placeholder?: string;
|
|
3454
|
+
useAsTitle?: boolean;
|
|
3455
|
+
single?: string;
|
|
3456
|
+
multi?: string;
|
|
3457
3457
|
imageConstraint?: {
|
|
3458
|
-
width?: number | null
|
|
3459
|
-
height?: number | null
|
|
3460
|
-
}
|
|
3461
|
-
labels?: readonly string[]
|
|
3462
|
-
allowTargetBlank?: boolean
|
|
3463
|
-
}
|
|
3458
|
+
width?: number | null;
|
|
3459
|
+
height?: number | null;
|
|
3460
|
+
};
|
|
3461
|
+
labels?: readonly string[];
|
|
3462
|
+
allowTargetBlank?: boolean;
|
|
3463
|
+
};
|
|
3464
3464
|
}) | ({
|
|
3465
3465
|
type: "Select";
|
|
3466
3466
|
} & {
|
|
3467
3467
|
fieldset?: string | null | undefined;
|
|
3468
3468
|
config?: {
|
|
3469
3469
|
label?: string | null | undefined;
|
|
3470
|
-
placeholder?: string
|
|
3471
|
-
default_value?: string
|
|
3472
|
-
options?: readonly string[]
|
|
3473
|
-
}
|
|
3470
|
+
placeholder?: string;
|
|
3471
|
+
default_value?: string;
|
|
3472
|
+
options?: readonly string[];
|
|
3473
|
+
};
|
|
3474
3474
|
}) | ({
|
|
3475
3475
|
type: "Separator";
|
|
3476
3476
|
} & {
|
|
3477
3477
|
config?: {
|
|
3478
3478
|
label?: string | null | undefined;
|
|
3479
|
-
}
|
|
3479
|
+
};
|
|
3480
3480
|
}) | ({
|
|
3481
3481
|
type: "Text";
|
|
3482
3482
|
} & {
|
|
3483
3483
|
fieldset?: string | null | undefined;
|
|
3484
3484
|
config?: {
|
|
3485
3485
|
label?: string | null | undefined;
|
|
3486
|
-
useAsTitle?: boolean
|
|
3487
|
-
placeholder?: string
|
|
3488
|
-
}
|
|
3486
|
+
useAsTitle?: boolean;
|
|
3487
|
+
placeholder?: string;
|
|
3488
|
+
};
|
|
3489
3489
|
}) | ({
|
|
3490
3490
|
type: "Timestamp";
|
|
3491
3491
|
} & {
|
|
3492
3492
|
fieldset?: string | null | undefined;
|
|
3493
3493
|
config?: {
|
|
3494
3494
|
label?: string | null | undefined;
|
|
3495
|
-
placeholder?: string
|
|
3496
|
-
default?: string
|
|
3497
|
-
}
|
|
3495
|
+
placeholder?: string;
|
|
3496
|
+
default?: string;
|
|
3497
|
+
};
|
|
3498
3498
|
}) | ({
|
|
3499
3499
|
type: "Slice";
|
|
3500
3500
|
} & {
|
|
3501
3501
|
fieldset?: string | null | undefined;
|
|
3502
|
-
description?: string
|
|
3503
|
-
icon?: string
|
|
3504
|
-
display?: string
|
|
3502
|
+
description?: string;
|
|
3503
|
+
icon?: string;
|
|
3504
|
+
display?: string;
|
|
3505
3505
|
"non-repeat"?: {
|
|
3506
3506
|
[x: string]: ({
|
|
3507
3507
|
type: "Boolean";
|
|
3508
3508
|
} & {
|
|
3509
3509
|
config?: {
|
|
3510
3510
|
label?: string | null | undefined;
|
|
3511
|
-
default_value?: boolean
|
|
3512
|
-
placeholder_true?: string
|
|
3513
|
-
placeholder_false?: string
|
|
3514
|
-
}
|
|
3511
|
+
default_value?: boolean;
|
|
3512
|
+
placeholder_true?: string;
|
|
3513
|
+
placeholder_false?: string;
|
|
3514
|
+
};
|
|
3515
3515
|
}) | ({
|
|
3516
3516
|
type: "Color";
|
|
3517
3517
|
} & {
|
|
3518
3518
|
fieldset?: string | null | undefined;
|
|
3519
3519
|
config?: {
|
|
3520
3520
|
label?: string | null | undefined;
|
|
3521
|
-
placeholder?: string
|
|
3522
|
-
}
|
|
3521
|
+
placeholder?: string;
|
|
3522
|
+
};
|
|
3523
3523
|
}) | ({
|
|
3524
3524
|
type: "Date";
|
|
3525
3525
|
} & {
|
|
3526
3526
|
fieldset?: string | null | undefined;
|
|
3527
3527
|
config?: {
|
|
3528
3528
|
label?: string | null | undefined;
|
|
3529
|
-
placeholder?: string
|
|
3530
|
-
default?: string
|
|
3531
|
-
}
|
|
3529
|
+
placeholder?: string;
|
|
3530
|
+
default?: string;
|
|
3531
|
+
};
|
|
3532
3532
|
}) | ({
|
|
3533
3533
|
type: "Embed";
|
|
3534
3534
|
} & {
|
|
3535
3535
|
fieldset?: string | null | undefined;
|
|
3536
3536
|
config?: {
|
|
3537
3537
|
label?: string | null | undefined;
|
|
3538
|
-
placeholder?: string
|
|
3539
|
-
useAsTitle?: boolean
|
|
3540
|
-
}
|
|
3538
|
+
placeholder?: string;
|
|
3539
|
+
useAsTitle?: boolean;
|
|
3540
|
+
};
|
|
3541
3541
|
}) | ({
|
|
3542
3542
|
type: "GeoPoint";
|
|
3543
3543
|
} & {
|
|
3544
3544
|
fieldset?: string | null | undefined;
|
|
3545
3545
|
config?: {
|
|
3546
3546
|
label?: string | null | undefined;
|
|
3547
|
-
}
|
|
3547
|
+
};
|
|
3548
3548
|
}) | ({
|
|
3549
3549
|
type: "Image";
|
|
3550
3550
|
} & {
|
|
3551
3551
|
fieldset?: string | null | undefined;
|
|
3552
3552
|
config?: {
|
|
3553
3553
|
label?: string | null | undefined;
|
|
3554
|
-
placeholder?: string
|
|
3554
|
+
placeholder?: string;
|
|
3555
3555
|
constraint?: {
|
|
3556
|
-
width?: number | null
|
|
3557
|
-
height?: number | null
|
|
3558
|
-
}
|
|
3556
|
+
width?: number | null;
|
|
3557
|
+
height?: number | null;
|
|
3558
|
+
};
|
|
3559
3559
|
thumbnails?: readonly ({
|
|
3560
3560
|
name: string;
|
|
3561
3561
|
} & {
|
|
3562
|
-
width?: number | null
|
|
3563
|
-
height?: number | null
|
|
3564
|
-
})[]
|
|
3565
|
-
}
|
|
3562
|
+
width?: number | null;
|
|
3563
|
+
height?: number | null;
|
|
3564
|
+
})[];
|
|
3565
|
+
};
|
|
3566
3566
|
}) | ({
|
|
3567
3567
|
type: "IntegrationFields";
|
|
3568
3568
|
} & {
|
|
3569
3569
|
fieldset?: string | null | undefined;
|
|
3570
3570
|
config?: {
|
|
3571
3571
|
label?: string | null | undefined;
|
|
3572
|
-
placeholder?: string
|
|
3573
|
-
catalog?: string
|
|
3574
|
-
}
|
|
3572
|
+
placeholder?: string;
|
|
3573
|
+
catalog?: string;
|
|
3574
|
+
};
|
|
3575
3575
|
}) | ({
|
|
3576
3576
|
type: "Link";
|
|
3577
3577
|
} & {
|
|
3578
3578
|
fieldset?: string | null | undefined;
|
|
3579
3579
|
config?: {
|
|
3580
3580
|
label?: string | null | undefined;
|
|
3581
|
-
useAsTitle?: boolean
|
|
3582
|
-
placeholder?: string
|
|
3583
|
-
select?: "web" | "media" | "document" | null
|
|
3584
|
-
customtypes?: readonly string[]
|
|
3585
|
-
masks?: readonly string[]
|
|
3586
|
-
tags?: readonly string[]
|
|
3587
|
-
allowTargetBlank?: boolean
|
|
3588
|
-
}
|
|
3581
|
+
useAsTitle?: boolean;
|
|
3582
|
+
placeholder?: string;
|
|
3583
|
+
select?: "web" | "media" | "document" | null;
|
|
3584
|
+
customtypes?: readonly string[];
|
|
3585
|
+
masks?: readonly string[];
|
|
3586
|
+
tags?: readonly string[];
|
|
3587
|
+
allowTargetBlank?: boolean;
|
|
3588
|
+
};
|
|
3589
3589
|
}) | ({
|
|
3590
3590
|
type: "Number";
|
|
3591
3591
|
} & {
|
|
3592
3592
|
fieldset?: string | null | undefined;
|
|
3593
3593
|
config?: {
|
|
3594
3594
|
label?: string | null | undefined;
|
|
3595
|
-
placeholder?: string
|
|
3596
|
-
min?: number
|
|
3597
|
-
max?: number
|
|
3598
|
-
step?: number
|
|
3599
|
-
}
|
|
3595
|
+
placeholder?: string;
|
|
3596
|
+
min?: number;
|
|
3597
|
+
max?: number;
|
|
3598
|
+
step?: number;
|
|
3599
|
+
};
|
|
3600
3600
|
}) | ({
|
|
3601
3601
|
type: "Range";
|
|
3602
3602
|
} & {
|
|
3603
3603
|
fieldset?: string | null | undefined;
|
|
3604
3604
|
config?: {
|
|
3605
3605
|
label?: string | null | undefined;
|
|
3606
|
-
placeholder?: string
|
|
3607
|
-
min?: number
|
|
3608
|
-
max?: number
|
|
3609
|
-
step?: number
|
|
3610
|
-
}
|
|
3606
|
+
placeholder?: string;
|
|
3607
|
+
min?: number;
|
|
3608
|
+
max?: number;
|
|
3609
|
+
step?: number;
|
|
3610
|
+
};
|
|
3611
3611
|
}) | ({
|
|
3612
3612
|
type: "StructuredText";
|
|
3613
3613
|
} & {
|
|
3614
3614
|
fieldset?: string | null | undefined;
|
|
3615
3615
|
config?: {
|
|
3616
3616
|
label?: string | null | undefined;
|
|
3617
|
-
placeholder?: string
|
|
3618
|
-
useAsTitle?: boolean
|
|
3619
|
-
single?: string
|
|
3620
|
-
multi?: string
|
|
3617
|
+
placeholder?: string;
|
|
3618
|
+
useAsTitle?: boolean;
|
|
3619
|
+
single?: string;
|
|
3620
|
+
multi?: string;
|
|
3621
3621
|
imageConstraint?: {
|
|
3622
|
-
width?: number | null
|
|
3623
|
-
height?: number | null
|
|
3624
|
-
}
|
|
3625
|
-
labels?: readonly string[]
|
|
3626
|
-
allowTargetBlank?: boolean
|
|
3627
|
-
}
|
|
3622
|
+
width?: number | null;
|
|
3623
|
+
height?: number | null;
|
|
3624
|
+
};
|
|
3625
|
+
labels?: readonly string[];
|
|
3626
|
+
allowTargetBlank?: boolean;
|
|
3627
|
+
};
|
|
3628
3628
|
}) | ({
|
|
3629
3629
|
type: "Select";
|
|
3630
3630
|
} & {
|
|
3631
3631
|
fieldset?: string | null | undefined;
|
|
3632
3632
|
config?: {
|
|
3633
3633
|
label?: string | null | undefined;
|
|
3634
|
-
placeholder?: string
|
|
3635
|
-
default_value?: string
|
|
3636
|
-
options?: readonly string[]
|
|
3637
|
-
}
|
|
3634
|
+
placeholder?: string;
|
|
3635
|
+
default_value?: string;
|
|
3636
|
+
options?: readonly string[];
|
|
3637
|
+
};
|
|
3638
3638
|
}) | ({
|
|
3639
3639
|
type: "Separator";
|
|
3640
3640
|
} & {
|
|
3641
3641
|
config?: {
|
|
3642
3642
|
label?: string | null | undefined;
|
|
3643
|
-
}
|
|
3643
|
+
};
|
|
3644
3644
|
}) | ({
|
|
3645
3645
|
type: "Text";
|
|
3646
3646
|
} & {
|
|
3647
3647
|
fieldset?: string | null | undefined;
|
|
3648
3648
|
config?: {
|
|
3649
3649
|
label?: string | null | undefined;
|
|
3650
|
-
useAsTitle?: boolean
|
|
3651
|
-
placeholder?: string
|
|
3652
|
-
}
|
|
3650
|
+
useAsTitle?: boolean;
|
|
3651
|
+
placeholder?: string;
|
|
3652
|
+
};
|
|
3653
3653
|
}) | ({
|
|
3654
3654
|
type: "Timestamp";
|
|
3655
3655
|
} & {
|
|
3656
3656
|
fieldset?: string | null | undefined;
|
|
3657
3657
|
config?: {
|
|
3658
3658
|
label?: string | null | undefined;
|
|
3659
|
-
placeholder?: string
|
|
3660
|
-
default?: string
|
|
3661
|
-
}
|
|
3659
|
+
placeholder?: string;
|
|
3660
|
+
default?: string;
|
|
3661
|
+
};
|
|
3662
3662
|
});
|
|
3663
|
-
}
|
|
3663
|
+
};
|
|
3664
3664
|
repeat?: {
|
|
3665
3665
|
[x: string]: ({
|
|
3666
3666
|
type: "Boolean";
|
|
3667
3667
|
} & {
|
|
3668
3668
|
config?: {
|
|
3669
3669
|
label?: string | null | undefined;
|
|
3670
|
-
default_value?: boolean
|
|
3671
|
-
placeholder_true?: string
|
|
3672
|
-
placeholder_false?: string
|
|
3673
|
-
}
|
|
3670
|
+
default_value?: boolean;
|
|
3671
|
+
placeholder_true?: string;
|
|
3672
|
+
placeholder_false?: string;
|
|
3673
|
+
};
|
|
3674
3674
|
}) | ({
|
|
3675
3675
|
type: "Color";
|
|
3676
3676
|
} & {
|
|
3677
3677
|
fieldset?: string | null | undefined;
|
|
3678
3678
|
config?: {
|
|
3679
3679
|
label?: string | null | undefined;
|
|
3680
|
-
placeholder?: string
|
|
3681
|
-
}
|
|
3680
|
+
placeholder?: string;
|
|
3681
|
+
};
|
|
3682
3682
|
}) | ({
|
|
3683
3683
|
type: "Date";
|
|
3684
3684
|
} & {
|
|
3685
3685
|
fieldset?: string | null | undefined;
|
|
3686
3686
|
config?: {
|
|
3687
3687
|
label?: string | null | undefined;
|
|
3688
|
-
placeholder?: string
|
|
3689
|
-
default?: string
|
|
3690
|
-
}
|
|
3688
|
+
placeholder?: string;
|
|
3689
|
+
default?: string;
|
|
3690
|
+
};
|
|
3691
3691
|
}) | ({
|
|
3692
3692
|
type: "Embed";
|
|
3693
3693
|
} & {
|
|
3694
3694
|
fieldset?: string | null | undefined;
|
|
3695
3695
|
config?: {
|
|
3696
3696
|
label?: string | null | undefined;
|
|
3697
|
-
placeholder?: string
|
|
3698
|
-
useAsTitle?: boolean
|
|
3699
|
-
}
|
|
3697
|
+
placeholder?: string;
|
|
3698
|
+
useAsTitle?: boolean;
|
|
3699
|
+
};
|
|
3700
3700
|
}) | ({
|
|
3701
3701
|
type: "GeoPoint";
|
|
3702
3702
|
} & {
|
|
3703
3703
|
fieldset?: string | null | undefined;
|
|
3704
3704
|
config?: {
|
|
3705
3705
|
label?: string | null | undefined;
|
|
3706
|
-
}
|
|
3706
|
+
};
|
|
3707
3707
|
}) | ({
|
|
3708
3708
|
type: "Image";
|
|
3709
3709
|
} & {
|
|
3710
3710
|
fieldset?: string | null | undefined;
|
|
3711
3711
|
config?: {
|
|
3712
3712
|
label?: string | null | undefined;
|
|
3713
|
-
placeholder?: string
|
|
3713
|
+
placeholder?: string;
|
|
3714
3714
|
constraint?: {
|
|
3715
|
-
width?: number | null
|
|
3716
|
-
height?: number | null
|
|
3717
|
-
}
|
|
3715
|
+
width?: number | null;
|
|
3716
|
+
height?: number | null;
|
|
3717
|
+
};
|
|
3718
3718
|
thumbnails?: readonly ({
|
|
3719
3719
|
name: string;
|
|
3720
3720
|
} & {
|
|
3721
|
-
width?: number | null
|
|
3722
|
-
height?: number | null
|
|
3723
|
-
})[]
|
|
3724
|
-
}
|
|
3721
|
+
width?: number | null;
|
|
3722
|
+
height?: number | null;
|
|
3723
|
+
})[];
|
|
3724
|
+
};
|
|
3725
3725
|
}) | ({
|
|
3726
3726
|
type: "IntegrationFields";
|
|
3727
3727
|
} & {
|
|
3728
3728
|
fieldset?: string | null | undefined;
|
|
3729
3729
|
config?: {
|
|
3730
3730
|
label?: string | null | undefined;
|
|
3731
|
-
placeholder?: string
|
|
3732
|
-
catalog?: string
|
|
3733
|
-
}
|
|
3731
|
+
placeholder?: string;
|
|
3732
|
+
catalog?: string;
|
|
3733
|
+
};
|
|
3734
3734
|
}) | ({
|
|
3735
3735
|
type: "Link";
|
|
3736
3736
|
} & {
|
|
3737
3737
|
fieldset?: string | null | undefined;
|
|
3738
3738
|
config?: {
|
|
3739
3739
|
label?: string | null | undefined;
|
|
3740
|
-
useAsTitle?: boolean
|
|
3741
|
-
placeholder?: string
|
|
3742
|
-
select?: "web" | "media" | "document" | null
|
|
3743
|
-
customtypes?: readonly string[]
|
|
3744
|
-
masks?: readonly string[]
|
|
3745
|
-
tags?: readonly string[]
|
|
3746
|
-
allowTargetBlank?: boolean
|
|
3747
|
-
}
|
|
3740
|
+
useAsTitle?: boolean;
|
|
3741
|
+
placeholder?: string;
|
|
3742
|
+
select?: "web" | "media" | "document" | null;
|
|
3743
|
+
customtypes?: readonly string[];
|
|
3744
|
+
masks?: readonly string[];
|
|
3745
|
+
tags?: readonly string[];
|
|
3746
|
+
allowTargetBlank?: boolean;
|
|
3747
|
+
};
|
|
3748
3748
|
}) | ({
|
|
3749
3749
|
type: "Number";
|
|
3750
3750
|
} & {
|
|
3751
3751
|
fieldset?: string | null | undefined;
|
|
3752
3752
|
config?: {
|
|
3753
3753
|
label?: string | null | undefined;
|
|
3754
|
-
placeholder?: string
|
|
3755
|
-
min?: number
|
|
3756
|
-
max?: number
|
|
3757
|
-
step?: number
|
|
3758
|
-
}
|
|
3754
|
+
placeholder?: string;
|
|
3755
|
+
min?: number;
|
|
3756
|
+
max?: number;
|
|
3757
|
+
step?: number;
|
|
3758
|
+
};
|
|
3759
3759
|
}) | ({
|
|
3760
3760
|
type: "Range";
|
|
3761
3761
|
} & {
|
|
3762
3762
|
fieldset?: string | null | undefined;
|
|
3763
3763
|
config?: {
|
|
3764
3764
|
label?: string | null | undefined;
|
|
3765
|
-
placeholder?: string
|
|
3766
|
-
min?: number
|
|
3767
|
-
max?: number
|
|
3768
|
-
step?: number
|
|
3769
|
-
}
|
|
3765
|
+
placeholder?: string;
|
|
3766
|
+
min?: number;
|
|
3767
|
+
max?: number;
|
|
3768
|
+
step?: number;
|
|
3769
|
+
};
|
|
3770
3770
|
}) | ({
|
|
3771
3771
|
type: "StructuredText";
|
|
3772
3772
|
} & {
|
|
3773
3773
|
fieldset?: string | null | undefined;
|
|
3774
3774
|
config?: {
|
|
3775
3775
|
label?: string | null | undefined;
|
|
3776
|
-
placeholder?: string
|
|
3777
|
-
useAsTitle?: boolean
|
|
3778
|
-
single?: string
|
|
3779
|
-
multi?: string
|
|
3776
|
+
placeholder?: string;
|
|
3777
|
+
useAsTitle?: boolean;
|
|
3778
|
+
single?: string;
|
|
3779
|
+
multi?: string;
|
|
3780
3780
|
imageConstraint?: {
|
|
3781
|
-
width?: number | null
|
|
3782
|
-
height?: number | null
|
|
3783
|
-
}
|
|
3784
|
-
labels?: readonly string[]
|
|
3785
|
-
allowTargetBlank?: boolean
|
|
3786
|
-
}
|
|
3781
|
+
width?: number | null;
|
|
3782
|
+
height?: number | null;
|
|
3783
|
+
};
|
|
3784
|
+
labels?: readonly string[];
|
|
3785
|
+
allowTargetBlank?: boolean;
|
|
3786
|
+
};
|
|
3787
3787
|
}) | ({
|
|
3788
3788
|
type: "Select";
|
|
3789
3789
|
} & {
|
|
3790
3790
|
fieldset?: string | null | undefined;
|
|
3791
3791
|
config?: {
|
|
3792
3792
|
label?: string | null | undefined;
|
|
3793
|
-
placeholder?: string
|
|
3794
|
-
default_value?: string
|
|
3795
|
-
options?: readonly string[]
|
|
3796
|
-
}
|
|
3793
|
+
placeholder?: string;
|
|
3794
|
+
default_value?: string;
|
|
3795
|
+
options?: readonly string[];
|
|
3796
|
+
};
|
|
3797
3797
|
}) | ({
|
|
3798
3798
|
type: "Separator";
|
|
3799
3799
|
} & {
|
|
3800
3800
|
config?: {
|
|
3801
3801
|
label?: string | null | undefined;
|
|
3802
|
-
}
|
|
3802
|
+
};
|
|
3803
3803
|
}) | ({
|
|
3804
3804
|
type: "Text";
|
|
3805
3805
|
} & {
|
|
3806
3806
|
fieldset?: string | null | undefined;
|
|
3807
3807
|
config?: {
|
|
3808
3808
|
label?: string | null | undefined;
|
|
3809
|
-
useAsTitle?: boolean
|
|
3810
|
-
placeholder?: string
|
|
3811
|
-
}
|
|
3809
|
+
useAsTitle?: boolean;
|
|
3810
|
+
placeholder?: string;
|
|
3811
|
+
};
|
|
3812
3812
|
}) | ({
|
|
3813
3813
|
type: "Timestamp";
|
|
3814
3814
|
} & {
|
|
3815
3815
|
fieldset?: string | null | undefined;
|
|
3816
3816
|
config?: {
|
|
3817
3817
|
label?: string | null | undefined;
|
|
3818
|
-
placeholder?: string
|
|
3819
|
-
default?: string
|
|
3820
|
-
}
|
|
3818
|
+
placeholder?: string;
|
|
3819
|
+
default?: string;
|
|
3820
|
+
};
|
|
3821
3821
|
});
|
|
3822
|
-
}
|
|
3822
|
+
};
|
|
3823
3823
|
config?: {
|
|
3824
3824
|
label?: string | null | undefined;
|
|
3825
|
-
}
|
|
3825
|
+
};
|
|
3826
3826
|
}) | ({
|
|
3827
3827
|
type: "Group";
|
|
3828
3828
|
} & {
|
|
3829
3829
|
fieldset?: string | null | undefined;
|
|
3830
|
-
icon?: string
|
|
3831
|
-
description?: string
|
|
3830
|
+
icon?: string;
|
|
3831
|
+
description?: string;
|
|
3832
3832
|
config?: {
|
|
3833
3833
|
label?: string | null | undefined;
|
|
3834
|
-
repeat?: boolean
|
|
3834
|
+
repeat?: boolean;
|
|
3835
3835
|
fields?: {
|
|
3836
3836
|
[x: string]: ({
|
|
3837
3837
|
type: "Boolean";
|
|
3838
3838
|
} & {
|
|
3839
3839
|
config?: {
|
|
3840
3840
|
label?: string | null | undefined;
|
|
3841
|
-
default_value?: boolean
|
|
3842
|
-
placeholder_true?: string
|
|
3843
|
-
placeholder_false?: string
|
|
3844
|
-
}
|
|
3841
|
+
default_value?: boolean;
|
|
3842
|
+
placeholder_true?: string;
|
|
3843
|
+
placeholder_false?: string;
|
|
3844
|
+
};
|
|
3845
3845
|
}) | ({
|
|
3846
3846
|
type: "Color";
|
|
3847
3847
|
} & {
|
|
3848
3848
|
fieldset?: string | null | undefined;
|
|
3849
3849
|
config?: {
|
|
3850
3850
|
label?: string | null | undefined;
|
|
3851
|
-
placeholder?: string
|
|
3852
|
-
}
|
|
3851
|
+
placeholder?: string;
|
|
3852
|
+
};
|
|
3853
3853
|
}) | ({
|
|
3854
3854
|
type: "Date";
|
|
3855
3855
|
} & {
|
|
3856
3856
|
fieldset?: string | null | undefined;
|
|
3857
3857
|
config?: {
|
|
3858
3858
|
label?: string | null | undefined;
|
|
3859
|
-
placeholder?: string
|
|
3860
|
-
default?: string
|
|
3861
|
-
}
|
|
3859
|
+
placeholder?: string;
|
|
3860
|
+
default?: string;
|
|
3861
|
+
};
|
|
3862
3862
|
}) | ({
|
|
3863
3863
|
type: "Embed";
|
|
3864
3864
|
} & {
|
|
3865
3865
|
fieldset?: string | null | undefined;
|
|
3866
3866
|
config?: {
|
|
3867
3867
|
label?: string | null | undefined;
|
|
3868
|
-
placeholder?: string
|
|
3869
|
-
useAsTitle?: boolean
|
|
3870
|
-
}
|
|
3868
|
+
placeholder?: string;
|
|
3869
|
+
useAsTitle?: boolean;
|
|
3870
|
+
};
|
|
3871
3871
|
}) | ({
|
|
3872
3872
|
type: "GeoPoint";
|
|
3873
3873
|
} & {
|
|
3874
3874
|
fieldset?: string | null | undefined;
|
|
3875
3875
|
config?: {
|
|
3876
3876
|
label?: string | null | undefined;
|
|
3877
|
-
}
|
|
3877
|
+
};
|
|
3878
3878
|
}) | ({
|
|
3879
3879
|
type: "Image";
|
|
3880
3880
|
} & {
|
|
3881
3881
|
fieldset?: string | null | undefined;
|
|
3882
3882
|
config?: {
|
|
3883
3883
|
label?: string | null | undefined;
|
|
3884
|
-
placeholder?: string
|
|
3884
|
+
placeholder?: string;
|
|
3885
3885
|
constraint?: {
|
|
3886
|
-
width?: number | null
|
|
3887
|
-
height?: number | null
|
|
3888
|
-
}
|
|
3886
|
+
width?: number | null;
|
|
3887
|
+
height?: number | null;
|
|
3888
|
+
};
|
|
3889
3889
|
thumbnails?: readonly ({
|
|
3890
3890
|
name: string;
|
|
3891
3891
|
} & {
|
|
3892
|
-
width?: number | null
|
|
3893
|
-
height?: number | null
|
|
3894
|
-
})[]
|
|
3895
|
-
}
|
|
3892
|
+
width?: number | null;
|
|
3893
|
+
height?: number | null;
|
|
3894
|
+
})[];
|
|
3895
|
+
};
|
|
3896
3896
|
}) | ({
|
|
3897
3897
|
type: "IntegrationFields";
|
|
3898
3898
|
} & {
|
|
3899
3899
|
fieldset?: string | null | undefined;
|
|
3900
3900
|
config?: {
|
|
3901
3901
|
label?: string | null | undefined;
|
|
3902
|
-
placeholder?: string
|
|
3903
|
-
catalog?: string
|
|
3904
|
-
}
|
|
3902
|
+
placeholder?: string;
|
|
3903
|
+
catalog?: string;
|
|
3904
|
+
};
|
|
3905
3905
|
}) | ({
|
|
3906
3906
|
type: "Link";
|
|
3907
3907
|
} & {
|
|
3908
3908
|
fieldset?: string | null | undefined;
|
|
3909
3909
|
config?: {
|
|
3910
3910
|
label?: string | null | undefined;
|
|
3911
|
-
useAsTitle?: boolean
|
|
3912
|
-
placeholder?: string
|
|
3913
|
-
select?: "web" | "media" | "document" | null
|
|
3914
|
-
customtypes?: readonly string[]
|
|
3915
|
-
masks?: readonly string[]
|
|
3916
|
-
tags?: readonly string[]
|
|
3917
|
-
allowTargetBlank?: boolean
|
|
3918
|
-
}
|
|
3911
|
+
useAsTitle?: boolean;
|
|
3912
|
+
placeholder?: string;
|
|
3913
|
+
select?: "web" | "media" | "document" | null;
|
|
3914
|
+
customtypes?: readonly string[];
|
|
3915
|
+
masks?: readonly string[];
|
|
3916
|
+
tags?: readonly string[];
|
|
3917
|
+
allowTargetBlank?: boolean;
|
|
3918
|
+
};
|
|
3919
3919
|
}) | ({
|
|
3920
3920
|
type: "Number";
|
|
3921
3921
|
} & {
|
|
3922
3922
|
fieldset?: string | null | undefined;
|
|
3923
3923
|
config?: {
|
|
3924
3924
|
label?: string | null | undefined;
|
|
3925
|
-
placeholder?: string
|
|
3926
|
-
min?: number
|
|
3927
|
-
max?: number
|
|
3928
|
-
step?: number
|
|
3929
|
-
}
|
|
3925
|
+
placeholder?: string;
|
|
3926
|
+
min?: number;
|
|
3927
|
+
max?: number;
|
|
3928
|
+
step?: number;
|
|
3929
|
+
};
|
|
3930
3930
|
}) | ({
|
|
3931
3931
|
type: "Range";
|
|
3932
3932
|
} & {
|
|
3933
3933
|
fieldset?: string | null | undefined;
|
|
3934
3934
|
config?: {
|
|
3935
3935
|
label?: string | null | undefined;
|
|
3936
|
-
placeholder?: string
|
|
3937
|
-
min?: number
|
|
3938
|
-
max?: number
|
|
3939
|
-
step?: number
|
|
3940
|
-
}
|
|
3936
|
+
placeholder?: string;
|
|
3937
|
+
min?: number;
|
|
3938
|
+
max?: number;
|
|
3939
|
+
step?: number;
|
|
3940
|
+
};
|
|
3941
3941
|
}) | ({
|
|
3942
3942
|
type: "StructuredText";
|
|
3943
3943
|
} & {
|
|
3944
3944
|
fieldset?: string | null | undefined;
|
|
3945
3945
|
config?: {
|
|
3946
3946
|
label?: string | null | undefined;
|
|
3947
|
-
placeholder?: string
|
|
3948
|
-
useAsTitle?: boolean
|
|
3949
|
-
single?: string
|
|
3950
|
-
multi?: string
|
|
3947
|
+
placeholder?: string;
|
|
3948
|
+
useAsTitle?: boolean;
|
|
3949
|
+
single?: string;
|
|
3950
|
+
multi?: string;
|
|
3951
3951
|
imageConstraint?: {
|
|
3952
|
-
width?: number | null
|
|
3953
|
-
height?: number | null
|
|
3954
|
-
}
|
|
3955
|
-
labels?: readonly string[]
|
|
3956
|
-
allowTargetBlank?: boolean
|
|
3957
|
-
}
|
|
3952
|
+
width?: number | null;
|
|
3953
|
+
height?: number | null;
|
|
3954
|
+
};
|
|
3955
|
+
labels?: readonly string[];
|
|
3956
|
+
allowTargetBlank?: boolean;
|
|
3957
|
+
};
|
|
3958
3958
|
}) | ({
|
|
3959
3959
|
type: "Select";
|
|
3960
3960
|
} & {
|
|
3961
3961
|
fieldset?: string | null | undefined;
|
|
3962
3962
|
config?: {
|
|
3963
3963
|
label?: string | null | undefined;
|
|
3964
|
-
placeholder?: string
|
|
3965
|
-
default_value?: string
|
|
3966
|
-
options?: readonly string[]
|
|
3967
|
-
}
|
|
3964
|
+
placeholder?: string;
|
|
3965
|
+
default_value?: string;
|
|
3966
|
+
options?: readonly string[];
|
|
3967
|
+
};
|
|
3968
3968
|
}) | ({
|
|
3969
3969
|
type: "Separator";
|
|
3970
3970
|
} & {
|
|
3971
3971
|
config?: {
|
|
3972
3972
|
label?: string | null | undefined;
|
|
3973
|
-
}
|
|
3973
|
+
};
|
|
3974
3974
|
}) | ({
|
|
3975
3975
|
type: "Text";
|
|
3976
3976
|
} & {
|
|
3977
3977
|
fieldset?: string | null | undefined;
|
|
3978
3978
|
config?: {
|
|
3979
3979
|
label?: string | null | undefined;
|
|
3980
|
-
useAsTitle?: boolean
|
|
3981
|
-
placeholder?: string
|
|
3982
|
-
}
|
|
3980
|
+
useAsTitle?: boolean;
|
|
3981
|
+
placeholder?: string;
|
|
3982
|
+
};
|
|
3983
3983
|
}) | ({
|
|
3984
3984
|
type: "Timestamp";
|
|
3985
3985
|
} & {
|
|
3986
3986
|
fieldset?: string | null | undefined;
|
|
3987
3987
|
config?: {
|
|
3988
3988
|
label?: string | null | undefined;
|
|
3989
|
-
placeholder?: string
|
|
3990
|
-
default?: string
|
|
3991
|
-
}
|
|
3989
|
+
placeholder?: string;
|
|
3990
|
+
default?: string;
|
|
3991
|
+
};
|
|
3992
3992
|
});
|
|
3993
|
-
}
|
|
3994
|
-
}
|
|
3993
|
+
};
|
|
3994
|
+
};
|
|
3995
3995
|
}) | {
|
|
3996
3996
|
type: "SharedSlice";
|
|
3997
3997
|
};
|
|
3998
|
-
}
|
|
3998
|
+
};
|
|
3999
3999
|
}, unknown, unknown>;
|
|
4000
4000
|
}>]>>;
|
|
4001
4001
|
export declare type DynamicSlices = t.TypeOf<typeof DynamicSlices>;
|