@nxtedition/types 23.1.0 → 23.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/common/settings.d.ts +18 -0
- package/dist/nxtpression.d.ts +44 -10
- package/dist/records/domains/media.d.ts +6 -0
- package/dist/records/domains/publish/facebook.d.ts +1 -2
- package/dist/records/exact/media.d.ts +2 -0
- package/dist/records/exact/monitor.d.ts +14 -8
- package/dist/records/validate/assert-guard.js +548 -377
- package/dist/records/validate/assert.js +549 -377
- package/dist/records/validate/is.js +22 -21
- package/dist/records/validate/schemas.js +172 -62
- package/dist/records/validate/stringify.js +46 -35
- package/dist/records/validate/utils.js +1 -1
- package/dist/records/validate/validate-equals.js +705 -486
- package/dist/records/validate/validate.js +519 -367
- package/package.json +1 -1
|
@@ -1342,17 +1342,17 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1342
1342
|
}; })()(input);
|
|
1343
1343
|
}
|
|
1344
1344
|
case "nxt.status?": {
|
|
1345
|
-
return (() => { const _io0 = input => "object" === typeof input.nodes && null !== input.nodes && false === Array.isArray(input.nodes) && _io1(input.nodes) && ("object" === typeof input.services && null !== input.services && false === Array.isArray(input.services) &&
|
|
1345
|
+
return (() => { const _io0 = input => "object" === typeof input.nodes && null !== input.nodes && false === Array.isArray(input.nodes) && _io1(input.nodes) && ("object" === typeof input.services && null !== input.services && false === Array.isArray(input.services) && _io5(input.services)) && "number" === typeof input.level && "string" === typeof input.status; const _io1 = input => Object.keys(input).every(key => {
|
|
1346
1346
|
const value = input[key];
|
|
1347
1347
|
if (undefined === value)
|
|
1348
1348
|
return true;
|
|
1349
1349
|
return "object" === typeof value && null !== value && _io2(value);
|
|
1350
|
-
}); const _io2 = input => (undefined === input.state || "string" === typeof input.state) && (undefined === input.role || "string" === typeof input.role) && (undefined === input.leader || "boolean" === typeof input.leader) && (undefined === input.availability || "string" === typeof input.availability) && (undefined === input.classes || Array.isArray(input.classes) && input.classes.every(elem => "string" === typeof elem)) && (undefined === input.address || "string" === typeof input.address) && "number" === typeof input.level && "string" === typeof input.status && (Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io3(elem))); const _io3 = input => "string" === typeof input.msg && "number" === typeof input.level; const _io4 = input => Object.keys(input).every(key => {
|
|
1350
|
+
}); const _io2 = input => (undefined === input.state || "string" === typeof input.state) && (undefined === input.role || "string" === typeof input.role) && (undefined === input.leader || "boolean" === typeof input.leader) && (undefined === input.availability || "string" === typeof input.availability) && (undefined === input.classes || Array.isArray(input.classes) && input.classes.every(elem => "string" === typeof elem)) && (undefined === input.address || "string" === typeof input.address) && "number" === typeof input.level && "string" === typeof input.status && (Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io3(elem))); const _io3 = input => "string" === typeof input.id && "string" === typeof input.msg && "number" === typeof input.level && (undefined === input.ignored || "boolean" === typeof input.ignored) && (undefined === input.title || "string" === typeof input.title) && (null !== input.url && (undefined === input.url || "string" === typeof input.url || "object" === typeof input.url && null !== input.url && _io4(input.url))); const _io4 = input => "string" === typeof input.title && "string" === typeof input.url; const _io5 = input => Object.keys(input).every(key => {
|
|
1351
1351
|
const value = input[key];
|
|
1352
1352
|
if (undefined === value)
|
|
1353
1353
|
return true;
|
|
1354
|
-
return "object" === typeof value && null !== value &&
|
|
1355
|
-
}); const
|
|
1354
|
+
return "object" === typeof value && null !== value && _io6(value);
|
|
1355
|
+
}); const _io6 = input => (undefined === input.image || "string" === typeof input.image) && (undefined === input.running || "number" === typeof input.running) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.total || "number" === typeof input.total) && (undefined === input.ignored || "boolean" === typeof input.ignored) && (undefined === input.tasks || Array.isArray(input.tasks) && input.tasks.every(elem => "object" === typeof elem && null !== elem && _io7(elem))) && "number" === typeof input.level && "string" === typeof input.status && (Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io3(elem))); const _io7 = input => "string" === typeof input.id && "string" === typeof input.node && "string" === typeof input.container && (undefined === input.level || "number" === typeof input.level) && (undefined === input.status || "string" === typeof input.status) && (Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io3(elem))); const _ao0 = (input, _path, _exceptionable = true) => (("object" === typeof input.nodes && null !== input.nodes && false === Array.isArray(input.nodes) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1356
1356
|
method: "typia.assertGuard",
|
|
1357
1357
|
path: _path + ".nodes",
|
|
1358
1358
|
expected: "__type",
|
|
@@ -1367,7 +1367,7 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1367
1367
|
path: _path + ".services",
|
|
1368
1368
|
expected: "__type.o2",
|
|
1369
1369
|
value: input.services
|
|
1370
|
-
}, _errorFactory)) &&
|
|
1370
|
+
}, _errorFactory)) && _ao5(input.services, _path + ".services", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1371
1371
|
method: "typia.assertGuard",
|
|
1372
1372
|
path: _path + ".services",
|
|
1373
1373
|
expected: "__type.o2",
|
|
@@ -1450,24 +1450,29 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1450
1450
|
}, _errorFactory)) && ((Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1451
1451
|
method: "typia.assertGuard",
|
|
1452
1452
|
path: _path + ".messages",
|
|
1453
|
-
expected: "Array<
|
|
1453
|
+
expected: "Array<NxtStatusMessage>",
|
|
1454
1454
|
value: input.messages
|
|
1455
1455
|
}, _errorFactory)) && input.messages.every((elem, _index7) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1456
1456
|
method: "typia.assertGuard",
|
|
1457
1457
|
path: _path + ".messages[" + _index7 + "]",
|
|
1458
|
-
expected: "
|
|
1458
|
+
expected: "NxtStatusMessage",
|
|
1459
1459
|
value: elem
|
|
1460
1460
|
}, _errorFactory)) && _ao3(elem, _path + ".messages[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1461
1461
|
method: "typia.assertGuard",
|
|
1462
1462
|
path: _path + ".messages[" + _index7 + "]",
|
|
1463
|
-
expected: "
|
|
1463
|
+
expected: "NxtStatusMessage",
|
|
1464
1464
|
value: elem
|
|
1465
1465
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1466
1466
|
method: "typia.assertGuard",
|
|
1467
1467
|
path: _path + ".messages",
|
|
1468
|
-
expected: "Array<
|
|
1468
|
+
expected: "Array<NxtStatusMessage>",
|
|
1469
1469
|
value: input.messages
|
|
1470
|
-
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => ("string" === typeof input.
|
|
1470
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => ("string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1471
|
+
method: "typia.assertGuard",
|
|
1472
|
+
path: _path + ".id",
|
|
1473
|
+
expected: "string",
|
|
1474
|
+
value: input.id
|
|
1475
|
+
}, _errorFactory)) && ("string" === typeof input.msg || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1471
1476
|
method: "typia.assertGuard",
|
|
1472
1477
|
path: _path + ".msg",
|
|
1473
1478
|
expected: "string",
|
|
@@ -1477,7 +1482,42 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1477
1482
|
path: _path + ".level",
|
|
1478
1483
|
expected: "number",
|
|
1479
1484
|
value: input.level
|
|
1480
|
-
}, _errorFactory))
|
|
1485
|
+
}, _errorFactory)) && (undefined === input.ignored || "boolean" === typeof input.ignored || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1486
|
+
method: "typia.assertGuard",
|
|
1487
|
+
path: _path + ".ignored",
|
|
1488
|
+
expected: "(boolean | undefined)",
|
|
1489
|
+
value: input.ignored
|
|
1490
|
+
}, _errorFactory)) && (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1491
|
+
method: "typia.assertGuard",
|
|
1492
|
+
path: _path + ".title",
|
|
1493
|
+
expected: "(string | undefined)",
|
|
1494
|
+
value: input.title
|
|
1495
|
+
}, _errorFactory)) && ((null !== input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1496
|
+
method: "typia.assertGuard",
|
|
1497
|
+
path: _path + ".url",
|
|
1498
|
+
expected: "(__type.o1 | string | undefined)",
|
|
1499
|
+
value: input.url
|
|
1500
|
+
}, _errorFactory)) && (undefined === input.url || "string" === typeof input.url || ("object" === typeof input.url && null !== input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1501
|
+
method: "typia.assertGuard",
|
|
1502
|
+
path: _path + ".url",
|
|
1503
|
+
expected: "(__type.o1 | string | undefined)",
|
|
1504
|
+
value: input.url
|
|
1505
|
+
}, _errorFactory)) && _ao4(input.url, _path + ".url", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1506
|
+
method: "typia.assertGuard",
|
|
1507
|
+
path: _path + ".url",
|
|
1508
|
+
expected: "(__type.o1 | string | undefined)",
|
|
1509
|
+
value: input.url
|
|
1510
|
+
}, _errorFactory))); const _ao4 = (input, _path, _exceptionable = true) => ("string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1511
|
+
method: "typia.assertGuard",
|
|
1512
|
+
path: _path + ".title",
|
|
1513
|
+
expected: "string",
|
|
1514
|
+
value: input.title
|
|
1515
|
+
}, _errorFactory)) && ("string" === typeof input.url || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1516
|
+
method: "typia.assertGuard",
|
|
1517
|
+
path: _path + ".url",
|
|
1518
|
+
expected: "string",
|
|
1519
|
+
value: input.url
|
|
1520
|
+
}, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
1481
1521
|
const value = input[key];
|
|
1482
1522
|
if (undefined === value)
|
|
1483
1523
|
return true;
|
|
@@ -1486,13 +1526,13 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1486
1526
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
1487
1527
|
expected: "NxtStatusService",
|
|
1488
1528
|
value: value
|
|
1489
|
-
}, _errorFactory)) &&
|
|
1529
|
+
}, _errorFactory)) && _ao6(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1490
1530
|
method: "typia.assertGuard",
|
|
1491
1531
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
1492
1532
|
expected: "NxtStatusService",
|
|
1493
1533
|
value: value
|
|
1494
1534
|
}, _errorFactory);
|
|
1495
|
-
}); const
|
|
1535
|
+
}); const _ao6 = (input, _path, _exceptionable = true) => (undefined === input.image || "string" === typeof input.image || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1496
1536
|
method: "typia.assertGuard",
|
|
1497
1537
|
path: _path + ".image",
|
|
1498
1538
|
expected: "(string | undefined)",
|
|
@@ -1512,17 +1552,22 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1512
1552
|
path: _path + ".total",
|
|
1513
1553
|
expected: "(number | undefined)",
|
|
1514
1554
|
value: input.total
|
|
1555
|
+
}, _errorFactory)) && (undefined === input.ignored || "boolean" === typeof input.ignored || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1556
|
+
method: "typia.assertGuard",
|
|
1557
|
+
path: _path + ".ignored",
|
|
1558
|
+
expected: "(boolean | undefined)",
|
|
1559
|
+
value: input.ignored
|
|
1515
1560
|
}, _errorFactory)) && (undefined === input.tasks || (Array.isArray(input.tasks) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1516
1561
|
method: "typia.assertGuard",
|
|
1517
1562
|
path: _path + ".tasks",
|
|
1518
|
-
expected: "(Array<__type
|
|
1563
|
+
expected: "(Array<__type> | undefined)",
|
|
1519
1564
|
value: input.tasks
|
|
1520
1565
|
}, _errorFactory)) && input.tasks.every((elem, _index8) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1521
1566
|
method: "typia.assertGuard",
|
|
1522
1567
|
path: _path + ".tasks[" + _index8 + "]",
|
|
1523
1568
|
expected: "__type.o3",
|
|
1524
1569
|
value: elem
|
|
1525
|
-
}, _errorFactory)) &&
|
|
1570
|
+
}, _errorFactory)) && _ao7(elem, _path + ".tasks[" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1526
1571
|
method: "typia.assertGuard",
|
|
1527
1572
|
path: _path + ".tasks[" + _index8 + "]",
|
|
1528
1573
|
expected: "__type.o3",
|
|
@@ -1530,7 +1575,7 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1530
1575
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1531
1576
|
method: "typia.assertGuard",
|
|
1532
1577
|
path: _path + ".tasks",
|
|
1533
|
-
expected: "(Array<__type
|
|
1578
|
+
expected: "(Array<__type> | undefined)",
|
|
1534
1579
|
value: input.tasks
|
|
1535
1580
|
}, _errorFactory)) && ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1536
1581
|
method: "typia.assertGuard",
|
|
@@ -1545,24 +1590,24 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1545
1590
|
}, _errorFactory)) && ((Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1546
1591
|
method: "typia.assertGuard",
|
|
1547
1592
|
path: _path + ".messages",
|
|
1548
|
-
expected: "Array<
|
|
1593
|
+
expected: "Array<NxtStatusMessage>",
|
|
1549
1594
|
value: input.messages
|
|
1550
1595
|
}, _errorFactory)) && input.messages.every((elem, _index9) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1551
1596
|
method: "typia.assertGuard",
|
|
1552
1597
|
path: _path + ".messages[" + _index9 + "]",
|
|
1553
|
-
expected: "
|
|
1598
|
+
expected: "NxtStatusMessage",
|
|
1554
1599
|
value: elem
|
|
1555
1600
|
}, _errorFactory)) && _ao3(elem, _path + ".messages[" + _index9 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1556
1601
|
method: "typia.assertGuard",
|
|
1557
1602
|
path: _path + ".messages[" + _index9 + "]",
|
|
1558
|
-
expected: "
|
|
1603
|
+
expected: "NxtStatusMessage",
|
|
1559
1604
|
value: elem
|
|
1560
1605
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1561
1606
|
method: "typia.assertGuard",
|
|
1562
1607
|
path: _path + ".messages",
|
|
1563
|
-
expected: "Array<
|
|
1608
|
+
expected: "Array<NxtStatusMessage>",
|
|
1564
1609
|
value: input.messages
|
|
1565
|
-
}, _errorFactory)); const
|
|
1610
|
+
}, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => ("string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1566
1611
|
method: "typia.assertGuard",
|
|
1567
1612
|
path: _path + ".id",
|
|
1568
1613
|
expected: "string",
|
|
@@ -1590,33 +1635,23 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1590
1635
|
}, _errorFactory)) && ((Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1591
1636
|
method: "typia.assertGuard",
|
|
1592
1637
|
path: _path + ".messages",
|
|
1593
|
-
expected: "Array<
|
|
1638
|
+
expected: "Array<NxtStatusMessage>",
|
|
1594
1639
|
value: input.messages
|
|
1595
1640
|
}, _errorFactory)) && input.messages.every((elem, _index10) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1596
1641
|
method: "typia.assertGuard",
|
|
1597
1642
|
path: _path + ".messages[" + _index10 + "]",
|
|
1598
|
-
expected: "
|
|
1643
|
+
expected: "NxtStatusMessage",
|
|
1599
1644
|
value: elem
|
|
1600
|
-
}, _errorFactory)) &&
|
|
1645
|
+
}, _errorFactory)) && _ao3(elem, _path + ".messages[" + _index10 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1601
1646
|
method: "typia.assertGuard",
|
|
1602
1647
|
path: _path + ".messages[" + _index10 + "]",
|
|
1603
|
-
expected: "
|
|
1648
|
+
expected: "NxtStatusMessage",
|
|
1604
1649
|
value: elem
|
|
1605
1650
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1606
1651
|
method: "typia.assertGuard",
|
|
1607
1652
|
path: _path + ".messages",
|
|
1608
|
-
expected: "Array<
|
|
1653
|
+
expected: "Array<NxtStatusMessage>",
|
|
1609
1654
|
value: input.messages
|
|
1610
|
-
}, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => ("string" === typeof input.msg || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1611
|
-
method: "typia.assertGuard",
|
|
1612
|
-
path: _path + ".msg",
|
|
1613
|
-
expected: "string",
|
|
1614
|
-
value: input.msg
|
|
1615
|
-
}, _errorFactory)) && ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1616
|
-
method: "typia.assertGuard",
|
|
1617
|
-
path: _path + ".level",
|
|
1618
|
-
expected: "number",
|
|
1619
|
-
value: input.level
|
|
1620
1655
|
}, _errorFactory)); const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
1621
1656
|
if (false === __is(input)) {
|
|
1622
1657
|
_errorFactory = errorFactory;
|
|
@@ -1635,12 +1670,17 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1635
1670
|
}; })()(input);
|
|
1636
1671
|
}
|
|
1637
1672
|
case "media.subtitles": {
|
|
1638
|
-
return (() => { const _io0 = input => (undefined === input.languages || "object" === typeof input.languages && null !== input.languages && false === Array.isArray(input.languages) && _io1(input.languages)) && (undefined === input.fontFaces || Array.isArray(input.fontFaces) && input.fontFaces.every(elem => "object" === typeof elem && null !== elem && _io2(elem))); const _io1 = input => Object.keys(input).every(key => {
|
|
1673
|
+
return (() => { const _io0 = input => (undefined === input.defaultLanguage || "string" === typeof input.defaultLanguage) && (undefined === input.languages || "object" === typeof input.languages && null !== input.languages && false === Array.isArray(input.languages) && _io1(input.languages)) && (undefined === input.fontFaces || Array.isArray(input.fontFaces) && input.fontFaces.every(elem => "object" === typeof elem && null !== elem && _io2(elem))); const _io1 = input => Object.keys(input).every(key => {
|
|
1639
1674
|
const value = input[key];
|
|
1640
1675
|
if (undefined === value)
|
|
1641
1676
|
return true;
|
|
1642
1677
|
return "string" === typeof value;
|
|
1643
|
-
}); const _io2 = input => "string" === typeof input.family && (undefined === input.asset || "string" === typeof input.asset) && (undefined === input.weight || "bold" === input.weight || "normal" === input.weight) && (undefined === input.style || "italic" === input.style || "normal" === input.style); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.
|
|
1678
|
+
}); const _io2 = input => "string" === typeof input.family && (undefined === input.asset || "string" === typeof input.asset) && (undefined === input.weight || "bold" === input.weight || "normal" === input.weight) && (undefined === input.style || "italic" === input.style || "normal" === input.style); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.defaultLanguage || "string" === typeof input.defaultLanguage || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1679
|
+
method: "typia.assertGuard",
|
|
1680
|
+
path: _path + ".defaultLanguage",
|
|
1681
|
+
expected: "(string | undefined)",
|
|
1682
|
+
value: input.defaultLanguage
|
|
1683
|
+
}, _errorFactory)) && (undefined === input.languages || ("object" === typeof input.languages && null !== input.languages && false === Array.isArray(input.languages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1644
1684
|
method: "typia.assertGuard",
|
|
1645
1685
|
path: _path + ".languages",
|
|
1646
1686
|
expected: "(Record<string, string> | undefined)",
|
|
@@ -1718,12 +1758,17 @@ function _assertGuardExactRecord(name, input) {
|
|
|
1718
1758
|
}; })()(input);
|
|
1719
1759
|
}
|
|
1720
1760
|
case "media.subtitles?": {
|
|
1721
|
-
return (() => { const _io0 = input => (undefined === input.languages || "object" === typeof input.languages && null !== input.languages && false === Array.isArray(input.languages) && _io1(input.languages)) && (undefined === input.fontFaces || Array.isArray(input.fontFaces) && input.fontFaces.every(elem => "object" === typeof elem && null !== elem && _io2(elem))); const _io1 = input => Object.keys(input).every(key => {
|
|
1761
|
+
return (() => { const _io0 = input => (undefined === input.defaultLanguage || "string" === typeof input.defaultLanguage) && (undefined === input.languages || "object" === typeof input.languages && null !== input.languages && false === Array.isArray(input.languages) && _io1(input.languages)) && (undefined === input.fontFaces || Array.isArray(input.fontFaces) && input.fontFaces.every(elem => "object" === typeof elem && null !== elem && _io2(elem))); const _io1 = input => Object.keys(input).every(key => {
|
|
1722
1762
|
const value = input[key];
|
|
1723
1763
|
if (undefined === value)
|
|
1724
1764
|
return true;
|
|
1725
1765
|
return "string" === typeof value;
|
|
1726
|
-
}); const _io2 = input => "string" === typeof input.family && (undefined === input.asset || "string" === typeof input.asset) && (undefined === input.weight || "bold" === input.weight || "normal" === input.weight) && (undefined === input.style || "italic" === input.style || "normal" === input.style); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.
|
|
1766
|
+
}); const _io2 = input => "string" === typeof input.family && (undefined === input.asset || "string" === typeof input.asset) && (undefined === input.weight || "bold" === input.weight || "normal" === input.weight) && (undefined === input.style || "italic" === input.style || "normal" === input.style); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.defaultLanguage || "string" === typeof input.defaultLanguage || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1767
|
+
method: "typia.assertGuard",
|
|
1768
|
+
path: _path + ".defaultLanguage",
|
|
1769
|
+
expected: "(string | undefined)",
|
|
1770
|
+
value: input.defaultLanguage
|
|
1771
|
+
}, _errorFactory)) && (undefined === input.languages || ("object" === typeof input.languages && null !== input.languages && false === Array.isArray(input.languages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
1727
1772
|
method: "typia.assertGuard",
|
|
1728
1773
|
path: _path + ".languages",
|
|
1729
1774
|
expected: "(Record<string, string> | undefined)",
|
|
@@ -10673,6 +10718,34 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
10673
10718
|
}
|
|
10674
10719
|
}; })()(input);
|
|
10675
10720
|
}
|
|
10721
|
+
case ":media.consolidate?": {
|
|
10722
|
+
return (() => { const _io0 = input => ("completed" === input.status || "error" === input.status || "idle" === input.status || "pending" === input.status || "source_mismatch" === input.status) && (undefined === input.progress || "number" === typeof input.progress) && true; const _ao0 = (input, _path, _exceptionable = true) => ("completed" === input.status || "error" === input.status || "idle" === input.status || "pending" === input.status || "source_mismatch" === input.status || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10723
|
+
method: "typia.assertGuard",
|
|
10724
|
+
path: _path + ".status",
|
|
10725
|
+
expected: "(\"completed\" | \"error\" | \"idle\" | \"pending\" | \"source_mismatch\")",
|
|
10726
|
+
value: input.status
|
|
10727
|
+
}, _errorFactory)) && (undefined === input.progress || "number" === typeof input.progress || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10728
|
+
method: "typia.assertGuard",
|
|
10729
|
+
path: _path + ".progress",
|
|
10730
|
+
expected: "(number | undefined)",
|
|
10731
|
+
value: input.progress
|
|
10732
|
+
}, _errorFactory)) && true; const __is = input => "object" === typeof input && null !== input && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
10733
|
+
if (false === __is(input)) {
|
|
10734
|
+
_errorFactory = errorFactory;
|
|
10735
|
+
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
|
|
10736
|
+
method: "typia.assertGuard",
|
|
10737
|
+
path: _path + "",
|
|
10738
|
+
expected: "MediaDomainConsolidateRecordProvided",
|
|
10739
|
+
value: input
|
|
10740
|
+
}, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
10741
|
+
method: "typia.assertGuard",
|
|
10742
|
+
path: _path + "",
|
|
10743
|
+
expected: "MediaDomainConsolidateRecordProvided",
|
|
10744
|
+
value: input
|
|
10745
|
+
}, _errorFactory))(input, "$input", true);
|
|
10746
|
+
}
|
|
10747
|
+
}; })()(input);
|
|
10748
|
+
}
|
|
10676
10749
|
case ":media.renders?": {
|
|
10677
10750
|
return (() => { const _io0 = input => Array.isArray(input.children) && input.children.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem)); const _io1 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.title || "string" === typeof input.title) && (undefined === input.children || Array.isArray(input.children) && input.children.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem))); const _ao0 = (input, _path, _exceptionable = true) => (Array.isArray(input.children) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
10678
10751
|
method: "typia.assertGuard",
|
|
@@ -14237,36 +14310,34 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14237
14310
|
}; })()(input);
|
|
14238
14311
|
}
|
|
14239
14312
|
case ":publish.stats?": {
|
|
14240
|
-
return (() => { const _io0 = input => (undefined === input.status || "string" === typeof input.status) && (undefined === input.substatus || "string" === typeof input.substatus) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))) && true && true; const _io1 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io2 = input => (undefined === input.
|
|
14313
|
+
return (() => { const _io0 = input => (undefined === input.status || "string" === typeof input.status) && (undefined === input.substatus || "string" === typeof input.substatus) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))) && true && true; const _io1 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io2 = input => (undefined === input.retrieved || "object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) && _io3(input.retrieved)) && (undefined === input.defaults || "object" === typeof input.defaults && null !== input.defaults && _io6(input.defaults)) && (undefined === input.status || "string" === typeof input.status) && (undefined === input.substatus || "string" === typeof input.substatus) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io3 = input => (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io4(input.renders)); const _io4 = input => Object.keys(input).every(key => {
|
|
14241
14314
|
const value = input[key];
|
|
14242
14315
|
if (undefined === value)
|
|
14243
14316
|
return true;
|
|
14244
|
-
return "object" === typeof value && null !== value &&
|
|
14245
|
-
}); const
|
|
14317
|
+
return "object" === typeof value && null !== value && _io5(value);
|
|
14318
|
+
}); const _io5 = input => "string" === typeof input.path && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash); const _io6 = input => "string" === typeof input.directory && "string" === typeof input.filename && ("object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io7(input.renders)); const _io7 = input => Object.keys(input).every(key => {
|
|
14246
14319
|
const value = input[key];
|
|
14247
14320
|
if (undefined === value)
|
|
14248
14321
|
return true;
|
|
14249
14322
|
return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
|
|
14250
|
-
}); const
|
|
14323
|
+
}); const _io8 = input => (undefined === input.name || "string" === typeof input.name) && "string" === typeof input.path && (undefined === input.collisionStrategy || "overwrite" === input.collisionStrategy || "skip" === input.collisionStrategy) && (undefined === input.ignoreEmptyScene || "boolean" === typeof input.ignoreEmptyScene) && (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io9(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io17(input.profile)); const _io9 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.preset || "string" === typeof input.preset) && (null === input.input || undefined === input.input || "object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) && _io10(input.input)) && (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.subtitle || "string" === typeof input.subtitle) && (undefined === input.subtitleTracks || "object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) && _io11(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io14(input.video)) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io16(input.transcribe)); const _io10 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io11 = input => Object.keys(input).every(key => {
|
|
14251
14324
|
const value = input[key];
|
|
14252
14325
|
if (undefined === value)
|
|
14253
14326
|
return true;
|
|
14254
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14255
|
-
}); const
|
|
14327
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io12(value);
|
|
14328
|
+
}); const _io12 = input => (null === input.style || undefined === input.style || "string" === typeof input.style) && (undefined === input.styleOverrides || "object" === typeof input.styleOverrides && null !== input.styleOverrides && false === Array.isArray(input.styleOverrides) && _io13(input.styleOverrides)); const _io13 = input => (undefined === input.name || "string" === typeof input.name) && (undefined === input.fontname || "string" === typeof input.fontname) && (undefined === input.fontsize || "string" === typeof input.fontsize) && (undefined === input.primaryColour || "string" === typeof input.primaryColour) && (undefined === input.secondaryColour || "string" === typeof input.secondaryColour) && (undefined === input.outlineColour || "string" === typeof input.outlineColour) && (undefined === input.backColour || "string" === typeof input.backColour) && (undefined === input.bold || "string" === typeof input.bold) && (undefined === input.italic || "string" === typeof input.italic) && (undefined === input.underline || "string" === typeof input.underline) && (undefined === input.strikeOut || "string" === typeof input.strikeOut) && (undefined === input.scaleX || "string" === typeof input.scaleX) && (undefined === input.scaleY || "string" === typeof input.scaleY) && (undefined === input.spacing || "string" === typeof input.spacing) && (undefined === input.lineSpacing || "string" === typeof input.lineSpacing) && (undefined === input.angle || "string" === typeof input.angle) && (undefined === input.borderStyle || "string" === typeof input.borderStyle) && (undefined === input.outline || "string" === typeof input.outline) && (undefined === input.shadow || "string" === typeof input.shadow) && (undefined === input.alignment || "string" === typeof input.alignment) && (undefined === input.marginL || "string" === typeof input.marginL) && (undefined === input.marginR || "string" === typeof input.marginR) && (undefined === input.marginV || "string" === typeof input.marginV) && (undefined === input.encoding || "string" === typeof input.encoding); const _io14 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io15(input.crop); const _io15 = input => (undefined === input.x || "number" === typeof input.x) && (undefined === input.y || "number" === typeof input.y) && (undefined === input.width || "number" === typeof input.width) && (undefined === input.height || "number" === typeof input.height); const _io16 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io17 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io18(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io19(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io20(input.audio)) && true && (undefined === input.pick || Array.isArray(input.pick) && input.pick.every(elem => "string" === typeof elem)) && (null !== input.subtitle && (undefined === input.subtitle || "string" === typeof input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && false === Array.isArray(input.subtitle) && _io21(input.subtitle))); const _io18 = input => "string" === typeof input.engine; const _io19 = input => "string" === typeof input.language; const _io20 = input => (undefined === input.codec || "string" === typeof input.codec) && (undefined === input.pan || "string" === typeof input.pan) && (undefined === input.samplerate || "number" === typeof input.samplerate) && (undefined === input.split || "boolean" === typeof input.split); const _io21 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style) && (undefined === input.ccconverter || "object" === typeof input.ccconverter && null !== input.ccconverter && false === Array.isArray(input.ccconverter) && _io22(input.ccconverter)) && (undefined === input.ass || "object" === typeof input.ass && null !== input.ass && false === Array.isArray(input.ass) && _io23(input.ass)); const _io22 = input => undefined === input.preset || "string" === typeof input.preset; const _io23 = input => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping) && (undefined === input.scaledBorderAndShadow || "boolean" === typeof input.scaledBorderAndShadow) && (undefined === input.enableUnsafeLineSpacingHack || "boolean" === typeof input.enableUnsafeLineSpacingHack); const _io24 = input => "object" === typeof input.__context && null !== input.__context && _io25(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io8(input.__returnValue)); const _io25 = input => "object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) && _io26(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io26 = input => (undefined === input.type || "file" === input.type) && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io7(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io27(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io28(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io31(input.published)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset) && (undefined === input.connection || "string" === typeof input.connection) && (undefined === input.render || "object" === typeof input.render && null !== input.render && _io32(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io33(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io27 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io28 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.renders || "object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io29(input.renders)); const _io29 = input => Object.keys(input).every(key => {
|
|
14256
14329
|
const value = input[key];
|
|
14257
14330
|
if (undefined === value)
|
|
14258
14331
|
return true;
|
|
14259
|
-
return "object" === typeof value && null !== value && false === Array.isArray(value) &&
|
|
14260
|
-
}); const
|
|
14332
|
+
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io30(value);
|
|
14333
|
+
}); const _io30 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source); const _io31 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename; const _io32 = input => (undefined === input.preset || "string" === typeof input.preset) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io9(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io17(input.profile)); const _io33 = input => "string" === typeof input.method; const _iu0 = input => (() => {
|
|
14261
14334
|
if (undefined !== input.path)
|
|
14262
|
-
return
|
|
14335
|
+
return _io8(input);
|
|
14263
14336
|
else if (undefined !== input.__context)
|
|
14264
|
-
return
|
|
14337
|
+
return _io24(input);
|
|
14265
14338
|
else
|
|
14266
14339
|
return false;
|
|
14267
14340
|
})(); const _iu1 = input => (() => {
|
|
14268
|
-
if (_io3(input))
|
|
14269
|
-
return _io3(input);
|
|
14270
14341
|
if (_io2(input))
|
|
14271
14342
|
return _io2(input);
|
|
14272
14343
|
if (_io0(input))
|
|
@@ -14287,14 +14358,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14287
14358
|
path: _path + ".messages",
|
|
14288
14359
|
expected: "(Array<Message> | undefined)",
|
|
14289
14360
|
value: input.messages
|
|
14290
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
14361
|
+
}, _errorFactory)) && input.messages.every((elem, _index7) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14291
14362
|
method: "typia.assertGuard",
|
|
14292
|
-
path: _path + ".messages[" +
|
|
14363
|
+
path: _path + ".messages[" + _index7 + "]",
|
|
14293
14364
|
expected: "Message",
|
|
14294
14365
|
value: elem
|
|
14295
|
-
}, _errorFactory)) && _ao1(elem, _path + ".messages[" +
|
|
14366
|
+
}, _errorFactory)) && _ao1(elem, _path + ".messages[" + _index7 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14296
14367
|
method: "typia.assertGuard",
|
|
14297
|
-
path: _path + ".messages[" +
|
|
14368
|
+
path: _path + ".messages[" + _index7 + "]",
|
|
14298
14369
|
expected: "Message",
|
|
14299
14370
|
value: elem
|
|
14300
14371
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -14317,42 +14388,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14317
14388
|
path: _path + ".msg",
|
|
14318
14389
|
expected: "string",
|
|
14319
14390
|
value: input.msg
|
|
14320
|
-
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.
|
|
14321
|
-
method: "typia.assertGuard",
|
|
14322
|
-
path: _path + ".status",
|
|
14323
|
-
expected: "(string | undefined)",
|
|
14324
|
-
value: input.status
|
|
14325
|
-
}, _errorFactory)) && (undefined === input.substatus || "string" === typeof input.substatus || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14326
|
-
method: "typia.assertGuard",
|
|
14327
|
-
path: _path + ".substatus",
|
|
14328
|
-
expected: "(string | undefined)",
|
|
14329
|
-
value: input.substatus
|
|
14330
|
-
}, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14331
|
-
method: "typia.assertGuard",
|
|
14332
|
-
path: _path + ".messages",
|
|
14333
|
-
expected: "(Array<Message> | undefined)",
|
|
14334
|
-
value: input.messages
|
|
14335
|
-
}, _errorFactory)) && input.messages.every((elem, _index9) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14336
|
-
method: "typia.assertGuard",
|
|
14337
|
-
path: _path + ".messages[" + _index9 + "]",
|
|
14338
|
-
expected: "Message",
|
|
14339
|
-
value: elem
|
|
14340
|
-
}, _errorFactory)) && _ao1(elem, _path + ".messages[" + _index9 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14341
|
-
method: "typia.assertGuard",
|
|
14342
|
-
path: _path + ".messages[" + _index9 + "]",
|
|
14343
|
-
expected: "Message",
|
|
14344
|
-
value: elem
|
|
14345
|
-
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14346
|
-
method: "typia.assertGuard",
|
|
14347
|
-
path: _path + ".messages",
|
|
14348
|
-
expected: "(Array<Message> | undefined)",
|
|
14349
|
-
value: input.messages
|
|
14350
|
-
}, _errorFactory)) && true && true; const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.retrieved || ("object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14391
|
+
}, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.retrieved || ("object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14351
14392
|
method: "typia.assertGuard",
|
|
14352
14393
|
path: _path + ".retrieved",
|
|
14353
14394
|
expected: "(FilePublishRetrieved | undefined)",
|
|
14354
14395
|
value: input.retrieved
|
|
14355
|
-
}, _errorFactory)) &&
|
|
14396
|
+
}, _errorFactory)) && _ao3(input.retrieved, _path + ".retrieved", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14356
14397
|
method: "typia.assertGuard",
|
|
14357
14398
|
path: _path + ".retrieved",
|
|
14358
14399
|
expected: "(FilePublishRetrieved | undefined)",
|
|
@@ -14362,7 +14403,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14362
14403
|
path: _path + ".defaults",
|
|
14363
14404
|
expected: "(FilePublishDefaults | undefined)",
|
|
14364
14405
|
value: input.defaults
|
|
14365
|
-
}, _errorFactory)) &&
|
|
14406
|
+
}, _errorFactory)) && _ao6(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14366
14407
|
method: "typia.assertGuard",
|
|
14367
14408
|
path: _path + ".defaults",
|
|
14368
14409
|
expected: "(FilePublishDefaults | undefined)",
|
|
@@ -14382,14 +14423,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14382
14423
|
path: _path + ".messages",
|
|
14383
14424
|
expected: "(Array<Message> | undefined)",
|
|
14384
14425
|
value: input.messages
|
|
14385
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
14426
|
+
}, _errorFactory)) && input.messages.every((elem, _index8) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14386
14427
|
method: "typia.assertGuard",
|
|
14387
|
-
path: _path + ".messages[" +
|
|
14428
|
+
path: _path + ".messages[" + _index8 + "]",
|
|
14388
14429
|
expected: "Message",
|
|
14389
14430
|
value: elem
|
|
14390
|
-
}, _errorFactory)) && _ao1(elem, _path + ".messages[" +
|
|
14431
|
+
}, _errorFactory)) && _ao1(elem, _path + ".messages[" + _index8 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14391
14432
|
method: "typia.assertGuard",
|
|
14392
|
-
path: _path + ".messages[" +
|
|
14433
|
+
path: _path + ".messages[" + _index8 + "]",
|
|
14393
14434
|
expected: "Message",
|
|
14394
14435
|
value: elem
|
|
14395
14436
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -14397,7 +14438,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14397
14438
|
path: _path + ".messages",
|
|
14398
14439
|
expected: "(Array<Message> | undefined)",
|
|
14399
14440
|
value: input.messages
|
|
14400
|
-
}, _errorFactory)); const
|
|
14441
|
+
}, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.filename || "string" === typeof input.filename || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14401
14442
|
method: "typia.assertGuard",
|
|
14402
14443
|
path: _path + ".filename",
|
|
14403
14444
|
expected: "(string | undefined)",
|
|
@@ -14412,12 +14453,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14412
14453
|
path: _path + ".renders",
|
|
14413
14454
|
expected: "(Record<string, FilePublishRetrievedRender> | undefined)",
|
|
14414
14455
|
value: input.renders
|
|
14415
|
-
}, _errorFactory)) &&
|
|
14456
|
+
}, _errorFactory)) && _ao4(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14416
14457
|
method: "typia.assertGuard",
|
|
14417
14458
|
path: _path + ".renders",
|
|
14418
14459
|
expected: "(Record<string, FilePublishRetrievedRender> | undefined)",
|
|
14419
14460
|
value: input.renders
|
|
14420
|
-
}, _errorFactory)); const
|
|
14461
|
+
}, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
14421
14462
|
const value = input[key];
|
|
14422
14463
|
if (undefined === value)
|
|
14423
14464
|
return true;
|
|
@@ -14426,13 +14467,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14426
14467
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
14427
14468
|
expected: "FilePublishRetrievedRender",
|
|
14428
14469
|
value: value
|
|
14429
|
-
}, _errorFactory)) &&
|
|
14470
|
+
}, _errorFactory)) && _ao5(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14430
14471
|
method: "typia.assertGuard",
|
|
14431
14472
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
14432
14473
|
expected: "FilePublishRetrievedRender",
|
|
14433
14474
|
value: value
|
|
14434
14475
|
}, _errorFactory);
|
|
14435
|
-
}); const
|
|
14476
|
+
}); const _ao5 = (input, _path, _exceptionable = true) => ("string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14436
14477
|
method: "typia.assertGuard",
|
|
14437
14478
|
path: _path + ".path",
|
|
14438
14479
|
expected: "string",
|
|
@@ -14447,7 +14488,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14447
14488
|
path: _path + ".hash",
|
|
14448
14489
|
expected: "(string | undefined)",
|
|
14449
14490
|
value: input.hash
|
|
14450
|
-
}, _errorFactory)); const
|
|
14491
|
+
}, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => ("string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14451
14492
|
method: "typia.assertGuard",
|
|
14452
14493
|
path: _path + ".directory",
|
|
14453
14494
|
expected: "string",
|
|
@@ -14462,12 +14503,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14462
14503
|
path: _path + ".renders",
|
|
14463
14504
|
expected: "Record<string, FilePublishRender>",
|
|
14464
14505
|
value: input.renders
|
|
14465
|
-
}, _errorFactory)) &&
|
|
14506
|
+
}, _errorFactory)) && _ao7(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14466
14507
|
method: "typia.assertGuard",
|
|
14467
14508
|
path: _path + ".renders",
|
|
14468
14509
|
expected: "Record<string, FilePublishRender>",
|
|
14469
14510
|
value: input.renders
|
|
14470
|
-
}, _errorFactory)); const
|
|
14511
|
+
}, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
14471
14512
|
const value = input[key];
|
|
14472
14513
|
if (undefined === value)
|
|
14473
14514
|
return true;
|
|
@@ -14492,7 +14533,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14492
14533
|
expected: "(ResolvedFilePublishRender | __type.o11 | string)",
|
|
14493
14534
|
value: value
|
|
14494
14535
|
}, _errorFactory));
|
|
14495
|
-
}); const
|
|
14536
|
+
}); const _ao8 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14496
14537
|
method: "typia.assertGuard",
|
|
14497
14538
|
path: _path + ".name",
|
|
14498
14539
|
expected: "(string | undefined)",
|
|
@@ -14527,7 +14568,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14527
14568
|
path: _path + ".scene",
|
|
14528
14569
|
expected: "(RenderSceneObject | undefined)",
|
|
14529
14570
|
value: input.scene
|
|
14530
|
-
}, _errorFactory)) &&
|
|
14571
|
+
}, _errorFactory)) && _ao9(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14531
14572
|
method: "typia.assertGuard",
|
|
14532
14573
|
path: _path + ".scene",
|
|
14533
14574
|
expected: "(RenderSceneObject | undefined)",
|
|
@@ -14537,12 +14578,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14537
14578
|
path: _path + ".profile",
|
|
14538
14579
|
expected: "(RenderProfileObject | undefined)",
|
|
14539
14580
|
value: input.profile
|
|
14540
|
-
}, _errorFactory)) &&
|
|
14581
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14541
14582
|
method: "typia.assertGuard",
|
|
14542
14583
|
path: _path + ".profile",
|
|
14543
14584
|
expected: "(RenderProfileObject | undefined)",
|
|
14544
14585
|
value: input.profile
|
|
14545
|
-
}, _errorFactory)); const
|
|
14586
|
+
}, _errorFactory)); const _ao9 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14546
14587
|
method: "typia.assertGuard",
|
|
14547
14588
|
path: _path + ".id",
|
|
14548
14589
|
expected: "(string | undefined)",
|
|
@@ -14557,7 +14598,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14557
14598
|
path: _path + ".input",
|
|
14558
14599
|
expected: "(__type | null | undefined)",
|
|
14559
14600
|
value: input.input
|
|
14560
|
-
}, _errorFactory)) &&
|
|
14601
|
+
}, _errorFactory)) && _ao10(input.input, _path + ".input", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14561
14602
|
method: "typia.assertGuard",
|
|
14562
14603
|
path: _path + ".input",
|
|
14563
14604
|
expected: "(__type | null | undefined)",
|
|
@@ -14577,7 +14618,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14577
14618
|
path: _path + ".subtitleTracks",
|
|
14578
14619
|
expected: "(__type.o1 | undefined)",
|
|
14579
14620
|
value: input.subtitleTracks
|
|
14580
|
-
}, _errorFactory)) &&
|
|
14621
|
+
}, _errorFactory)) && _ao11(input.subtitleTracks, _path + ".subtitleTracks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14581
14622
|
method: "typia.assertGuard",
|
|
14582
14623
|
path: _path + ".subtitleTracks",
|
|
14583
14624
|
expected: "(__type.o1 | undefined)",
|
|
@@ -14587,7 +14628,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14587
14628
|
path: _path + ".video",
|
|
14588
14629
|
expected: "(__type.o3 | undefined)",
|
|
14589
14630
|
value: input.video
|
|
14590
|
-
}, _errorFactory)) &&
|
|
14631
|
+
}, _errorFactory)) && _ao14(input.video, _path + ".video", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14591
14632
|
method: "typia.assertGuard",
|
|
14592
14633
|
path: _path + ".video",
|
|
14593
14634
|
expected: "(__type.o3 | undefined)",
|
|
@@ -14607,12 +14648,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14607
14648
|
path: _path + ".transcribe",
|
|
14608
14649
|
expected: "(__type.o5 | undefined)",
|
|
14609
14650
|
value: input.transcribe
|
|
14610
|
-
}, _errorFactory)) &&
|
|
14651
|
+
}, _errorFactory)) && _ao16(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14611
14652
|
method: "typia.assertGuard",
|
|
14612
14653
|
path: _path + ".transcribe",
|
|
14613
14654
|
expected: "(__type.o5 | undefined)",
|
|
14614
14655
|
value: input.transcribe
|
|
14615
|
-
}, _errorFactory)); const
|
|
14656
|
+
}, _errorFactory)); const _ao10 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14616
14657
|
method: "typia.assertGuard",
|
|
14617
14658
|
path: _path + ".type",
|
|
14618
14659
|
expected: "(string | undefined)",
|
|
@@ -14622,7 +14663,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14622
14663
|
path: _path + ".file",
|
|
14623
14664
|
expected: "(null | string | undefined)",
|
|
14624
14665
|
value: input.file
|
|
14625
|
-
}, _errorFactory)); const
|
|
14666
|
+
}, _errorFactory)); const _ao11 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
14626
14667
|
const value = input[key];
|
|
14627
14668
|
if (undefined === value)
|
|
14628
14669
|
return true;
|
|
@@ -14631,13 +14672,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14631
14672
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
14632
14673
|
expected: "__type.o2",
|
|
14633
14674
|
value: value
|
|
14634
|
-
}, _errorFactory)) &&
|
|
14675
|
+
}, _errorFactory)) && _ao12(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14635
14676
|
method: "typia.assertGuard",
|
|
14636
14677
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
14637
14678
|
expected: "__type.o2",
|
|
14638
14679
|
value: value
|
|
14639
14680
|
}, _errorFactory);
|
|
14640
|
-
}); const
|
|
14681
|
+
}); const _ao12 = (input, _path, _exceptionable = true) => (null === input.style || undefined === input.style || "string" === typeof input.style || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14641
14682
|
method: "typia.assertGuard",
|
|
14642
14683
|
path: _path + ".style",
|
|
14643
14684
|
expected: "(null | string | undefined)",
|
|
@@ -14647,12 +14688,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14647
14688
|
path: _path + ".styleOverrides",
|
|
14648
14689
|
expected: "(SubtitleStyle | undefined)",
|
|
14649
14690
|
value: input.styleOverrides
|
|
14650
|
-
}, _errorFactory)) &&
|
|
14691
|
+
}, _errorFactory)) && _ao13(input.styleOverrides, _path + ".styleOverrides", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14651
14692
|
method: "typia.assertGuard",
|
|
14652
14693
|
path: _path + ".styleOverrides",
|
|
14653
14694
|
expected: "(SubtitleStyle | undefined)",
|
|
14654
14695
|
value: input.styleOverrides
|
|
14655
|
-
}, _errorFactory)); const
|
|
14696
|
+
}, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14656
14697
|
method: "typia.assertGuard",
|
|
14657
14698
|
path: _path + ".name",
|
|
14658
14699
|
expected: "(string | undefined)",
|
|
@@ -14772,17 +14813,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14772
14813
|
path: _path + ".encoding",
|
|
14773
14814
|
expected: "(string | undefined)",
|
|
14774
14815
|
value: input.encoding
|
|
14775
|
-
}, _errorFactory)); const
|
|
14816
|
+
}, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14776
14817
|
method: "typia.assertGuard",
|
|
14777
14818
|
path: _path + ".crop",
|
|
14778
14819
|
expected: "(__type.o4 | undefined)",
|
|
14779
14820
|
value: input.crop
|
|
14780
|
-
}, _errorFactory)) &&
|
|
14821
|
+
}, _errorFactory)) && _ao15(input.crop, _path + ".crop", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14781
14822
|
method: "typia.assertGuard",
|
|
14782
14823
|
path: _path + ".crop",
|
|
14783
14824
|
expected: "(__type.o4 | undefined)",
|
|
14784
14825
|
value: input.crop
|
|
14785
|
-
}, _errorFactory); const
|
|
14826
|
+
}, _errorFactory); const _ao15 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14786
14827
|
method: "typia.assertGuard",
|
|
14787
14828
|
path: _path + ".x",
|
|
14788
14829
|
expected: "(number | undefined)",
|
|
@@ -14802,7 +14843,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14802
14843
|
path: _path + ".height",
|
|
14803
14844
|
expected: "(number | undefined)",
|
|
14804
14845
|
value: input.height
|
|
14805
|
-
}, _errorFactory)); const
|
|
14846
|
+
}, _errorFactory)); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14806
14847
|
method: "typia.assertGuard",
|
|
14807
14848
|
path: _path + ".language",
|
|
14808
14849
|
expected: "(string | undefined)",
|
|
@@ -14812,9 +14853,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14812
14853
|
path: _path + ".pan",
|
|
14813
14854
|
expected: "(Array<number> | undefined)",
|
|
14814
14855
|
value: input.pan
|
|
14815
|
-
}, _errorFactory)) && input.pan.every((elem,
|
|
14856
|
+
}, _errorFactory)) && input.pan.every((elem, _index9) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14816
14857
|
method: "typia.assertGuard",
|
|
14817
|
-
path: _path + ".pan[" +
|
|
14858
|
+
path: _path + ".pan[" + _index9 + "]",
|
|
14818
14859
|
expected: "number",
|
|
14819
14860
|
value: elem
|
|
14820
14861
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -14822,7 +14863,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14822
14863
|
path: _path + ".pan",
|
|
14823
14864
|
expected: "(Array<number> | undefined)",
|
|
14824
14865
|
value: input.pan
|
|
14825
|
-
}, _errorFactory)); const
|
|
14866
|
+
}, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14826
14867
|
method: "typia.assertGuard",
|
|
14827
14868
|
path: _path + ".format",
|
|
14828
14869
|
expected: "string",
|
|
@@ -14832,7 +14873,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14832
14873
|
path: _path + ".transcribe",
|
|
14833
14874
|
expected: "(__type.o6 | undefined)",
|
|
14834
14875
|
value: input.transcribe
|
|
14835
|
-
}, _errorFactory)) &&
|
|
14876
|
+
}, _errorFactory)) && _ao18(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14836
14877
|
method: "typia.assertGuard",
|
|
14837
14878
|
path: _path + ".transcribe",
|
|
14838
14879
|
expected: "(__type.o6 | undefined)",
|
|
@@ -14842,7 +14883,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14842
14883
|
path: _path + ".translate",
|
|
14843
14884
|
expected: "(__type.o7 | undefined)",
|
|
14844
14885
|
value: input.translate
|
|
14845
|
-
}, _errorFactory)) &&
|
|
14886
|
+
}, _errorFactory)) && _ao19(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14846
14887
|
method: "typia.assertGuard",
|
|
14847
14888
|
path: _path + ".translate",
|
|
14848
14889
|
expected: "(__type.o7 | undefined)",
|
|
@@ -14852,7 +14893,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14852
14893
|
path: _path + ".audio",
|
|
14853
14894
|
expected: "(__type.o8 | undefined)",
|
|
14854
14895
|
value: input.audio
|
|
14855
|
-
}, _errorFactory)) &&
|
|
14896
|
+
}, _errorFactory)) && _ao20(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14856
14897
|
method: "typia.assertGuard",
|
|
14857
14898
|
path: _path + ".audio",
|
|
14858
14899
|
expected: "(__type.o8 | undefined)",
|
|
@@ -14862,9 +14903,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14862
14903
|
path: _path + ".pick",
|
|
14863
14904
|
expected: "(Array<string> | undefined)",
|
|
14864
14905
|
value: input.pick
|
|
14865
|
-
}, _errorFactory)) && input.pick.every((elem,
|
|
14906
|
+
}, _errorFactory)) && input.pick.every((elem, _index10) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14866
14907
|
method: "typia.assertGuard",
|
|
14867
|
-
path: _path + ".pick[" +
|
|
14908
|
+
path: _path + ".pick[" + _index10 + "]",
|
|
14868
14909
|
expected: "string",
|
|
14869
14910
|
value: elem
|
|
14870
14911
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -14882,22 +14923,22 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14882
14923
|
path: _path + ".subtitle",
|
|
14883
14924
|
expected: "(SubtitleProfile | string | undefined)",
|
|
14884
14925
|
value: input.subtitle
|
|
14885
|
-
}, _errorFactory)) &&
|
|
14926
|
+
}, _errorFactory)) && _ao21(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14886
14927
|
method: "typia.assertGuard",
|
|
14887
14928
|
path: _path + ".subtitle",
|
|
14888
14929
|
expected: "(SubtitleProfile | string | undefined)",
|
|
14889
14930
|
value: input.subtitle
|
|
14890
|
-
}, _errorFactory))); const
|
|
14931
|
+
}, _errorFactory))); const _ao18 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14891
14932
|
method: "typia.assertGuard",
|
|
14892
14933
|
path: _path + ".engine",
|
|
14893
14934
|
expected: "string",
|
|
14894
14935
|
value: input.engine
|
|
14895
|
-
}, _errorFactory); const
|
|
14936
|
+
}, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14896
14937
|
method: "typia.assertGuard",
|
|
14897
14938
|
path: _path + ".language",
|
|
14898
14939
|
expected: "string",
|
|
14899
14940
|
value: input.language
|
|
14900
|
-
}, _errorFactory); const
|
|
14941
|
+
}, _errorFactory); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14901
14942
|
method: "typia.assertGuard",
|
|
14902
14943
|
path: _path + ".codec",
|
|
14903
14944
|
expected: "(string | undefined)",
|
|
@@ -14917,7 +14958,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14917
14958
|
path: _path + ".split",
|
|
14918
14959
|
expected: "(boolean | undefined)",
|
|
14919
14960
|
value: input.split
|
|
14920
|
-
}, _errorFactory)); const
|
|
14961
|
+
}, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14921
14962
|
method: "typia.assertGuard",
|
|
14922
14963
|
path: _path + ".lang",
|
|
14923
14964
|
expected: "(string | undefined)",
|
|
@@ -14932,7 +14973,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14932
14973
|
path: _path + ".ccconverter",
|
|
14933
14974
|
expected: "(__type.o9 | undefined)",
|
|
14934
14975
|
value: input.ccconverter
|
|
14935
|
-
}, _errorFactory)) &&
|
|
14976
|
+
}, _errorFactory)) && _ao22(input.ccconverter, _path + ".ccconverter", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14936
14977
|
method: "typia.assertGuard",
|
|
14937
14978
|
path: _path + ".ccconverter",
|
|
14938
14979
|
expected: "(__type.o9 | undefined)",
|
|
@@ -14942,17 +14983,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14942
14983
|
path: _path + ".ass",
|
|
14943
14984
|
expected: "(__type.o10 | undefined)",
|
|
14944
14985
|
value: input.ass
|
|
14945
|
-
}, _errorFactory)) &&
|
|
14986
|
+
}, _errorFactory)) && _ao23(input.ass, _path + ".ass", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14946
14987
|
method: "typia.assertGuard",
|
|
14947
14988
|
path: _path + ".ass",
|
|
14948
14989
|
expected: "(__type.o10 | undefined)",
|
|
14949
14990
|
value: input.ass
|
|
14950
|
-
}, _errorFactory)); const
|
|
14991
|
+
}, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14951
14992
|
method: "typia.assertGuard",
|
|
14952
14993
|
path: _path + ".preset",
|
|
14953
14994
|
expected: "(string | undefined)",
|
|
14954
14995
|
value: input.preset
|
|
14955
|
-
}, _errorFactory); const
|
|
14996
|
+
}, _errorFactory); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.futureWordWrapping || "boolean" === typeof input.futureWordWrapping || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14956
14997
|
method: "typia.assertGuard",
|
|
14957
14998
|
path: _path + ".futureWordWrapping",
|
|
14958
14999
|
expected: "(boolean | undefined)",
|
|
@@ -14967,12 +15008,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14967
15008
|
path: _path + ".enableUnsafeLineSpacingHack",
|
|
14968
15009
|
expected: "(boolean | undefined)",
|
|
14969
15010
|
value: input.enableUnsafeLineSpacingHack
|
|
14970
|
-
}, _errorFactory)); const
|
|
15011
|
+
}, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14971
15012
|
method: "typia.assertGuard",
|
|
14972
15013
|
path: _path + ".__context",
|
|
14973
15014
|
expected: "__type.o12",
|
|
14974
15015
|
value: input.__context
|
|
14975
|
-
}, _errorFactory)) &&
|
|
15016
|
+
}, _errorFactory)) && _ao25(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14976
15017
|
method: "typia.assertGuard",
|
|
14977
15018
|
path: _path + ".__context",
|
|
14978
15019
|
expected: "__type.o12",
|
|
@@ -14982,17 +15023,17 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
14982
15023
|
path: _path + ".__returnValue",
|
|
14983
15024
|
expected: "ResolvedFilePublishRender",
|
|
14984
15025
|
value: input.__returnValue
|
|
14985
|
-
}, _errorFactory)) &&
|
|
15026
|
+
}, _errorFactory)) && _ao8(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14986
15027
|
method: "typia.assertGuard",
|
|
14987
15028
|
path: _path + ".__returnValue",
|
|
14988
15029
|
expected: "ResolvedFilePublishRender",
|
|
14989
15030
|
value: input.__returnValue
|
|
14990
|
-
}, _errorFactory)); const
|
|
15031
|
+
}, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish && false === Array.isArray(input.publish) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14991
15032
|
method: "typia.assertGuard",
|
|
14992
15033
|
path: _path + ".publish",
|
|
14993
15034
|
expected: "FilePublishRecord",
|
|
14994
15035
|
value: input.publish
|
|
14995
|
-
}, _errorFactory)) &&
|
|
15036
|
+
}, _errorFactory)) && _ao26(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
14996
15037
|
method: "typia.assertGuard",
|
|
14997
15038
|
path: _path + ".publish",
|
|
14998
15039
|
expected: "FilePublishRecord",
|
|
@@ -15007,7 +15048,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15007
15048
|
path: _path + ".name",
|
|
15008
15049
|
expected: "string",
|
|
15009
15050
|
value: input.name
|
|
15010
|
-
}, _errorFactory)); const
|
|
15051
|
+
}, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.type || "file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15011
15052
|
method: "typia.assertGuard",
|
|
15012
15053
|
path: _path + ".type",
|
|
15013
15054
|
expected: "(\"file\" | undefined)",
|
|
@@ -15027,7 +15068,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15027
15068
|
path: _path + ".renders",
|
|
15028
15069
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
15029
15070
|
value: input.renders
|
|
15030
|
-
}, _errorFactory)) &&
|
|
15071
|
+
}, _errorFactory)) && _ao7(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15031
15072
|
method: "typia.assertGuard",
|
|
15032
15073
|
path: _path + ".renders",
|
|
15033
15074
|
expected: "(Record<string, FilePublishRender> | undefined)",
|
|
@@ -15037,7 +15078,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15037
15078
|
path: _path + ".draft",
|
|
15038
15079
|
expected: "(FilePublishDraft | undefined)",
|
|
15039
15080
|
value: input.draft
|
|
15040
|
-
}, _errorFactory)) &&
|
|
15081
|
+
}, _errorFactory)) && _ao27(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15041
15082
|
method: "typia.assertGuard",
|
|
15042
15083
|
path: _path + ".draft",
|
|
15043
15084
|
expected: "(FilePublishDraft | undefined)",
|
|
@@ -15047,7 +15088,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15047
15088
|
path: _path + ".remote",
|
|
15048
15089
|
expected: "(FilePublishRemote | undefined)",
|
|
15049
15090
|
value: input.remote
|
|
15050
|
-
}, _errorFactory)) &&
|
|
15091
|
+
}, _errorFactory)) && _ao28(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15051
15092
|
method: "typia.assertGuard",
|
|
15052
15093
|
path: _path + ".remote",
|
|
15053
15094
|
expected: "(FilePublishRemote | undefined)",
|
|
@@ -15057,7 +15098,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15057
15098
|
path: _path + ".published",
|
|
15058
15099
|
expected: "(FilePublishPublished | undefined)",
|
|
15059
15100
|
value: input.published
|
|
15060
|
-
}, _errorFactory)) &&
|
|
15101
|
+
}, _errorFactory)) && _ao31(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15061
15102
|
method: "typia.assertGuard",
|
|
15062
15103
|
path: _path + ".published",
|
|
15063
15104
|
expected: "(FilePublishPublished | undefined)",
|
|
@@ -15077,7 +15118,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15077
15118
|
path: _path + ".render",
|
|
15078
15119
|
expected: "(PublishRenderBase | undefined)",
|
|
15079
15120
|
value: input.render
|
|
15080
|
-
}, _errorFactory)) &&
|
|
15121
|
+
}, _errorFactory)) && _ao32(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15081
15122
|
method: "typia.assertGuard",
|
|
15082
15123
|
path: _path + ".render",
|
|
15083
15124
|
expected: "(PublishRenderBase | undefined)",
|
|
@@ -15087,7 +15128,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15087
15128
|
path: _path + ".error",
|
|
15088
15129
|
expected: "(__type.o13 | null | undefined)",
|
|
15089
15130
|
value: input.error
|
|
15090
|
-
}, _errorFactory)) &&
|
|
15131
|
+
}, _errorFactory)) && _ao33(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15091
15132
|
method: "typia.assertGuard",
|
|
15092
15133
|
path: _path + ".error",
|
|
15093
15134
|
expected: "(__type.o13 | null | undefined)",
|
|
@@ -15097,14 +15138,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15097
15138
|
path: _path + ".messages",
|
|
15098
15139
|
expected: "(Array<Message> | undefined)",
|
|
15099
15140
|
value: input.messages
|
|
15100
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
15141
|
+
}, _errorFactory)) && input.messages.every((elem, _index11) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15101
15142
|
method: "typia.assertGuard",
|
|
15102
|
-
path: _path + ".messages[" +
|
|
15143
|
+
path: _path + ".messages[" + _index11 + "]",
|
|
15103
15144
|
expected: "Message",
|
|
15104
15145
|
value: elem
|
|
15105
|
-
}, _errorFactory)) && _ao1(elem, _path + ".messages[" +
|
|
15146
|
+
}, _errorFactory)) && _ao1(elem, _path + ".messages[" + _index11 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15106
15147
|
method: "typia.assertGuard",
|
|
15107
|
-
path: _path + ".messages[" +
|
|
15148
|
+
path: _path + ".messages[" + _index11 + "]",
|
|
15108
15149
|
expected: "Message",
|
|
15109
15150
|
value: elem
|
|
15110
15151
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15112,7 +15153,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15112
15153
|
path: _path + ".messages",
|
|
15113
15154
|
expected: "(Array<Message> | undefined)",
|
|
15114
15155
|
value: input.messages
|
|
15115
|
-
}, _errorFactory)); const
|
|
15156
|
+
}, _errorFactory)); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15116
15157
|
method: "typia.assertGuard",
|
|
15117
15158
|
path: _path + ".directory",
|
|
15118
15159
|
expected: "(string | undefined)",
|
|
@@ -15122,7 +15163,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15122
15163
|
path: _path + ".filename",
|
|
15123
15164
|
expected: "(string | undefined)",
|
|
15124
15165
|
value: input.filename
|
|
15125
|
-
}, _errorFactory)); const
|
|
15166
|
+
}, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15126
15167
|
method: "typia.assertGuard",
|
|
15127
15168
|
path: _path + ".directory",
|
|
15128
15169
|
expected: "(string | undefined)",
|
|
@@ -15137,12 +15178,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15137
15178
|
path: _path + ".renders",
|
|
15138
15179
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
15139
15180
|
value: input.renders
|
|
15140
|
-
}, _errorFactory)) &&
|
|
15181
|
+
}, _errorFactory)) && _ao29(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15141
15182
|
method: "typia.assertGuard",
|
|
15142
15183
|
path: _path + ".renders",
|
|
15143
15184
|
expected: "(Record<string, FilePublishRemoteRender> | undefined)",
|
|
15144
15185
|
value: input.renders
|
|
15145
|
-
}, _errorFactory)); const
|
|
15186
|
+
}, _errorFactory)); const _ao29 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
15146
15187
|
const value = input[key];
|
|
15147
15188
|
if (undefined === value)
|
|
15148
15189
|
return true;
|
|
@@ -15151,13 +15192,13 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15151
15192
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15152
15193
|
expected: "FilePublishRemoteRender",
|
|
15153
15194
|
value: value
|
|
15154
|
-
}, _errorFactory)) &&
|
|
15195
|
+
}, _errorFactory)) && _ao30(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15155
15196
|
method: "typia.assertGuard",
|
|
15156
15197
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
15157
15198
|
expected: "FilePublishRemoteRender",
|
|
15158
15199
|
value: value
|
|
15159
15200
|
}, _errorFactory);
|
|
15160
|
-
}); const
|
|
15201
|
+
}); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15161
15202
|
method: "typia.assertGuard",
|
|
15162
15203
|
path: _path + ".path",
|
|
15163
15204
|
expected: "(string | undefined)",
|
|
@@ -15167,14 +15208,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15167
15208
|
path: _path + ".messages",
|
|
15168
15209
|
expected: "(Array<Message> | undefined)",
|
|
15169
15210
|
value: input.messages
|
|
15170
|
-
}, _errorFactory)) && input.messages.every((elem,
|
|
15211
|
+
}, _errorFactory)) && input.messages.every((elem, _index12) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15171
15212
|
method: "typia.assertGuard",
|
|
15172
|
-
path: _path + ".messages[" +
|
|
15213
|
+
path: _path + ".messages[" + _index12 + "]",
|
|
15173
15214
|
expected: "Message",
|
|
15174
15215
|
value: elem
|
|
15175
|
-
}, _errorFactory)) && _ao1(elem, _path + ".messages[" +
|
|
15216
|
+
}, _errorFactory)) && _ao1(elem, _path + ".messages[" + _index12 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15176
15217
|
method: "typia.assertGuard",
|
|
15177
|
-
path: _path + ".messages[" +
|
|
15218
|
+
path: _path + ".messages[" + _index12 + "]",
|
|
15178
15219
|
expected: "Message",
|
|
15179
15220
|
value: elem
|
|
15180
15221
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -15197,7 +15238,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15197
15238
|
path: _path + ".source",
|
|
15198
15239
|
expected: "(string | undefined)",
|
|
15199
15240
|
value: input.source
|
|
15200
|
-
}, _errorFactory)); const
|
|
15241
|
+
}, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15201
15242
|
method: "typia.assertGuard",
|
|
15202
15243
|
path: _path + ".directory",
|
|
15203
15244
|
expected: "(string | undefined)",
|
|
@@ -15207,7 +15248,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15207
15248
|
path: _path + ".filename",
|
|
15208
15249
|
expected: "string",
|
|
15209
15250
|
value: input.filename
|
|
15210
|
-
}, _errorFactory)); const
|
|
15251
|
+
}, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15211
15252
|
method: "typia.assertGuard",
|
|
15212
15253
|
path: _path + ".preset",
|
|
15213
15254
|
expected: "(string | undefined)",
|
|
@@ -15222,7 +15263,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15222
15263
|
path: _path + ".scene",
|
|
15223
15264
|
expected: "(RenderSceneObject | undefined)",
|
|
15224
15265
|
value: input.scene
|
|
15225
|
-
}, _errorFactory)) &&
|
|
15266
|
+
}, _errorFactory)) && _ao9(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15226
15267
|
method: "typia.assertGuard",
|
|
15227
15268
|
path: _path + ".scene",
|
|
15228
15269
|
expected: "(RenderSceneObject | undefined)",
|
|
@@ -15232,21 +15273,21 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15232
15273
|
path: _path + ".profile",
|
|
15233
15274
|
expected: "(RenderProfileObject | undefined)",
|
|
15234
15275
|
value: input.profile
|
|
15235
|
-
}, _errorFactory)) &&
|
|
15276
|
+
}, _errorFactory)) && _ao17(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15236
15277
|
method: "typia.assertGuard",
|
|
15237
15278
|
path: _path + ".profile",
|
|
15238
15279
|
expected: "(RenderProfileObject | undefined)",
|
|
15239
15280
|
value: input.profile
|
|
15240
|
-
}, _errorFactory)); const
|
|
15281
|
+
}, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15241
15282
|
method: "typia.assertGuard",
|
|
15242
15283
|
path: _path + ".method",
|
|
15243
15284
|
expected: "string",
|
|
15244
15285
|
value: input.method
|
|
15245
15286
|
}, _errorFactory); const _au0 = (input, _path, _exceptionable = true) => (() => {
|
|
15246
15287
|
if (undefined !== input.path)
|
|
15247
|
-
return
|
|
15288
|
+
return _ao8(input, _path, true && _exceptionable);
|
|
15248
15289
|
else if (undefined !== input.__context)
|
|
15249
|
-
return
|
|
15290
|
+
return _ao24(input, _path, true && _exceptionable);
|
|
15250
15291
|
else
|
|
15251
15292
|
return __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15252
15293
|
method: "typia.assertGuard",
|
|
@@ -15254,10 +15295,10 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15254
15295
|
expected: "(ResolvedFilePublishRender | __type.o11)",
|
|
15255
15296
|
value: input
|
|
15256
15297
|
}, _errorFactory);
|
|
15257
|
-
})(); const _au1 = (input, _path, _exceptionable = true) =>
|
|
15298
|
+
})(); const _au1 = (input, _path, _exceptionable = true) => _ao2(input, _path, false && _exceptionable) || _ao0(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
15258
15299
|
method: "typia.assertGuard",
|
|
15259
15300
|
path: _path,
|
|
15260
|
-
expected: "(FilePublishStatsRecord |
|
|
15301
|
+
expected: "(FilePublishStatsRecord | PublishStatsRecordBase)",
|
|
15261
15302
|
value: input
|
|
15262
15303
|
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _iu1(input); let _errorFactory; return (input, errorFactory) => {
|
|
15263
15304
|
if (false === __is(input)) {
|
|
@@ -15265,12 +15306,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
15265
15306
|
((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15266
15307
|
method: "typia.assertGuard",
|
|
15267
15308
|
path: _path + "",
|
|
15268
|
-
expected: "(
|
|
15309
|
+
expected: "(FilePublishStatsRecord | PublishStatsRecordBase)",
|
|
15269
15310
|
value: input
|
|
15270
15311
|
}, _errorFactory)) && _au1(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
|
|
15271
15312
|
method: "typia.assertGuard",
|
|
15272
15313
|
path: _path + "",
|
|
15273
|
-
expected: "(
|
|
15314
|
+
expected: "(FilePublishStatsRecord | PublishStatsRecordBase)",
|
|
15274
15315
|
value: input
|
|
15275
15316
|
}, _errorFactory))(input, "$input", true);
|
|
15276
15317
|
}
|
|
@@ -17917,7 +17958,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17917
17958
|
}; })()(input);
|
|
17918
17959
|
}
|
|
17919
17960
|
case ":settings": {
|
|
17920
|
-
return (() => { const _iv23 = new Set(["name", "fontname", "fontsize", "primaryColour", "secondaryColour", "outlineColour", "backColour", "bold", "italic", "underline", "strikeOut", "scaleX", "scaleY", "spacing", "lineSpacing", "angle", "borderStyle", "outline", "shadow", "alignment", "marginL", "marginR", "marginV", "encoding"]); const
|
|
17961
|
+
return (() => { const _iv23 = new Set(["name", "fontname", "fontsize", "primaryColour", "secondaryColour", "outlineColour", "backColour", "bold", "italic", "underline", "strikeOut", "scaleX", "scaleY", "spacing", "lineSpacing", "angle", "borderStyle", "outline", "shadow", "alignment", "marginL", "marginR", "marginV", "encoding"]); const _iv32 = new Set(["default", "manual", "az", "za", "newest", "oldest", "mostrecent", "leastrecent", "earliestdeadline", "latestdeadline"]); const _av62 = new Set(["name", "fontname", "fontsize", "primaryColour", "secondaryColour", "outlineColour", "backColour", "bold", "italic", "underline", "strikeOut", "scaleX", "scaleY", "spacing", "lineSpacing", "angle", "borderStyle", "outline", "shadow", "alignment", "marginL", "marginR", "marginV", "encoding"]); const _av71 = new Set(["default", "manual", "az", "za", "newest", "oldest", "mostrecent", "leastrecent", "earliestdeadline", "latestdeadline"]); const _io0 = input => (undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime) && (undefined === input.permission || "object" === typeof input.permission && null !== input.permission && false === Array.isArray(input.permission) && _io1(input.permission)) && (undefined === input["module"] || "object" === typeof input["module"] && null !== input["module"] && false === Array.isArray(input["module"]) && _io2(input["module"])) && (undefined === input.upload || "object" === typeof input.upload && null !== input.upload && false === Array.isArray(input.upload) && _io6(input.upload)) && (undefined === input.download || "object" === typeof input.download && null !== input.download && false === Array.isArray(input.download) && _io7(input.download)) && (undefined === input.browser || "object" === typeof input.browser && null !== input.browser && false === Array.isArray(input.browser) && _io8(input.browser)) && (undefined === input.toolbarTags || "object" === typeof input.toolbarTags && null !== input.toolbarTags && false === Array.isArray(input.toolbarTags) && _io12(input.toolbarTags)) && (undefined === input.exclusiveTagGroups || Array.isArray(input.exclusiveTagGroups) && input.exclusiveTagGroups.every(elem => Array.isArray(elem) && elem.every(elem => "string" === typeof elem))) && (undefined === input.deadlines || "object" === typeof input.deadlines && null !== input.deadlines && false === Array.isArray(input.deadlines) && _io13(input.deadlines)) && (undefined === input.assignees || "object" === typeof input.assignees && null !== input.assignees && false === Array.isArray(input.assignees) && _io14(input.assignees)) && (undefined === input.comments || "object" === typeof input.comments && null !== input.comments && false === Array.isArray(input.comments) && _io15(input.comments)) && (undefined === input.clock || "object" === typeof input.clock && null !== input.clock && false === Array.isArray(input.clock) && _io16(input.clock)) && (undefined === input.swarm || "object" === typeof input.swarm && null !== input.swarm && false === Array.isArray(input.swarm) && _io17(input.swarm)) && (undefined === input.dashboard || "object" === typeof input.dashboard && null !== input.dashboard && false === Array.isArray(input.dashboard) && _io18(input.dashboard)) && (undefined === input.script || "object" === typeof input.script && null !== input.script && false === Array.isArray(input.script) && _io20(input.script)) && (undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io26(input.events)) && (undefined === input.rundown || "object" === typeof input.rundown && null !== input.rundown && _io29(input.rundown)) && (undefined === input.gallery || "object" === typeof input.gallery && null !== input.gallery && false === Array.isArray(input.gallery) && _io30(input.gallery)) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.keymap || "object" === typeof input.keymap && null !== input.keymap && false === Array.isArray(input.keymap) && _io31(input.keymap)) && (undefined === input.media || "object" === typeof input.media && null !== input.media && false === Array.isArray(input.media) && _io44(input.media)) && (undefined === input.edit || "object" === typeof input.edit && null !== input.edit && false === Array.isArray(input.edit) && _io60(input.edit)) && (undefined === input.commands || Array.isArray(input.commands) && input.commands.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io66(elem))) && (undefined === input.predefinedTags || Array.isArray(input.predefinedTags) && input.predefinedTags.every(elem => "string" === typeof elem)) && (undefined === input.storyboard || "object" === typeof input.storyboard && null !== input.storyboard && false === Array.isArray(input.storyboard) && _io67(input.storyboard)) && (undefined === input.print || "object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) && _io76(input.print)) && (undefined === input.hiddenPreviews || Array.isArray(input.hiddenPreviews) && input.hiddenPreviews.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io77(elem))) && (undefined === input.plugins || "object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) && _io78(input.plugins)) && (undefined === input.crashScreen || "boolean" === typeof input.crashScreen) && (undefined === input.debug || "boolean" === typeof input.debug) && (undefined === input.featurePreview || "object" === typeof input.featurePreview && null !== input.featurePreview && false === Array.isArray(input.featurePreview) && _io81(input.featurePreview)) && (undefined === input.flags || "object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) && _io82(input.flags)) && (undefined === input.notifications || "object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) && _io83(input.notifications)) && (undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert) && (undefined === input.clone || "object" === typeof input.clone && null !== input.clone && false === Array.isArray(input.clone) && _io86(input.clone)) && (undefined === input.utilsAssetEditorPanel || "object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) && _io89(input.utilsAssetEditorPanel)) && (undefined === input.display || "object" === typeof input.display && null !== input.display && false === Array.isArray(input.display) && _io90(input.display)) && (undefined === input.bookmarks || "object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) && _io91(input.bookmarks)) && (undefined === input.shotbox || "object" === typeof input.shotbox && null !== input.shotbox && false === Array.isArray(input.shotbox) && _io92(input.shotbox)) && (undefined === input.performance || "object" === typeof input.performance && null !== input.performance && false === Array.isArray(input.performance) && _io93(input.performance)); const _io1 = input => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact) && (undefined === input.overrideUserLogin || "boolean" === typeof input.overrideUserLogin); const _io2 = input => (undefined === input.editor || "string" === typeof input.editor) && (undefined === input.tabs || "object" === typeof input.tabs && null !== input.tabs && false === Array.isArray(input.tabs) && _io3(input.tabs)); const _io3 = input => (undefined === input.settingsPanelStore || "object" === typeof input.settingsPanelStore && null !== input.settingsPanelStore && false === Array.isArray(input.settingsPanelStore) && _io4(input.settingsPanelStore)) && Object.keys(input).every(key => {
|
|
17921
17962
|
if (["settingsPanelStore"].some(prop => key === prop))
|
|
17922
17963
|
return true;
|
|
17923
17964
|
const value = input[key];
|
|
@@ -17989,12 +18030,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
17989
18030
|
if (undefined === value)
|
|
17990
18031
|
return true;
|
|
17991
18032
|
return "object" === typeof value && null !== value && false === Array.isArray(value) && _io33(value);
|
|
17992
|
-
}); const _io44 = input => (undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate) && (undefined === input.placeholder || "string" === typeof input.placeholder) && (undefined === input.guide || "object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) && _io45(input.guide)) && (undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames) && (undefined === input.liveZoomDuration || "number" === typeof input.liveZoomDuration) && (undefined === input.importTitleTemplate || "string" === typeof input.importTitleTemplate) && (undefined === input.tile || "object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) && _io46(input.tile)) && (undefined === input.timecodeReference || "string" === typeof input.timecodeReference) && (undefined === input.maxSubclipDuration || "number" === typeof input.maxSubclipDuration) && (undefined === input.rewindStep || "number" === typeof input.rewindStep) && (undefined === input.forwardStep || "number" === typeof input.forwardStep) && (undefined === input.interlacedPlayback || "string" === typeof input.interlacedPlayback) && (undefined === input.playbackRates || Array.isArray(input.playbackRates) && input.playbackRates.every(elem => "number" === typeof elem)) && (undefined === input.subtitles || "object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) && _io47(input.subtitles)) && (undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId) && (undefined === input.initialVolume || "string" === typeof input.initialVolume) && (undefined === input.guides || Array.isArray(input.guides) && input.guides.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io50(elem))) && (undefined === input.download || "boolean" === typeof input.download) && (undefined === input.editMode || "object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) && _io51(input.editMode)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io52(input.transcribe)) && (null !== input.openCommand && (undefined === input.openCommand || "string" === typeof input.openCommand || "object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) && _io56(input.openCommand))) && (undefined === input.recorder || "object" === typeof input.recorder && null !== input.recorder && false === Array.isArray(input.recorder) && _io57(input.recorder)); const _io45 = input => (undefined === input.mask || "boolean" === typeof input.mask) && (undefined === input.actionSafe || "boolean" === typeof input.actionSafe) && (undefined === input.titleSafe || "boolean" === typeof input.titleSafe); const _io46 = input => (undefined === input.preview || "disabled" === input.preview || "play" === input.preview || "seek" === input.preview || "seekplay" === input.preview || "boolean" === typeof input.preview) && (undefined === input.showRenderProgress || "boolean" === typeof input.showRenderProgress); const _io47 = input => (undefined === input.spacing || "number" === typeof input.spacing) && (undefined === input.maxCharactersPerLine || "number" === typeof input.maxCharactersPerLine) && (undefined === input.suggestions || Array.isArray(input.suggestions) && input.suggestions.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io48(elem))) && (undefined === input.colors || Array.isArray(input.colors) && input.colors.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io49(elem))) && (undefined === input.overridableProperties || Array.isArray(input.overridableProperties) && input.overridableProperties.every(elem => null === elem || true === _iv23.has(elem))) && (undefined === input.previewResolutionScale || "number" === typeof input.previewResolutionScale); const _io48 = input => (null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio) && (null === input.ifLang || undefined === input.ifLang || "string" === typeof input.ifLang) && (null === input.thenStyle || undefined === input.thenStyle || "string" === typeof input.thenStyle) && (null === input.thenMaxCharactersPerLine || undefined === input.thenMaxCharactersPerLine || "number" === typeof input.thenMaxCharactersPerLine); const _io49 = input => (null === input.label || undefined === input.label || "string" === typeof input.label) && (null === input.color || undefined === input.color || "string" === typeof input.color); const _io50 = input => (undefined === input.label || "string" === typeof input.label) && (undefined === input.aspectRatio || "string" === typeof input.aspectRatio); const _io51 = input => (undefined === input.enabled || "boolean" === typeof input.enabled) && (undefined === input.defaultEnterOption || "edit" === input.defaultEnterOption || "createNew" === input.defaultEnterOption || "none" === input.defaultEnterOption) && (undefined === input.defaultExitOption || "none" === input.defaultExitOption || "update" === input.defaultExitOption || "leave" === input.defaultExitOption); const _io52 = input => undefined === input.subtitleDisclaimer || "object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) && _io53(input.subtitleDisclaimer); const _io53 = input => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable) && (undefined === input.defaultValue || "object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) && _io54(input.defaultValue)); const _io54 = input => (undefined === input.enabled || false === input.enabled) && (undefined === input.text || Array.isArray(input.text) && input.text.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io55(elem))) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.duration || "number" === typeof input.duration); const _io55 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.value || "string" === typeof input.value); const _io56 = input => (undefined === input.url || "string" === typeof input.url) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.app || "string" === typeof input.app) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io57 = input => (undefined === input.microphone || "object" === typeof input.microphone && null !== input.microphone && false === Array.isArray(input.microphone) && _io58(input.microphone)) && (undefined === input.webcam || "object" === typeof input.webcam && null !== input.webcam && false === Array.isArray(input.webcam) && _io59(input.webcam)) && (undefined === input.countdown || "number" === typeof input.countdown); const _io58 = input => (undefined === input.deviceId || "string" === typeof input.deviceId) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.monitorInput || "boolean" === typeof input.monitorInput); const _io59 = input => (undefined === input.deviceId || "string" === typeof input.deviceId) && (undefined === input.frameRate || "number" === typeof input.frameRate) && (undefined === input.aspectRatio || "number" === typeof input.aspectRatio); const _io60 = input => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView) && (undefined === input.normalize || "object" === typeof input.normalize && null !== input.normalize && false === Array.isArray(input.normalize) && _io61(input.normalize)) && (undefined === input.voiceOver || "object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) && _io63(input.voiceOver)); const _io61 = input => (undefined === input.presets || Array.isArray(input.presets) && input.presets.every(elem => "object" === typeof elem && null !== elem && _io62(elem))) && (undefined === input.defaultPresetId || "string" === typeof input.defaultPresetId); const _io62 = input => "string" === typeof input.id && "string" === typeof input.title && "number" === typeof input.i && "number" === typeof input.tp; const _io63 = input => (undefined === input.inputDevice || "string" === typeof input.inputDevice) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.monitorInput || "boolean" === typeof input.monitorInput) && (undefined === input.backgroundReductionDb || "number" === typeof input.backgroundReductionDb) && (undefined === input.recordMode || "instant" === input.recordMode || "punchAndRoll" === input.recordMode) && (undefined === input.preRollDuration || "number" === typeof input.preRollDuration); const _io64 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io65 = input => (undefined === input.folded || "object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) && _io66(input.folded)) && (undefined === input.assets || "object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io67(input.assets)) && (undefined === input.pipeline || "object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) && _io71(input.pipeline)) && (undefined === input.item || "object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) && _io73(input.item)); const _io66 = input => undefined === input.auto || "boolean" === typeof input.auto; const _io67 = input => (undefined === input.story || "object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) && _io68(input.story)) && (undefined === input.note || "object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) && _io70(input.note)); const _io68 = input => undefined === input.excerpt || "object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) && _io69(input.excerpt); const _io69 = input => (undefined === input.maxLines || "number" === typeof input.maxLines) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.comments || "boolean" === typeof input.comments); const _io70 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io71 = input => (undefined === input.search || "object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) && _io72(input.search)) && (undefined === input.sortMode || true === _iv28.has(input.sortMode)); const _io72 = input => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed; const _io73 = input => (undefined === input.maxHeight || "number" === typeof input.maxHeight) && (undefined === input.titleLines || "number" === typeof input.titleLines); const _io74 = input => undefined === input.fontFamilies || Array.isArray(input.fontFamilies) && input.fontFamilies.every(elem => "string" === typeof elem); const _io75 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.folded || "boolean" === typeof input.folded); const _io76 = input => (undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && _io77(input.adobe)) && (undefined === input.rive || "object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) && _io78(input.rive)); const _io77 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies; const _io78 = input => undefined === input.template || "string" === typeof input.template; const _io79 = input => (undefined === input.collections || "boolean" === typeof input.collections) && (undefined === input.semanticSearch || "boolean" === typeof input.semanticSearch) && (undefined === input.ameRemoteRendering || "boolean" === typeof input.ameRemoteRendering); const _io80 = input => (undefined === input.utils || "boolean" === typeof input.utils) && (undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor) && (undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.refs || "boolean" === typeof input.refs) && (undefined === input.access || "boolean" === typeof input.access) && (undefined === input.files || "boolean" === typeof input.files) && (undefined === input["export"] || "boolean" === typeof input["export"]) && (undefined === input.json || "boolean" === typeof input.json) && (undefined === input.hlsjs || "boolean" === typeof input.hlsjs) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders) && (undefined === input.resetReplicas || "boolean" === typeof input.resetReplicas) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu) && (undefined === input.assetRoute || "boolean" === typeof input.assetRoute) && (undefined === input.devWarnings || "boolean" === typeof input.devWarnings) && (undefined === input.multiplexWebSockets || "boolean" === typeof input.multiplexWebSockets) && (undefined === input.systemHealth || "boolean" === typeof input.systemHealth); const _io81 = input => undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io82(input.events); const _io82 = input => (undefined === input.comment || Array.isArray(input.comment) && input.comment.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.assigned || Array.isArray(input.assigned) && input.assigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.unassigned || Array.isArray(input.unassigned) && input.unassigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.publishSucceeded || "object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) && _io83(input.publishSucceeded)); const _io83 = input => Object.keys(input).every(key => {
|
|
18033
|
+
}); const _io44 = input => (undefined === input.defaultFrameRate || "number" === typeof input.defaultFrameRate) && (undefined === input.placeholder || "string" === typeof input.placeholder) && (undefined === input.guide || "object" === typeof input.guide && null !== input.guide && false === Array.isArray(input.guide) && _io45(input.guide)) && (undefined === input.stepManyFrames || "number" === typeof input.stepManyFrames) && (undefined === input.liveZoomDuration || "number" === typeof input.liveZoomDuration) && (undefined === input.importTitleTemplate || "string" === typeof input.importTitleTemplate) && (undefined === input.tile || "object" === typeof input.tile && null !== input.tile && false === Array.isArray(input.tile) && _io46(input.tile)) && (undefined === input.timecodeReference || "string" === typeof input.timecodeReference) && (undefined === input.maxSubclipDuration || "number" === typeof input.maxSubclipDuration) && (undefined === input.rewindStep || "number" === typeof input.rewindStep) && (undefined === input.forwardStep || "number" === typeof input.forwardStep) && (undefined === input.interlacedPlayback || "string" === typeof input.interlacedPlayback) && (undefined === input.playbackRates || Array.isArray(input.playbackRates) && input.playbackRates.every(elem => "number" === typeof elem)) && (undefined === input.subtitles || "object" === typeof input.subtitles && null !== input.subtitles && false === Array.isArray(input.subtitles) && _io47(input.subtitles)) && (undefined === input.subtitleTemplateId || "string" === typeof input.subtitleTemplateId) && (undefined === input.initialVolume || "string" === typeof input.initialVolume) && (undefined === input.guides || Array.isArray(input.guides) && input.guides.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io50(elem))) && (undefined === input.download || "boolean" === typeof input.download) && (undefined === input.editMode || "object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) && _io51(input.editMode)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io52(input.transcribe)) && (null !== input.openCommand && (undefined === input.openCommand || "string" === typeof input.openCommand || "object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) && _io56(input.openCommand))) && (undefined === input.recorder || "object" === typeof input.recorder && null !== input.recorder && false === Array.isArray(input.recorder) && _io57(input.recorder)); const _io45 = input => (undefined === input.mask || "boolean" === typeof input.mask) && (undefined === input.actionSafe || "boolean" === typeof input.actionSafe) && (undefined === input.titleSafe || "boolean" === typeof input.titleSafe); const _io46 = input => (undefined === input.preview || "disabled" === input.preview || "play" === input.preview || "seek" === input.preview || "seekplay" === input.preview || "boolean" === typeof input.preview) && (undefined === input.showRenderProgress || "boolean" === typeof input.showRenderProgress); const _io47 = input => (undefined === input.spacing || "number" === typeof input.spacing) && (undefined === input.maxCharactersPerLine || "number" === typeof input.maxCharactersPerLine) && (undefined === input.suggestions || Array.isArray(input.suggestions) && input.suggestions.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io48(elem))) && (undefined === input.colors || Array.isArray(input.colors) && input.colors.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io49(elem))) && (undefined === input.overridableProperties || Array.isArray(input.overridableProperties) && input.overridableProperties.every(elem => null === elem || true === _iv23.has(elem))) && (undefined === input.previewResolutionScale || "number" === typeof input.previewResolutionScale); const _io48 = input => (null === input.ifAspectRatio || undefined === input.ifAspectRatio || "string" === typeof input.ifAspectRatio) && (null === input.ifLang || undefined === input.ifLang || "string" === typeof input.ifLang) && (null === input.thenStyle || undefined === input.thenStyle || "string" === typeof input.thenStyle) && (null === input.thenMaxCharactersPerLine || undefined === input.thenMaxCharactersPerLine || "number" === typeof input.thenMaxCharactersPerLine); const _io49 = input => (null === input.label || undefined === input.label || "string" === typeof input.label) && (null === input.color || undefined === input.color || "string" === typeof input.color); const _io50 = input => (undefined === input.label || "string" === typeof input.label) && (undefined === input.aspectRatio || "string" === typeof input.aspectRatio); const _io51 = input => (undefined === input.enabled || "boolean" === typeof input.enabled) && (undefined === input.defaultEnterOption || "edit" === input.defaultEnterOption || "createNew" === input.defaultEnterOption || "none" === input.defaultEnterOption) && (undefined === input.defaultExitOption || "none" === input.defaultExitOption || "update" === input.defaultExitOption || "leave" === input.defaultExitOption); const _io52 = input => undefined === input.subtitleDisclaimer || "object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) && _io53(input.subtitleDisclaimer); const _io53 = input => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable) && (undefined === input.defaultValue || "object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) && _io54(input.defaultValue)); const _io54 = input => (undefined === input.enabled || false === input.enabled) && (undefined === input.text || Array.isArray(input.text) && input.text.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io55(elem))) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.duration || "number" === typeof input.duration); const _io55 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.value || "string" === typeof input.value); const _io56 = input => (undefined === input.url || "string" === typeof input.url) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.app || "string" === typeof input.app) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io57 = input => (undefined === input.microphone || "object" === typeof input.microphone && null !== input.microphone && false === Array.isArray(input.microphone) && _io58(input.microphone)) && (undefined === input.webcam || "object" === typeof input.webcam && null !== input.webcam && false === Array.isArray(input.webcam) && _io59(input.webcam)) && (undefined === input.countdown || "number" === typeof input.countdown); const _io58 = input => (undefined === input.deviceId || "string" === typeof input.deviceId) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.monitorInput || "boolean" === typeof input.monitorInput); const _io59 = input => (undefined === input.deviceId || "string" === typeof input.deviceId) && (undefined === input.frameRate || "number" === typeof input.frameRate) && (undefined === input.aspectRatio || "number" === typeof input.aspectRatio); const _io60 = input => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView) && (undefined === input.audioMapping || "object" === typeof input.audioMapping && null !== input.audioMapping && false === Array.isArray(input.audioMapping) && _io61(input.audioMapping)) && (undefined === input.normalize || "object" === typeof input.normalize && null !== input.normalize && false === Array.isArray(input.normalize) && _io63(input.normalize)) && (undefined === input.voiceOver || "object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) && _io65(input.voiceOver)); const _io61 = input => undefined === input.presets || Array.isArray(input.presets) && input.presets.every(elem => "object" === typeof elem && null !== elem && _io62(elem)); const _io62 = input => "string" === typeof input.id && "string" === typeof input.title && (undefined === input.mapping || Array.isArray(input.mapping) && input.mapping.every(elem => Array.isArray(elem) && elem.every(elem => "number" === typeof elem))) && (undefined === input.mute || Array.isArray(input.mute) && input.mute.every(elem => "boolean" === typeof elem)) && (undefined === input.minInChannels || "number" === typeof input.minInChannels) && (undefined === input.maxInChannels || "number" === typeof input.maxInChannels) && (undefined === input.minOutChannels || "number" === typeof input.minOutChannels) && (undefined === input.maxOutChannels || "number" === typeof input.maxOutChannels); const _io63 = input => (undefined === input.presets || Array.isArray(input.presets) && input.presets.every(elem => "object" === typeof elem && null !== elem && _io64(elem))) && (undefined === input.defaultPresetId || "string" === typeof input.defaultPresetId); const _io64 = input => "string" === typeof input.id && "string" === typeof input.title && "number" === typeof input.i && "number" === typeof input.tp; const _io65 = input => (undefined === input.inputDevice || "string" === typeof input.inputDevice) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.monitorInput || "boolean" === typeof input.monitorInput) && (undefined === input.backgroundReductionDb || "number" === typeof input.backgroundReductionDb) && (undefined === input.recordMode || "instant" === input.recordMode || "punchAndRoll" === input.recordMode) && (undefined === input.preRollDuration || "number" === typeof input.preRollDuration); const _io66 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.command || "string" === typeof input.command) && (undefined === input.args || Array.isArray(input.args) && input.args.every(elem => "string" === typeof elem)); const _io67 = input => (undefined === input.folded || "object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) && _io68(input.folded)) && (undefined === input.assets || "object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io69(input.assets)) && (undefined === input.pipeline || "object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) && _io73(input.pipeline)) && (undefined === input.item || "object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) && _io75(input.item)); const _io68 = input => undefined === input.auto || "boolean" === typeof input.auto; const _io69 = input => (undefined === input.story || "object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) && _io70(input.story)) && (undefined === input.note || "object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) && _io72(input.note)); const _io70 = input => undefined === input.excerpt || "object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) && _io71(input.excerpt); const _io71 = input => (undefined === input.maxLines || "number" === typeof input.maxLines) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.comments || "boolean" === typeof input.comments); const _io72 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io73 = input => (undefined === input.search || "object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) && _io74(input.search)) && (undefined === input.sortMode || true === _iv32.has(input.sortMode)); const _io74 = input => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed; const _io75 = input => (undefined === input.maxHeight || "number" === typeof input.maxHeight) && (undefined === input.titleLines || "number" === typeof input.titleLines); const _io76 = input => undefined === input.fontFamilies || Array.isArray(input.fontFamilies) && input.fontFamilies.every(elem => "string" === typeof elem); const _io77 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.folded || "boolean" === typeof input.folded); const _io78 = input => (undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && _io79(input.adobe)) && (undefined === input.rive || "object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) && _io80(input.rive)); const _io79 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies; const _io80 = input => undefined === input.template || "string" === typeof input.template; const _io81 = input => (undefined === input.collections || "boolean" === typeof input.collections) && (undefined === input.semanticSearch || "boolean" === typeof input.semanticSearch) && (undefined === input.ameRemoteRendering || "boolean" === typeof input.ameRemoteRendering); const _io82 = input => (undefined === input.utils || "boolean" === typeof input.utils) && (undefined === input.utilsAssetEditor || "boolean" === typeof input.utilsAssetEditor) && (undefined === input.utilsAssetPanel || "boolean" === typeof input.utilsAssetPanel) && (undefined === input.history || "boolean" === typeof input.history) && (undefined === input.refs || "boolean" === typeof input.refs) && (undefined === input.access || "boolean" === typeof input.access) && (undefined === input.files || "boolean" === typeof input.files) && (undefined === input["export"] || "boolean" === typeof input["export"]) && (undefined === input.json || "boolean" === typeof input.json) && (undefined === input.hlsjs || "boolean" === typeof input.hlsjs) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders) && (undefined === input.resetReplicas || "boolean" === typeof input.resetReplicas) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu) && (undefined === input.assetRoute || "boolean" === typeof input.assetRoute) && (undefined === input.devWarnings || "boolean" === typeof input.devWarnings) && (undefined === input.multiplexWebSockets || "boolean" === typeof input.multiplexWebSockets) && (undefined === input.systemHealth || "boolean" === typeof input.systemHealth) && (undefined === input.systemHealthIgnore || "boolean" === typeof input.systemHealthIgnore); const _io83 = input => undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io84(input.events); const _io84 = input => (undefined === input.comment || Array.isArray(input.comment) && input.comment.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.assigned || Array.isArray(input.assigned) && input.assigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.unassigned || Array.isArray(input.unassigned) && input.unassigned.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem)) && (undefined === input.publishSucceeded || "object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) && _io85(input.publishSucceeded)); const _io85 = input => Object.keys(input).every(key => {
|
|
17993
18034
|
const value = input[key];
|
|
17994
18035
|
if (undefined === value)
|
|
17995
18036
|
return true;
|
|
17996
18037
|
return Array.isArray(value) && value.every(elem => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem);
|
|
17997
|
-
}); const
|
|
18038
|
+
}); const _io86 = input => (undefined === input.create || "object" === typeof input.create && null !== input.create && false === Array.isArray(input.create) && _io87(input.create)) && (undefined === input.duplicate || "object" === typeof input.duplicate && null !== input.duplicate && false === Array.isArray(input.duplicate) && _io88(input.duplicate)); const _io87 = input => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix) && (undefined === input.titleSuffix || "string" === typeof input.titleSuffix); const _io88 = input => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix) && (undefined === input.titleSuffix || "string" === typeof input.titleSuffix); const _io89 = input => (undefined === input.stateFilter || Array.isArray(input.stateFilter) && input.stateFilter.every(elem => "number" === typeof elem)) && (undefined === input.textFilter || "string" === typeof input.textFilter) && (undefined === input.showEmpty || "boolean" === typeof input.showEmpty) && (undefined === input.selectedRecord || "string" === typeof input.selectedRecord) && (undefined === input.subscribeSearchHits || "boolean" === typeof input.subscribeSearchHits) && (undefined === input.parseRegex || "boolean" === typeof input.parseRegex); const _io90 = input => undefined === input.disableHotArea || "boolean" === typeof input.disableHotArea; const _io91 = input => undefined === input.refreshInterval || "number" === typeof input.refreshInterval; const _io92 = input => undefined === input.layout || "string" === typeof input.layout; const _io93 = input => undefined === input.ignoredMessages || Array.isArray(input.ignoredMessages) && input.ignoredMessages.every(elem => "string" === typeof elem); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.autoLogoutTime || "number" === typeof input.autoLogoutTime || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
17998
18039
|
method: "typia.assertGuard",
|
|
17999
18040
|
path: _path + ".autoLogoutTime",
|
|
18000
18041
|
expected: "(number | undefined)",
|
|
@@ -18064,19 +18105,19 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18064
18105
|
path: _path + ".exclusiveTagGroups",
|
|
18065
18106
|
expected: "(Array<Array<string>> | undefined)",
|
|
18066
18107
|
value: input.exclusiveTagGroups
|
|
18067
|
-
}, _errorFactory)) && input.exclusiveTagGroups.every((elem,
|
|
18108
|
+
}, _errorFactory)) && input.exclusiveTagGroups.every((elem, _index40) => (Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18068
18109
|
method: "typia.assertGuard",
|
|
18069
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
18110
|
+
path: _path + ".exclusiveTagGroups[" + _index40 + "]",
|
|
18070
18111
|
expected: "Array<string>",
|
|
18071
18112
|
value: elem
|
|
18072
|
-
}, _errorFactory)) && elem.every((elem,
|
|
18113
|
+
}, _errorFactory)) && elem.every((elem, _index41) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18073
18114
|
method: "typia.assertGuard",
|
|
18074
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
18115
|
+
path: _path + ".exclusiveTagGroups[" + _index40 + "][" + _index41 + "]",
|
|
18075
18116
|
expected: "string",
|
|
18076
18117
|
value: elem
|
|
18077
18118
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18078
18119
|
method: "typia.assertGuard",
|
|
18079
|
-
path: _path + ".exclusiveTagGroups[" +
|
|
18120
|
+
path: _path + ".exclusiveTagGroups[" + _index40 + "]",
|
|
18080
18121
|
expected: "Array<string>",
|
|
18081
18122
|
value: elem
|
|
18082
18123
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18224,15 +18265,15 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18224
18265
|
path: _path + ".commands",
|
|
18225
18266
|
expected: "(Array<__type>.o6 | undefined)",
|
|
18226
18267
|
value: input.commands
|
|
18227
|
-
}, _errorFactory)) && input.commands.every((elem,
|
|
18268
|
+
}, _errorFactory)) && input.commands.every((elem, _index42) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18228
18269
|
method: "typia.assertGuard",
|
|
18229
|
-
path: _path + ".commands[" +
|
|
18230
|
-
expected: "__type.
|
|
18270
|
+
path: _path + ".commands[" + _index42 + "]",
|
|
18271
|
+
expected: "__type.o58",
|
|
18231
18272
|
value: elem
|
|
18232
|
-
}, _errorFactory)) &&
|
|
18273
|
+
}, _errorFactory)) && _ao66(elem, _path + ".commands[" + _index42 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18233
18274
|
method: "typia.assertGuard",
|
|
18234
|
-
path: _path + ".commands[" +
|
|
18235
|
-
expected: "__type.
|
|
18275
|
+
path: _path + ".commands[" + _index42 + "]",
|
|
18276
|
+
expected: "__type.o58",
|
|
18236
18277
|
value: elem
|
|
18237
18278
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18238
18279
|
method: "typia.assertGuard",
|
|
@@ -18244,9 +18285,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18244
18285
|
path: _path + ".predefinedTags",
|
|
18245
18286
|
expected: "(Array<string> | undefined)",
|
|
18246
18287
|
value: input.predefinedTags
|
|
18247
|
-
}, _errorFactory)) && input.predefinedTags.every((elem,
|
|
18288
|
+
}, _errorFactory)) && input.predefinedTags.every((elem, _index43) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18248
18289
|
method: "typia.assertGuard",
|
|
18249
|
-
path: _path + ".predefinedTags[" +
|
|
18290
|
+
path: _path + ".predefinedTags[" + _index43 + "]",
|
|
18250
18291
|
expected: "string",
|
|
18251
18292
|
value: elem
|
|
18252
18293
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18257,37 +18298,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18257
18298
|
}, _errorFactory)) && (undefined === input.storyboard || ("object" === typeof input.storyboard && null !== input.storyboard && false === Array.isArray(input.storyboard) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18258
18299
|
method: "typia.assertGuard",
|
|
18259
18300
|
path: _path + ".storyboard",
|
|
18260
|
-
expected: "(__type.
|
|
18301
|
+
expected: "(__type.o59 | undefined)",
|
|
18261
18302
|
value: input.storyboard
|
|
18262
|
-
}, _errorFactory)) &&
|
|
18303
|
+
}, _errorFactory)) && _ao67(input.storyboard, _path + ".storyboard", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18263
18304
|
method: "typia.assertGuard",
|
|
18264
18305
|
path: _path + ".storyboard",
|
|
18265
|
-
expected: "(__type.
|
|
18306
|
+
expected: "(__type.o59 | undefined)",
|
|
18266
18307
|
value: input.storyboard
|
|
18267
18308
|
}, _errorFactory)) && (undefined === input.print || ("object" === typeof input.print && null !== input.print && false === Array.isArray(input.print) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18268
18309
|
method: "typia.assertGuard",
|
|
18269
18310
|
path: _path + ".print",
|
|
18270
|
-
expected: "(__type.
|
|
18311
|
+
expected: "(__type.o68 | undefined)",
|
|
18271
18312
|
value: input.print
|
|
18272
|
-
}, _errorFactory)) &&
|
|
18313
|
+
}, _errorFactory)) && _ao76(input.print, _path + ".print", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18273
18314
|
method: "typia.assertGuard",
|
|
18274
18315
|
path: _path + ".print",
|
|
18275
|
-
expected: "(__type.
|
|
18316
|
+
expected: "(__type.o68 | undefined)",
|
|
18276
18317
|
value: input.print
|
|
18277
18318
|
}, _errorFactory)) && (undefined === input.hiddenPreviews || (Array.isArray(input.hiddenPreviews) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18278
18319
|
method: "typia.assertGuard",
|
|
18279
18320
|
path: _path + ".hiddenPreviews",
|
|
18280
18321
|
expected: "(Array<__type>.o7 | undefined)",
|
|
18281
18322
|
value: input.hiddenPreviews
|
|
18282
|
-
}, _errorFactory)) && input.hiddenPreviews.every((elem,
|
|
18323
|
+
}, _errorFactory)) && input.hiddenPreviews.every((elem, _index44) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18283
18324
|
method: "typia.assertGuard",
|
|
18284
|
-
path: _path + ".hiddenPreviews[" +
|
|
18285
|
-
expected: "__type.
|
|
18325
|
+
path: _path + ".hiddenPreviews[" + _index44 + "]",
|
|
18326
|
+
expected: "__type.o69",
|
|
18286
18327
|
value: elem
|
|
18287
|
-
}, _errorFactory)) &&
|
|
18328
|
+
}, _errorFactory)) && _ao77(elem, _path + ".hiddenPreviews[" + _index44 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18288
18329
|
method: "typia.assertGuard",
|
|
18289
|
-
path: _path + ".hiddenPreviews[" +
|
|
18290
|
-
expected: "__type.
|
|
18330
|
+
path: _path + ".hiddenPreviews[" + _index44 + "]",
|
|
18331
|
+
expected: "__type.o69",
|
|
18291
18332
|
value: elem
|
|
18292
18333
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18293
18334
|
method: "typia.assertGuard",
|
|
@@ -18297,12 +18338,12 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18297
18338
|
}, _errorFactory)) && (undefined === input.plugins || ("object" === typeof input.plugins && null !== input.plugins && false === Array.isArray(input.plugins) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18298
18339
|
method: "typia.assertGuard",
|
|
18299
18340
|
path: _path + ".plugins",
|
|
18300
|
-
expected: "(__type.
|
|
18341
|
+
expected: "(__type.o70 | undefined)",
|
|
18301
18342
|
value: input.plugins
|
|
18302
|
-
}, _errorFactory)) &&
|
|
18343
|
+
}, _errorFactory)) && _ao78(input.plugins, _path + ".plugins", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18303
18344
|
method: "typia.assertGuard",
|
|
18304
18345
|
path: _path + ".plugins",
|
|
18305
|
-
expected: "(__type.
|
|
18346
|
+
expected: "(__type.o70 | undefined)",
|
|
18306
18347
|
value: input.plugins
|
|
18307
18348
|
}, _errorFactory)) && (undefined === input.crashScreen || "boolean" === typeof input.crashScreen || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18308
18349
|
method: "typia.assertGuard",
|
|
@@ -18317,32 +18358,32 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18317
18358
|
}, _errorFactory)) && (undefined === input.featurePreview || ("object" === typeof input.featurePreview && null !== input.featurePreview && false === Array.isArray(input.featurePreview) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18318
18359
|
method: "typia.assertGuard",
|
|
18319
18360
|
path: _path + ".featurePreview",
|
|
18320
|
-
expected: "(__type.
|
|
18361
|
+
expected: "(__type.o73 | undefined)",
|
|
18321
18362
|
value: input.featurePreview
|
|
18322
|
-
}, _errorFactory)) &&
|
|
18363
|
+
}, _errorFactory)) && _ao81(input.featurePreview, _path + ".featurePreview", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18323
18364
|
method: "typia.assertGuard",
|
|
18324
18365
|
path: _path + ".featurePreview",
|
|
18325
|
-
expected: "(__type.
|
|
18366
|
+
expected: "(__type.o73 | undefined)",
|
|
18326
18367
|
value: input.featurePreview
|
|
18327
18368
|
}, _errorFactory)) && (undefined === input.flags || ("object" === typeof input.flags && null !== input.flags && false === Array.isArray(input.flags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18328
18369
|
method: "typia.assertGuard",
|
|
18329
18370
|
path: _path + ".flags",
|
|
18330
|
-
expected: "(__type.
|
|
18371
|
+
expected: "(__type.o74 | undefined)",
|
|
18331
18372
|
value: input.flags
|
|
18332
|
-
}, _errorFactory)) &&
|
|
18373
|
+
}, _errorFactory)) && _ao82(input.flags, _path + ".flags", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18333
18374
|
method: "typia.assertGuard",
|
|
18334
18375
|
path: _path + ".flags",
|
|
18335
|
-
expected: "(__type.
|
|
18376
|
+
expected: "(__type.o74 | undefined)",
|
|
18336
18377
|
value: input.flags
|
|
18337
18378
|
}, _errorFactory)) && (undefined === input.notifications || ("object" === typeof input.notifications && null !== input.notifications && false === Array.isArray(input.notifications) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18338
18379
|
method: "typia.assertGuard",
|
|
18339
18380
|
path: _path + ".notifications",
|
|
18340
|
-
expected: "(__type.
|
|
18381
|
+
expected: "(__type.o75 | undefined)",
|
|
18341
18382
|
value: input.notifications
|
|
18342
|
-
}, _errorFactory)) &&
|
|
18383
|
+
}, _errorFactory)) && _ao83(input.notifications, _path + ".notifications", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18343
18384
|
method: "typia.assertGuard",
|
|
18344
18385
|
path: _path + ".notifications",
|
|
18345
|
-
expected: "(__type.
|
|
18386
|
+
expected: "(__type.o75 | undefined)",
|
|
18346
18387
|
value: input.notifications
|
|
18347
18388
|
}, _errorFactory)) && (undefined === input.suppressDeleteAlert || "boolean" === typeof input.suppressDeleteAlert || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18348
18389
|
method: "typia.assertGuard",
|
|
@@ -18352,53 +18393,63 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18352
18393
|
}, _errorFactory)) && (undefined === input.clone || ("object" === typeof input.clone && null !== input.clone && false === Array.isArray(input.clone) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18353
18394
|
method: "typia.assertGuard",
|
|
18354
18395
|
path: _path + ".clone",
|
|
18355
|
-
expected: "(__type.
|
|
18396
|
+
expected: "(__type.o78 | undefined)",
|
|
18356
18397
|
value: input.clone
|
|
18357
|
-
}, _errorFactory)) &&
|
|
18398
|
+
}, _errorFactory)) && _ao86(input.clone, _path + ".clone", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18358
18399
|
method: "typia.assertGuard",
|
|
18359
18400
|
path: _path + ".clone",
|
|
18360
|
-
expected: "(__type.
|
|
18401
|
+
expected: "(__type.o78 | undefined)",
|
|
18361
18402
|
value: input.clone
|
|
18362
18403
|
}, _errorFactory)) && (undefined === input.utilsAssetEditorPanel || ("object" === typeof input.utilsAssetEditorPanel && null !== input.utilsAssetEditorPanel && false === Array.isArray(input.utilsAssetEditorPanel) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18363
18404
|
method: "typia.assertGuard",
|
|
18364
18405
|
path: _path + ".utilsAssetEditorPanel",
|
|
18365
|
-
expected: "(__type.
|
|
18406
|
+
expected: "(__type.o81 | undefined)",
|
|
18366
18407
|
value: input.utilsAssetEditorPanel
|
|
18367
|
-
}, _errorFactory)) &&
|
|
18408
|
+
}, _errorFactory)) && _ao89(input.utilsAssetEditorPanel, _path + ".utilsAssetEditorPanel", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18368
18409
|
method: "typia.assertGuard",
|
|
18369
18410
|
path: _path + ".utilsAssetEditorPanel",
|
|
18370
|
-
expected: "(__type.
|
|
18411
|
+
expected: "(__type.o81 | undefined)",
|
|
18371
18412
|
value: input.utilsAssetEditorPanel
|
|
18372
18413
|
}, _errorFactory)) && (undefined === input.display || ("object" === typeof input.display && null !== input.display && false === Array.isArray(input.display) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18373
18414
|
method: "typia.assertGuard",
|
|
18374
18415
|
path: _path + ".display",
|
|
18375
|
-
expected: "(__type.
|
|
18416
|
+
expected: "(__type.o82 | undefined)",
|
|
18376
18417
|
value: input.display
|
|
18377
|
-
}, _errorFactory)) &&
|
|
18418
|
+
}, _errorFactory)) && _ao90(input.display, _path + ".display", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18378
18419
|
method: "typia.assertGuard",
|
|
18379
18420
|
path: _path + ".display",
|
|
18380
|
-
expected: "(__type.
|
|
18421
|
+
expected: "(__type.o82 | undefined)",
|
|
18381
18422
|
value: input.display
|
|
18382
18423
|
}, _errorFactory)) && (undefined === input.bookmarks || ("object" === typeof input.bookmarks && null !== input.bookmarks && false === Array.isArray(input.bookmarks) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18383
18424
|
method: "typia.assertGuard",
|
|
18384
18425
|
path: _path + ".bookmarks",
|
|
18385
|
-
expected: "(__type.
|
|
18426
|
+
expected: "(__type.o83 | undefined)",
|
|
18386
18427
|
value: input.bookmarks
|
|
18387
|
-
}, _errorFactory)) &&
|
|
18428
|
+
}, _errorFactory)) && _ao91(input.bookmarks, _path + ".bookmarks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18388
18429
|
method: "typia.assertGuard",
|
|
18389
18430
|
path: _path + ".bookmarks",
|
|
18390
|
-
expected: "(__type.
|
|
18431
|
+
expected: "(__type.o83 | undefined)",
|
|
18391
18432
|
value: input.bookmarks
|
|
18392
18433
|
}, _errorFactory)) && (undefined === input.shotbox || ("object" === typeof input.shotbox && null !== input.shotbox && false === Array.isArray(input.shotbox) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18393
18434
|
method: "typia.assertGuard",
|
|
18394
18435
|
path: _path + ".shotbox",
|
|
18395
|
-
expected: "(__type.
|
|
18436
|
+
expected: "(__type.o84 | undefined)",
|
|
18396
18437
|
value: input.shotbox
|
|
18397
|
-
}, _errorFactory)) &&
|
|
18438
|
+
}, _errorFactory)) && _ao92(input.shotbox, _path + ".shotbox", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18398
18439
|
method: "typia.assertGuard",
|
|
18399
18440
|
path: _path + ".shotbox",
|
|
18400
|
-
expected: "(__type.
|
|
18441
|
+
expected: "(__type.o84 | undefined)",
|
|
18401
18442
|
value: input.shotbox
|
|
18443
|
+
}, _errorFactory)) && (undefined === input.performance || ("object" === typeof input.performance && null !== input.performance && false === Array.isArray(input.performance) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18444
|
+
method: "typia.assertGuard",
|
|
18445
|
+
path: _path + ".performance",
|
|
18446
|
+
expected: "(__type.o85 | undefined)",
|
|
18447
|
+
value: input.performance
|
|
18448
|
+
}, _errorFactory)) && _ao93(input.performance, _path + ".performance", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18449
|
+
method: "typia.assertGuard",
|
|
18450
|
+
path: _path + ".performance",
|
|
18451
|
+
expected: "(__type.o85 | undefined)",
|
|
18452
|
+
value: input.performance
|
|
18402
18453
|
}, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => (undefined === input.overrideUserContact || "boolean" === typeof input.overrideUserContact || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18403
18454
|
method: "typia.assertGuard",
|
|
18404
18455
|
path: _path + ".overrideUserContact",
|
|
@@ -18566,9 +18617,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18566
18617
|
path: _path + ".sortOrder",
|
|
18567
18618
|
expected: "(Array<string> | undefined)",
|
|
18568
18619
|
value: input.sortOrder
|
|
18569
|
-
}, _errorFactory)) && input.sortOrder.every((elem,
|
|
18620
|
+
}, _errorFactory)) && input.sortOrder.every((elem, _index45) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18570
18621
|
method: "typia.assertGuard",
|
|
18571
|
-
path: _path + ".sortOrder[" +
|
|
18622
|
+
path: _path + ".sortOrder[" + _index45 + "]",
|
|
18572
18623
|
expected: "string",
|
|
18573
18624
|
value: elem
|
|
18574
18625
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18581,9 +18632,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18581
18632
|
path: _path + ".include",
|
|
18582
18633
|
expected: "(Array<string> | undefined)",
|
|
18583
18634
|
value: input.include
|
|
18584
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
18635
|
+
}, _errorFactory)) && input.include.every((elem, _index46) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18585
18636
|
method: "typia.assertGuard",
|
|
18586
|
-
path: _path + ".include[" +
|
|
18637
|
+
path: _path + ".include[" + _index46 + "]",
|
|
18587
18638
|
expected: "string",
|
|
18588
18639
|
value: elem
|
|
18589
18640
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18596,9 +18647,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18596
18647
|
path: _path + ".exclude",
|
|
18597
18648
|
expected: "(Array<string> | undefined)",
|
|
18598
18649
|
value: input.exclude
|
|
18599
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
18650
|
+
}, _errorFactory)) && input.exclude.every((elem, _index47) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18600
18651
|
method: "typia.assertGuard",
|
|
18601
|
-
path: _path + ".exclude[" +
|
|
18652
|
+
path: _path + ".exclude[" + _index47 + "]",
|
|
18602
18653
|
expected: "string",
|
|
18603
18654
|
value: elem
|
|
18604
18655
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18611,9 +18662,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18611
18662
|
path: _path + ".include",
|
|
18612
18663
|
expected: "(Array<string> | undefined)",
|
|
18613
18664
|
value: input.include
|
|
18614
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
18665
|
+
}, _errorFactory)) && input.include.every((elem, _index48) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18615
18666
|
method: "typia.assertGuard",
|
|
18616
|
-
path: _path + ".include[" +
|
|
18667
|
+
path: _path + ".include[" + _index48 + "]",
|
|
18617
18668
|
expected: "string",
|
|
18618
18669
|
value: elem
|
|
18619
18670
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18626,9 +18677,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18626
18677
|
path: _path + ".exclude",
|
|
18627
18678
|
expected: "(Array<string> | undefined)",
|
|
18628
18679
|
value: input.exclude
|
|
18629
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
18680
|
+
}, _errorFactory)) && input.exclude.every((elem, _index49) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18630
18681
|
method: "typia.assertGuard",
|
|
18631
|
-
path: _path + ".exclude[" +
|
|
18682
|
+
path: _path + ".exclude[" + _index49 + "]",
|
|
18632
18683
|
expected: "string",
|
|
18633
18684
|
value: elem
|
|
18634
18685
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18641,9 +18692,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18641
18692
|
path: _path + ".include",
|
|
18642
18693
|
expected: "(Array<string> | undefined)",
|
|
18643
18694
|
value: input.include
|
|
18644
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
18695
|
+
}, _errorFactory)) && input.include.every((elem, _index50) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18645
18696
|
method: "typia.assertGuard",
|
|
18646
|
-
path: _path + ".include[" +
|
|
18697
|
+
path: _path + ".include[" + _index50 + "]",
|
|
18647
18698
|
expected: "string",
|
|
18648
18699
|
value: elem
|
|
18649
18700
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18656,9 +18707,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18656
18707
|
path: _path + ".exclude",
|
|
18657
18708
|
expected: "(Array<string> | undefined)",
|
|
18658
18709
|
value: input.exclude
|
|
18659
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
18710
|
+
}, _errorFactory)) && input.exclude.every((elem, _index51) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18660
18711
|
method: "typia.assertGuard",
|
|
18661
|
-
path: _path + ".exclude[" +
|
|
18712
|
+
path: _path + ".exclude[" + _index51 + "]",
|
|
18662
18713
|
expected: "string",
|
|
18663
18714
|
value: elem
|
|
18664
18715
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18671,9 +18722,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18671
18722
|
path: _path + ".include",
|
|
18672
18723
|
expected: "(Array<string> | undefined)",
|
|
18673
18724
|
value: input.include
|
|
18674
|
-
}, _errorFactory)) && input.include.every((elem,
|
|
18725
|
+
}, _errorFactory)) && input.include.every((elem, _index52) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18675
18726
|
method: "typia.assertGuard",
|
|
18676
|
-
path: _path + ".include[" +
|
|
18727
|
+
path: _path + ".include[" + _index52 + "]",
|
|
18677
18728
|
expected: "string",
|
|
18678
18729
|
value: elem
|
|
18679
18730
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18686,9 +18737,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18686
18737
|
path: _path + ".exclude",
|
|
18687
18738
|
expected: "(Array<string> | undefined)",
|
|
18688
18739
|
value: input.exclude
|
|
18689
|
-
}, _errorFactory)) && input.exclude.every((elem,
|
|
18740
|
+
}, _errorFactory)) && input.exclude.every((elem, _index53) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18690
18741
|
method: "typia.assertGuard",
|
|
18691
|
-
path: _path + ".exclude[" +
|
|
18742
|
+
path: _path + ".exclude[" + _index53 + "]",
|
|
18692
18743
|
expected: "string",
|
|
18693
18744
|
value: elem
|
|
18694
18745
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18786,14 +18837,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18786
18837
|
path: _path + ".colorTags",
|
|
18787
18838
|
expected: "(Array<PromotedTag> | undefined)",
|
|
18788
18839
|
value: input.colorTags
|
|
18789
|
-
}, _errorFactory)) && input.colorTags.every((elem,
|
|
18840
|
+
}, _errorFactory)) && input.colorTags.every((elem, _index54) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18790
18841
|
method: "typia.assertGuard",
|
|
18791
|
-
path: _path + ".colorTags[" +
|
|
18842
|
+
path: _path + ".colorTags[" + _index54 + "]",
|
|
18792
18843
|
expected: "PromotedTag",
|
|
18793
18844
|
value: elem
|
|
18794
|
-
}, _errorFactory)) && _ao22(elem, _path + ".colorTags[" +
|
|
18845
|
+
}, _errorFactory)) && _ao22(elem, _path + ".colorTags[" + _index54 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18795
18846
|
method: "typia.assertGuard",
|
|
18796
|
-
path: _path + ".colorTags[" +
|
|
18847
|
+
path: _path + ".colorTags[" + _index54 + "]",
|
|
18797
18848
|
expected: "PromotedTag",
|
|
18798
18849
|
value: elem
|
|
18799
18850
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18826,14 +18877,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18826
18877
|
path: _path + ".colorHistory",
|
|
18827
18878
|
expected: "(Array<__type> | undefined)",
|
|
18828
18879
|
value: input.colorHistory
|
|
18829
|
-
}, _errorFactory)) && input.colorHistory.every((elem,
|
|
18880
|
+
}, _errorFactory)) && input.colorHistory.every((elem, _index55) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18830
18881
|
method: "typia.assertGuard",
|
|
18831
|
-
path: _path + ".colorHistory[" +
|
|
18882
|
+
path: _path + ".colorHistory[" + _index55 + "]",
|
|
18832
18883
|
expected: "__type.o20",
|
|
18833
18884
|
value: elem
|
|
18834
|
-
}, _errorFactory)) && _ao25(elem, _path + ".colorHistory[" +
|
|
18885
|
+
}, _errorFactory)) && _ao25(elem, _path + ".colorHistory[" + _index55 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18835
18886
|
method: "typia.assertGuard",
|
|
18836
|
-
path: _path + ".colorHistory[" +
|
|
18887
|
+
path: _path + ".colorHistory[" + _index55 + "]",
|
|
18837
18888
|
expected: "__type.o20",
|
|
18838
18889
|
value: elem
|
|
18839
18890
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -18916,9 +18967,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
18916
18967
|
path: _path + ".favorites",
|
|
18917
18968
|
expected: "(Array<string> | undefined)",
|
|
18918
18969
|
value: input.favorites
|
|
18919
|
-
}, _errorFactory)) && input.favorites.every((elem,
|
|
18970
|
+
}, _errorFactory)) && input.favorites.every((elem, _index56) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
18920
18971
|
method: "typia.assertGuard",
|
|
18921
|
-
path: _path + ".favorites[" +
|
|
18972
|
+
path: _path + ".favorites[" + _index56 + "]",
|
|
18922
18973
|
expected: "string",
|
|
18923
18974
|
value: elem
|
|
18924
18975
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19346,9 +19397,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19346
19397
|
path: _path + ".playbackRates",
|
|
19347
19398
|
expected: "(Array<number> | undefined)",
|
|
19348
19399
|
value: input.playbackRates
|
|
19349
|
-
}, _errorFactory)) && input.playbackRates.every((elem,
|
|
19400
|
+
}, _errorFactory)) && input.playbackRates.every((elem, _index57) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19350
19401
|
method: "typia.assertGuard",
|
|
19351
|
-
path: _path + ".playbackRates[" +
|
|
19402
|
+
path: _path + ".playbackRates[" + _index57 + "]",
|
|
19352
19403
|
expected: "number",
|
|
19353
19404
|
value: elem
|
|
19354
19405
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19381,14 +19432,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19381
19432
|
path: _path + ".guides",
|
|
19382
19433
|
expected: "(Array<__type>.o3 | undefined)",
|
|
19383
19434
|
value: input.guides
|
|
19384
|
-
}, _errorFactory)) && input.guides.every((elem,
|
|
19435
|
+
}, _errorFactory)) && input.guides.every((elem, _index58) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19385
19436
|
method: "typia.assertGuard",
|
|
19386
|
-
path: _path + ".guides[" +
|
|
19437
|
+
path: _path + ".guides[" + _index58 + "]",
|
|
19387
19438
|
expected: "__type.o43",
|
|
19388
19439
|
value: elem
|
|
19389
|
-
}, _errorFactory)) && _ao50(elem, _path + ".guides[" +
|
|
19440
|
+
}, _errorFactory)) && _ao50(elem, _path + ".guides[" + _index58 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19390
19441
|
method: "typia.assertGuard",
|
|
19391
|
-
path: _path + ".guides[" +
|
|
19442
|
+
path: _path + ".guides[" + _index58 + "]",
|
|
19392
19443
|
expected: "__type.o43",
|
|
19393
19444
|
value: elem
|
|
19394
19445
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19486,14 +19537,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19486
19537
|
path: _path + ".suggestions",
|
|
19487
19538
|
expected: "(Array<__type>.o1 | undefined)",
|
|
19488
19539
|
value: input.suggestions
|
|
19489
|
-
}, _errorFactory)) && input.suggestions.every((elem,
|
|
19540
|
+
}, _errorFactory)) && input.suggestions.every((elem, _index59) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19490
19541
|
method: "typia.assertGuard",
|
|
19491
|
-
path: _path + ".suggestions[" +
|
|
19542
|
+
path: _path + ".suggestions[" + _index59 + "]",
|
|
19492
19543
|
expected: "__type.o41",
|
|
19493
19544
|
value: elem
|
|
19494
|
-
}, _errorFactory)) && _ao48(elem, _path + ".suggestions[" +
|
|
19545
|
+
}, _errorFactory)) && _ao48(elem, _path + ".suggestions[" + _index59 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19495
19546
|
method: "typia.assertGuard",
|
|
19496
|
-
path: _path + ".suggestions[" +
|
|
19547
|
+
path: _path + ".suggestions[" + _index59 + "]",
|
|
19497
19548
|
expected: "__type.o41",
|
|
19498
19549
|
value: elem
|
|
19499
19550
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19506,14 +19557,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19506
19557
|
path: _path + ".colors",
|
|
19507
19558
|
expected: "(Array<__type>.o2 | undefined)",
|
|
19508
19559
|
value: input.colors
|
|
19509
|
-
}, _errorFactory)) && input.colors.every((elem,
|
|
19560
|
+
}, _errorFactory)) && input.colors.every((elem, _index60) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19510
19561
|
method: "typia.assertGuard",
|
|
19511
|
-
path: _path + ".colors[" +
|
|
19562
|
+
path: _path + ".colors[" + _index60 + "]",
|
|
19512
19563
|
expected: "__type.o42",
|
|
19513
19564
|
value: elem
|
|
19514
|
-
}, _errorFactory)) && _ao49(elem, _path + ".colors[" +
|
|
19565
|
+
}, _errorFactory)) && _ao49(elem, _path + ".colors[" + _index60 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19515
19566
|
method: "typia.assertGuard",
|
|
19516
|
-
path: _path + ".colors[" +
|
|
19567
|
+
path: _path + ".colors[" + _index60 + "]",
|
|
19517
19568
|
expected: "__type.o42",
|
|
19518
19569
|
value: elem
|
|
19519
19570
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19526,9 +19577,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19526
19577
|
path: _path + ".overridableProperties",
|
|
19527
19578
|
expected: "(Array<keyof SubtitleStyle | null> | undefined)",
|
|
19528
19579
|
value: input.overridableProperties
|
|
19529
|
-
}, _errorFactory)) && input.overridableProperties.every((elem,
|
|
19580
|
+
}, _errorFactory)) && input.overridableProperties.every((elem, _index61) => null === elem || true === _av62.has(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19530
19581
|
method: "typia.assertGuard",
|
|
19531
|
-
path: _path + ".overridableProperties[" +
|
|
19582
|
+
path: _path + ".overridableProperties[" + _index61 + "]",
|
|
19532
19583
|
expected: "(\"alignment\" | \"angle\" | \"backColour\" | \"bold\" | \"borderStyle\" | \"encoding\" | \"fontname\" | \"fontsize\" | \"italic\" | \"lineSpacing\" | \"marginL\" | \"marginR\" | \"marginV\" | \"name\" | \"outline\" | \"outlineColour\" | \"primaryColour\" | \"scaleX\" | \"scaleY\" | \"secondaryColour\" | \"shadow\" | \"spacing\" | \"strikeOut\" | \"underline\" | null)",
|
|
19533
19584
|
value: elem
|
|
19534
19585
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19631,14 +19682,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19631
19682
|
path: _path + ".text",
|
|
19632
19683
|
expected: "(Array<__type>.o4 | undefined)",
|
|
19633
19684
|
value: input.text
|
|
19634
|
-
}, _errorFactory)) && input.text.every((elem,
|
|
19685
|
+
}, _errorFactory)) && input.text.every((elem, _index63) => ("object" === typeof elem && null !== elem && false === Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19635
19686
|
method: "typia.assertGuard",
|
|
19636
|
-
path: _path + ".text[" +
|
|
19687
|
+
path: _path + ".text[" + _index63 + "]",
|
|
19637
19688
|
expected: "__type.o48",
|
|
19638
19689
|
value: elem
|
|
19639
|
-
}, _errorFactory)) && _ao55(elem, _path + ".text[" +
|
|
19690
|
+
}, _errorFactory)) && _ao55(elem, _path + ".text[" + _index63 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19640
19691
|
method: "typia.assertGuard",
|
|
19641
|
-
path: _path + ".text[" +
|
|
19692
|
+
path: _path + ".text[" + _index63 + "]",
|
|
19642
19693
|
expected: "__type.o48",
|
|
19643
19694
|
value: elem
|
|
19644
19695
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19686,9 +19737,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19686
19737
|
path: _path + ".args",
|
|
19687
19738
|
expected: "(Array<string> | undefined)",
|
|
19688
19739
|
value: input.args
|
|
19689
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
19740
|
+
}, _errorFactory)) && input.args.every((elem, _index64) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19690
19741
|
method: "typia.assertGuard",
|
|
19691
|
-
path: _path + ".args[" +
|
|
19742
|
+
path: _path + ".args[" + _index64 + "]",
|
|
19692
19743
|
expected: "string",
|
|
19693
19744
|
value: elem
|
|
19694
19745
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19756,40 +19807,140 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19756
19807
|
path: _path + ".thumbnailView",
|
|
19757
19808
|
expected: "(\"filmStrip\" | \"none\" | \"thumbnail\" | undefined)",
|
|
19758
19809
|
value: input.thumbnailView
|
|
19810
|
+
}, _errorFactory)) && (undefined === input.audioMapping || ("object" === typeof input.audioMapping && null !== input.audioMapping && false === Array.isArray(input.audioMapping) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19811
|
+
method: "typia.assertGuard",
|
|
19812
|
+
path: _path + ".audioMapping",
|
|
19813
|
+
expected: "(__type.o54 | undefined)",
|
|
19814
|
+
value: input.audioMapping
|
|
19815
|
+
}, _errorFactory)) && _ao61(input.audioMapping, _path + ".audioMapping", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19816
|
+
method: "typia.assertGuard",
|
|
19817
|
+
path: _path + ".audioMapping",
|
|
19818
|
+
expected: "(__type.o54 | undefined)",
|
|
19819
|
+
value: input.audioMapping
|
|
19759
19820
|
}, _errorFactory)) && (undefined === input.normalize || ("object" === typeof input.normalize && null !== input.normalize && false === Array.isArray(input.normalize) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19760
19821
|
method: "typia.assertGuard",
|
|
19761
19822
|
path: _path + ".normalize",
|
|
19762
|
-
expected: "(__type.
|
|
19823
|
+
expected: "(__type.o55 | undefined)",
|
|
19763
19824
|
value: input.normalize
|
|
19764
|
-
}, _errorFactory)) &&
|
|
19825
|
+
}, _errorFactory)) && _ao63(input.normalize, _path + ".normalize", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19765
19826
|
method: "typia.assertGuard",
|
|
19766
19827
|
path: _path + ".normalize",
|
|
19767
|
-
expected: "(__type.
|
|
19828
|
+
expected: "(__type.o55 | undefined)",
|
|
19768
19829
|
value: input.normalize
|
|
19769
19830
|
}, _errorFactory)) && (undefined === input.voiceOver || ("object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19770
19831
|
method: "typia.assertGuard",
|
|
19771
19832
|
path: _path + ".voiceOver",
|
|
19772
|
-
expected: "(__type.
|
|
19833
|
+
expected: "(__type.o57 | undefined)",
|
|
19773
19834
|
value: input.voiceOver
|
|
19774
|
-
}, _errorFactory)) &&
|
|
19835
|
+
}, _errorFactory)) && _ao65(input.voiceOver, _path + ".voiceOver", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19775
19836
|
method: "typia.assertGuard",
|
|
19776
19837
|
path: _path + ".voiceOver",
|
|
19777
|
-
expected: "(__type.
|
|
19838
|
+
expected: "(__type.o57 | undefined)",
|
|
19778
19839
|
value: input.voiceOver
|
|
19779
|
-
}, _errorFactory)); const _ao61 = (input, _path, _exceptionable = true) =>
|
|
19840
|
+
}, _errorFactory)); const _ao61 = (input, _path, _exceptionable = true) => undefined === input.presets || (Array.isArray(input.presets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19841
|
+
method: "typia.assertGuard",
|
|
19842
|
+
path: _path + ".presets",
|
|
19843
|
+
expected: "(Array<AudioMappingPreset> | undefined)",
|
|
19844
|
+
value: input.presets
|
|
19845
|
+
}, _errorFactory)) && input.presets.every((elem, _index65) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19846
|
+
method: "typia.assertGuard",
|
|
19847
|
+
path: _path + ".presets[" + _index65 + "]",
|
|
19848
|
+
expected: "AudioMappingPreset",
|
|
19849
|
+
value: elem
|
|
19850
|
+
}, _errorFactory)) && _ao62(elem, _path + ".presets[" + _index65 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19851
|
+
method: "typia.assertGuard",
|
|
19852
|
+
path: _path + ".presets[" + _index65 + "]",
|
|
19853
|
+
expected: "AudioMappingPreset",
|
|
19854
|
+
value: elem
|
|
19855
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19856
|
+
method: "typia.assertGuard",
|
|
19857
|
+
path: _path + ".presets",
|
|
19858
|
+
expected: "(Array<AudioMappingPreset> | undefined)",
|
|
19859
|
+
value: input.presets
|
|
19860
|
+
}, _errorFactory); const _ao62 = (input, _path, _exceptionable = true) => ("string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19861
|
+
method: "typia.assertGuard",
|
|
19862
|
+
path: _path + ".id",
|
|
19863
|
+
expected: "string",
|
|
19864
|
+
value: input.id
|
|
19865
|
+
}, _errorFactory)) && ("string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19866
|
+
method: "typia.assertGuard",
|
|
19867
|
+
path: _path + ".title",
|
|
19868
|
+
expected: "string",
|
|
19869
|
+
value: input.title
|
|
19870
|
+
}, _errorFactory)) && (undefined === input.mapping || (Array.isArray(input.mapping) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19871
|
+
method: "typia.assertGuard",
|
|
19872
|
+
path: _path + ".mapping",
|
|
19873
|
+
expected: "(Array<Array<number>> | undefined)",
|
|
19874
|
+
value: input.mapping
|
|
19875
|
+
}, _errorFactory)) && input.mapping.every((elem, _index66) => (Array.isArray(elem) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19876
|
+
method: "typia.assertGuard",
|
|
19877
|
+
path: _path + ".mapping[" + _index66 + "]",
|
|
19878
|
+
expected: "Array<number>",
|
|
19879
|
+
value: elem
|
|
19880
|
+
}, _errorFactory)) && elem.every((elem, _index67) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19881
|
+
method: "typia.assertGuard",
|
|
19882
|
+
path: _path + ".mapping[" + _index66 + "][" + _index67 + "]",
|
|
19883
|
+
expected: "number",
|
|
19884
|
+
value: elem
|
|
19885
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19886
|
+
method: "typia.assertGuard",
|
|
19887
|
+
path: _path + ".mapping[" + _index66 + "]",
|
|
19888
|
+
expected: "Array<number>",
|
|
19889
|
+
value: elem
|
|
19890
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19891
|
+
method: "typia.assertGuard",
|
|
19892
|
+
path: _path + ".mapping",
|
|
19893
|
+
expected: "(Array<Array<number>> | undefined)",
|
|
19894
|
+
value: input.mapping
|
|
19895
|
+
}, _errorFactory)) && (undefined === input.mute || (Array.isArray(input.mute) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19896
|
+
method: "typia.assertGuard",
|
|
19897
|
+
path: _path + ".mute",
|
|
19898
|
+
expected: "(Array<boolean> | undefined)",
|
|
19899
|
+
value: input.mute
|
|
19900
|
+
}, _errorFactory)) && input.mute.every((elem, _index68) => "boolean" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19901
|
+
method: "typia.assertGuard",
|
|
19902
|
+
path: _path + ".mute[" + _index68 + "]",
|
|
19903
|
+
expected: "boolean",
|
|
19904
|
+
value: elem
|
|
19905
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19906
|
+
method: "typia.assertGuard",
|
|
19907
|
+
path: _path + ".mute",
|
|
19908
|
+
expected: "(Array<boolean> | undefined)",
|
|
19909
|
+
value: input.mute
|
|
19910
|
+
}, _errorFactory)) && (undefined === input.minInChannels || "number" === typeof input.minInChannels || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19911
|
+
method: "typia.assertGuard",
|
|
19912
|
+
path: _path + ".minInChannels",
|
|
19913
|
+
expected: "(number | undefined)",
|
|
19914
|
+
value: input.minInChannels
|
|
19915
|
+
}, _errorFactory)) && (undefined === input.maxInChannels || "number" === typeof input.maxInChannels || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19916
|
+
method: "typia.assertGuard",
|
|
19917
|
+
path: _path + ".maxInChannels",
|
|
19918
|
+
expected: "(number | undefined)",
|
|
19919
|
+
value: input.maxInChannels
|
|
19920
|
+
}, _errorFactory)) && (undefined === input.minOutChannels || "number" === typeof input.minOutChannels || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19921
|
+
method: "typia.assertGuard",
|
|
19922
|
+
path: _path + ".minOutChannels",
|
|
19923
|
+
expected: "(number | undefined)",
|
|
19924
|
+
value: input.minOutChannels
|
|
19925
|
+
}, _errorFactory)) && (undefined === input.maxOutChannels || "number" === typeof input.maxOutChannels || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19926
|
+
method: "typia.assertGuard",
|
|
19927
|
+
path: _path + ".maxOutChannels",
|
|
19928
|
+
expected: "(number | undefined)",
|
|
19929
|
+
value: input.maxOutChannels
|
|
19930
|
+
}, _errorFactory)); const _ao63 = (input, _path, _exceptionable = true) => (undefined === input.presets || (Array.isArray(input.presets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19780
19931
|
method: "typia.assertGuard",
|
|
19781
19932
|
path: _path + ".presets",
|
|
19782
19933
|
expected: "(Array<__type>.o5 | undefined)",
|
|
19783
19934
|
value: input.presets
|
|
19784
|
-
}, _errorFactory)) && input.presets.every((elem,
|
|
19935
|
+
}, _errorFactory)) && input.presets.every((elem, _index69) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19785
19936
|
method: "typia.assertGuard",
|
|
19786
|
-
path: _path + ".presets[" +
|
|
19787
|
-
expected: "__type.
|
|
19937
|
+
path: _path + ".presets[" + _index69 + "]",
|
|
19938
|
+
expected: "__type.o56",
|
|
19788
19939
|
value: elem
|
|
19789
|
-
}, _errorFactory)) &&
|
|
19940
|
+
}, _errorFactory)) && _ao64(elem, _path + ".presets[" + _index69 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19790
19941
|
method: "typia.assertGuard",
|
|
19791
|
-
path: _path + ".presets[" +
|
|
19792
|
-
expected: "__type.
|
|
19942
|
+
path: _path + ".presets[" + _index69 + "]",
|
|
19943
|
+
expected: "__type.o56",
|
|
19793
19944
|
value: elem
|
|
19794
19945
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19795
19946
|
method: "typia.assertGuard",
|
|
@@ -19801,7 +19952,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19801
19952
|
path: _path + ".defaultPresetId",
|
|
19802
19953
|
expected: "(string | undefined)",
|
|
19803
19954
|
value: input.defaultPresetId
|
|
19804
|
-
}, _errorFactory)); const
|
|
19955
|
+
}, _errorFactory)); const _ao64 = (input, _path, _exceptionable = true) => ("string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19805
19956
|
method: "typia.assertGuard",
|
|
19806
19957
|
path: _path + ".id",
|
|
19807
19958
|
expected: "string",
|
|
@@ -19821,7 +19972,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19821
19972
|
path: _path + ".tp",
|
|
19822
19973
|
expected: "number",
|
|
19823
19974
|
value: input.tp
|
|
19824
|
-
}, _errorFactory)); const
|
|
19975
|
+
}, _errorFactory)); const _ao65 = (input, _path, _exceptionable = true) => (undefined === input.inputDevice || "string" === typeof input.inputDevice || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19825
19976
|
method: "typia.assertGuard",
|
|
19826
19977
|
path: _path + ".inputDevice",
|
|
19827
19978
|
expected: "(string | undefined)",
|
|
@@ -19851,7 +20002,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19851
20002
|
path: _path + ".preRollDuration",
|
|
19852
20003
|
expected: "(number | undefined)",
|
|
19853
20004
|
value: input.preRollDuration
|
|
19854
|
-
}, _errorFactory)); const
|
|
20005
|
+
}, _errorFactory)); const _ao66 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19855
20006
|
method: "typia.assertGuard",
|
|
19856
20007
|
path: _path + ".title",
|
|
19857
20008
|
expected: "(string | undefined)",
|
|
@@ -19866,9 +20017,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19866
20017
|
path: _path + ".args",
|
|
19867
20018
|
expected: "(Array<string> | undefined)",
|
|
19868
20019
|
value: input.args
|
|
19869
|
-
}, _errorFactory)) && input.args.every((elem,
|
|
20020
|
+
}, _errorFactory)) && input.args.every((elem, _index70) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19870
20021
|
method: "typia.assertGuard",
|
|
19871
|
-
path: _path + ".args[" +
|
|
20022
|
+
path: _path + ".args[" + _index70 + "]",
|
|
19872
20023
|
expected: "string",
|
|
19873
20024
|
value: elem
|
|
19874
20025
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -19876,82 +20027,82 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19876
20027
|
path: _path + ".args",
|
|
19877
20028
|
expected: "(Array<string> | undefined)",
|
|
19878
20029
|
value: input.args
|
|
19879
|
-
}, _errorFactory)); const
|
|
20030
|
+
}, _errorFactory)); const _ao67 = (input, _path, _exceptionable = true) => (undefined === input.folded || ("object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19880
20031
|
method: "typia.assertGuard",
|
|
19881
20032
|
path: _path + ".folded",
|
|
19882
|
-
expected: "(__type.
|
|
20033
|
+
expected: "(__type.o60 | undefined)",
|
|
19883
20034
|
value: input.folded
|
|
19884
|
-
}, _errorFactory)) &&
|
|
20035
|
+
}, _errorFactory)) && _ao68(input.folded, _path + ".folded", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19885
20036
|
method: "typia.assertGuard",
|
|
19886
20037
|
path: _path + ".folded",
|
|
19887
|
-
expected: "(__type.
|
|
20038
|
+
expected: "(__type.o60 | undefined)",
|
|
19888
20039
|
value: input.folded
|
|
19889
20040
|
}, _errorFactory)) && (undefined === input.assets || ("object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19890
20041
|
method: "typia.assertGuard",
|
|
19891
20042
|
path: _path + ".assets",
|
|
19892
|
-
expected: "(__type.
|
|
20043
|
+
expected: "(__type.o61 | undefined)",
|
|
19893
20044
|
value: input.assets
|
|
19894
|
-
}, _errorFactory)) &&
|
|
20045
|
+
}, _errorFactory)) && _ao69(input.assets, _path + ".assets", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19895
20046
|
method: "typia.assertGuard",
|
|
19896
20047
|
path: _path + ".assets",
|
|
19897
|
-
expected: "(__type.
|
|
20048
|
+
expected: "(__type.o61 | undefined)",
|
|
19898
20049
|
value: input.assets
|
|
19899
20050
|
}, _errorFactory)) && (undefined === input.pipeline || ("object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19900
20051
|
method: "typia.assertGuard",
|
|
19901
20052
|
path: _path + ".pipeline",
|
|
19902
|
-
expected: "(__type.
|
|
20053
|
+
expected: "(__type.o65 | undefined)",
|
|
19903
20054
|
value: input.pipeline
|
|
19904
|
-
}, _errorFactory)) &&
|
|
20055
|
+
}, _errorFactory)) && _ao73(input.pipeline, _path + ".pipeline", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19905
20056
|
method: "typia.assertGuard",
|
|
19906
20057
|
path: _path + ".pipeline",
|
|
19907
|
-
expected: "(__type.
|
|
20058
|
+
expected: "(__type.o65 | undefined)",
|
|
19908
20059
|
value: input.pipeline
|
|
19909
20060
|
}, _errorFactory)) && (undefined === input.item || ("object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19910
20061
|
method: "typia.assertGuard",
|
|
19911
20062
|
path: _path + ".item",
|
|
19912
|
-
expected: "(__type.
|
|
20063
|
+
expected: "(__type.o67 | undefined)",
|
|
19913
20064
|
value: input.item
|
|
19914
|
-
}, _errorFactory)) &&
|
|
20065
|
+
}, _errorFactory)) && _ao75(input.item, _path + ".item", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19915
20066
|
method: "typia.assertGuard",
|
|
19916
20067
|
path: _path + ".item",
|
|
19917
|
-
expected: "(__type.
|
|
20068
|
+
expected: "(__type.o67 | undefined)",
|
|
19918
20069
|
value: input.item
|
|
19919
|
-
}, _errorFactory)); const
|
|
20070
|
+
}, _errorFactory)); const _ao68 = (input, _path, _exceptionable = true) => undefined === input.auto || "boolean" === typeof input.auto || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19920
20071
|
method: "typia.assertGuard",
|
|
19921
20072
|
path: _path + ".auto",
|
|
19922
20073
|
expected: "(boolean | undefined)",
|
|
19923
20074
|
value: input.auto
|
|
19924
|
-
}, _errorFactory); const
|
|
20075
|
+
}, _errorFactory); const _ao69 = (input, _path, _exceptionable = true) => (undefined === input.story || ("object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19925
20076
|
method: "typia.assertGuard",
|
|
19926
20077
|
path: _path + ".story",
|
|
19927
|
-
expected: "(__type.
|
|
20078
|
+
expected: "(__type.o62 | undefined)",
|
|
19928
20079
|
value: input.story
|
|
19929
|
-
}, _errorFactory)) &&
|
|
20080
|
+
}, _errorFactory)) && _ao70(input.story, _path + ".story", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19930
20081
|
method: "typia.assertGuard",
|
|
19931
20082
|
path: _path + ".story",
|
|
19932
|
-
expected: "(__type.
|
|
20083
|
+
expected: "(__type.o62 | undefined)",
|
|
19933
20084
|
value: input.story
|
|
19934
20085
|
}, _errorFactory)) && (undefined === input.note || ("object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19935
20086
|
method: "typia.assertGuard",
|
|
19936
20087
|
path: _path + ".note",
|
|
19937
|
-
expected: "(__type.
|
|
20088
|
+
expected: "(__type.o64 | undefined)",
|
|
19938
20089
|
value: input.note
|
|
19939
|
-
}, _errorFactory)) &&
|
|
20090
|
+
}, _errorFactory)) && _ao72(input.note, _path + ".note", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19940
20091
|
method: "typia.assertGuard",
|
|
19941
20092
|
path: _path + ".note",
|
|
19942
|
-
expected: "(__type.
|
|
20093
|
+
expected: "(__type.o64 | undefined)",
|
|
19943
20094
|
value: input.note
|
|
19944
|
-
}, _errorFactory)); const
|
|
20095
|
+
}, _errorFactory)); const _ao70 = (input, _path, _exceptionable = true) => undefined === input.excerpt || ("object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19945
20096
|
method: "typia.assertGuard",
|
|
19946
20097
|
path: _path + ".excerpt",
|
|
19947
|
-
expected: "(__type.
|
|
20098
|
+
expected: "(__type.o63 | undefined)",
|
|
19948
20099
|
value: input.excerpt
|
|
19949
|
-
}, _errorFactory)) &&
|
|
20100
|
+
}, _errorFactory)) && _ao71(input.excerpt, _path + ".excerpt", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19950
20101
|
method: "typia.assertGuard",
|
|
19951
20102
|
path: _path + ".excerpt",
|
|
19952
|
-
expected: "(__type.
|
|
20103
|
+
expected: "(__type.o63 | undefined)",
|
|
19953
20104
|
value: input.excerpt
|
|
19954
|
-
}, _errorFactory); const
|
|
20105
|
+
}, _errorFactory); const _ao71 = (input, _path, _exceptionable = true) => (undefined === input.maxLines || "number" === typeof input.maxLines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19955
20106
|
method: "typia.assertGuard",
|
|
19956
20107
|
path: _path + ".maxLines",
|
|
19957
20108
|
expected: "(number | undefined)",
|
|
@@ -19966,32 +20117,32 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
19966
20117
|
path: _path + ".comments",
|
|
19967
20118
|
expected: "(boolean | undefined)",
|
|
19968
20119
|
value: input.comments
|
|
19969
|
-
}, _errorFactory)); const
|
|
20120
|
+
}, _errorFactory)); const _ao72 = (input, _path, _exceptionable = true) => undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19970
20121
|
method: "typia.assertGuard",
|
|
19971
20122
|
path: _path + ".maxHeight",
|
|
19972
20123
|
expected: "(number | undefined)",
|
|
19973
20124
|
value: input.maxHeight
|
|
19974
|
-
}, _errorFactory); const
|
|
20125
|
+
}, _errorFactory); const _ao73 = (input, _path, _exceptionable = true) => (undefined === input.search || ("object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19975
20126
|
method: "typia.assertGuard",
|
|
19976
20127
|
path: _path + ".search",
|
|
19977
|
-
expected: "(__type.
|
|
20128
|
+
expected: "(__type.o66 | undefined)",
|
|
19978
20129
|
value: input.search
|
|
19979
|
-
}, _errorFactory)) &&
|
|
20130
|
+
}, _errorFactory)) && _ao74(input.search, _path + ".search", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19980
20131
|
method: "typia.assertGuard",
|
|
19981
20132
|
path: _path + ".search",
|
|
19982
|
-
expected: "(__type.
|
|
20133
|
+
expected: "(__type.o66 | undefined)",
|
|
19983
20134
|
value: input.search
|
|
19984
|
-
}, _errorFactory)) && (undefined === input.sortMode || true ===
|
|
20135
|
+
}, _errorFactory)) && (undefined === input.sortMode || true === _av71.has(input.sortMode) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19985
20136
|
method: "typia.assertGuard",
|
|
19986
20137
|
path: _path + ".sortMode",
|
|
19987
20138
|
expected: "(\"az\" | \"default\" | \"earliestdeadline\" | \"latestdeadline\" | \"leastrecent\" | \"manual\" | \"mostrecent\" | \"newest\" | \"oldest\" | \"za\" | undefined)",
|
|
19988
20139
|
value: input.sortMode
|
|
19989
|
-
}, _errorFactory)); const
|
|
20140
|
+
}, _errorFactory)); const _ao74 = (input, _path, _exceptionable = true) => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19990
20141
|
method: "typia.assertGuard",
|
|
19991
20142
|
path: _path + ".maxItemsDisplayed",
|
|
19992
20143
|
expected: "(number | undefined)",
|
|
19993
20144
|
value: input.maxItemsDisplayed
|
|
19994
|
-
}, _errorFactory); const
|
|
20145
|
+
}, _errorFactory); const _ao75 = (input, _path, _exceptionable = true) => (undefined === input.maxHeight || "number" === typeof input.maxHeight || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
19995
20146
|
method: "typia.assertGuard",
|
|
19996
20147
|
path: _path + ".maxHeight",
|
|
19997
20148
|
expected: "(number | undefined)",
|
|
@@ -20001,14 +20152,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20001
20152
|
path: _path + ".titleLines",
|
|
20002
20153
|
expected: "(number | undefined)",
|
|
20003
20154
|
value: input.titleLines
|
|
20004
|
-
}, _errorFactory)); const
|
|
20155
|
+
}, _errorFactory)); const _ao76 = (input, _path, _exceptionable = true) => undefined === input.fontFamilies || (Array.isArray(input.fontFamilies) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20005
20156
|
method: "typia.assertGuard",
|
|
20006
20157
|
path: _path + ".fontFamilies",
|
|
20007
20158
|
expected: "(Array<string> | undefined)",
|
|
20008
20159
|
value: input.fontFamilies
|
|
20009
|
-
}, _errorFactory)) && input.fontFamilies.every((elem,
|
|
20160
|
+
}, _errorFactory)) && input.fontFamilies.every((elem, _index72) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20010
20161
|
method: "typia.assertGuard",
|
|
20011
|
-
path: _path + ".fontFamilies[" +
|
|
20162
|
+
path: _path + ".fontFamilies[" + _index72 + "]",
|
|
20012
20163
|
expected: "string",
|
|
20013
20164
|
value: elem
|
|
20014
20165
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -20016,7 +20167,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20016
20167
|
path: _path + ".fontFamilies",
|
|
20017
20168
|
expected: "(Array<string> | undefined)",
|
|
20018
20169
|
value: input.fontFamilies
|
|
20019
|
-
}, _errorFactory); const
|
|
20170
|
+
}, _errorFactory); const _ao77 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20020
20171
|
method: "typia.assertGuard",
|
|
20021
20172
|
path: _path + ".id",
|
|
20022
20173
|
expected: "(string | undefined)",
|
|
@@ -20026,37 +20177,37 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20026
20177
|
path: _path + ".folded",
|
|
20027
20178
|
expected: "(boolean | undefined)",
|
|
20028
20179
|
value: input.folded
|
|
20029
|
-
}, _errorFactory)); const
|
|
20180
|
+
}, _errorFactory)); const _ao78 = (input, _path, _exceptionable = true) => (undefined === input.adobe || ("object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20030
20181
|
method: "typia.assertGuard",
|
|
20031
20182
|
path: _path + ".adobe",
|
|
20032
|
-
expected: "(__type.
|
|
20183
|
+
expected: "(__type.o71 | undefined)",
|
|
20033
20184
|
value: input.adobe
|
|
20034
|
-
}, _errorFactory)) &&
|
|
20185
|
+
}, _errorFactory)) && _ao79(input.adobe, _path + ".adobe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20035
20186
|
method: "typia.assertGuard",
|
|
20036
20187
|
path: _path + ".adobe",
|
|
20037
|
-
expected: "(__type.
|
|
20188
|
+
expected: "(__type.o71 | undefined)",
|
|
20038
20189
|
value: input.adobe
|
|
20039
20190
|
}, _errorFactory)) && (undefined === input.rive || ("object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20040
20191
|
method: "typia.assertGuard",
|
|
20041
20192
|
path: _path + ".rive",
|
|
20042
|
-
expected: "(__type.
|
|
20193
|
+
expected: "(__type.o72 | undefined)",
|
|
20043
20194
|
value: input.rive
|
|
20044
|
-
}, _errorFactory)) &&
|
|
20195
|
+
}, _errorFactory)) && _ao80(input.rive, _path + ".rive", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20045
20196
|
method: "typia.assertGuard",
|
|
20046
20197
|
path: _path + ".rive",
|
|
20047
|
-
expected: "(__type.
|
|
20198
|
+
expected: "(__type.o72 | undefined)",
|
|
20048
20199
|
value: input.rive
|
|
20049
|
-
}, _errorFactory)); const
|
|
20200
|
+
}, _errorFactory)); const _ao79 = (input, _path, _exceptionable = true) => undefined === input.useProxies || "boolean" === typeof input.useProxies || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20050
20201
|
method: "typia.assertGuard",
|
|
20051
20202
|
path: _path + ".useProxies",
|
|
20052
20203
|
expected: "(boolean | undefined)",
|
|
20053
20204
|
value: input.useProxies
|
|
20054
|
-
}, _errorFactory); const
|
|
20205
|
+
}, _errorFactory); const _ao80 = (input, _path, _exceptionable = true) => undefined === input.template || "string" === typeof input.template || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20055
20206
|
method: "typia.assertGuard",
|
|
20056
20207
|
path: _path + ".template",
|
|
20057
20208
|
expected: "(string | undefined)",
|
|
20058
20209
|
value: input.template
|
|
20059
|
-
}, _errorFactory); const
|
|
20210
|
+
}, _errorFactory); const _ao81 = (input, _path, _exceptionable = true) => (undefined === input.collections || "boolean" === typeof input.collections || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20060
20211
|
method: "typia.assertGuard",
|
|
20061
20212
|
path: _path + ".collections",
|
|
20062
20213
|
expected: "(boolean | undefined)",
|
|
@@ -20071,7 +20222,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20071
20222
|
path: _path + ".ameRemoteRendering",
|
|
20072
20223
|
expected: "(boolean | undefined)",
|
|
20073
20224
|
value: input.ameRemoteRendering
|
|
20074
|
-
}, _errorFactory)); const
|
|
20225
|
+
}, _errorFactory)); const _ao82 = (input, _path, _exceptionable = true) => (undefined === input.utils || "boolean" === typeof input.utils || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20075
20226
|
method: "typia.assertGuard",
|
|
20076
20227
|
path: _path + ".utils",
|
|
20077
20228
|
expected: "(boolean | undefined)",
|
|
@@ -20166,24 +20317,29 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20166
20317
|
path: _path + ".systemHealth",
|
|
20167
20318
|
expected: "(boolean | undefined)",
|
|
20168
20319
|
value: input.systemHealth
|
|
20169
|
-
}, _errorFactory))
|
|
20320
|
+
}, _errorFactory)) && (undefined === input.systemHealthIgnore || "boolean" === typeof input.systemHealthIgnore || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20321
|
+
method: "typia.assertGuard",
|
|
20322
|
+
path: _path + ".systemHealthIgnore",
|
|
20323
|
+
expected: "(boolean | undefined)",
|
|
20324
|
+
value: input.systemHealthIgnore
|
|
20325
|
+
}, _errorFactory)); const _ao83 = (input, _path, _exceptionable = true) => undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20170
20326
|
method: "typia.assertGuard",
|
|
20171
20327
|
path: _path + ".events",
|
|
20172
|
-
expected: "(__type.
|
|
20328
|
+
expected: "(__type.o76 | undefined)",
|
|
20173
20329
|
value: input.events
|
|
20174
|
-
}, _errorFactory)) &&
|
|
20330
|
+
}, _errorFactory)) && _ao84(input.events, _path + ".events", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20175
20331
|
method: "typia.assertGuard",
|
|
20176
20332
|
path: _path + ".events",
|
|
20177
|
-
expected: "(__type.
|
|
20333
|
+
expected: "(__type.o76 | undefined)",
|
|
20178
20334
|
value: input.events
|
|
20179
|
-
}, _errorFactory); const
|
|
20335
|
+
}, _errorFactory); const _ao84 = (input, _path, _exceptionable = true) => (undefined === input.comment || (Array.isArray(input.comment) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20180
20336
|
method: "typia.assertGuard",
|
|
20181
20337
|
path: _path + ".comment",
|
|
20182
20338
|
expected: "(Array<NotificationReason> | undefined)",
|
|
20183
20339
|
value: input.comment
|
|
20184
|
-
}, _errorFactory)) && input.comment.every((elem,
|
|
20340
|
+
}, _errorFactory)) && input.comment.every((elem, _index73) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20185
20341
|
method: "typia.assertGuard",
|
|
20186
|
-
path: _path + ".comment[" +
|
|
20342
|
+
path: _path + ".comment[" + _index73 + "]",
|
|
20187
20343
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
20188
20344
|
value: elem
|
|
20189
20345
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -20196,9 +20352,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20196
20352
|
path: _path + ".assigned",
|
|
20197
20353
|
expected: "(Array<NotificationReason> | undefined)",
|
|
20198
20354
|
value: input.assigned
|
|
20199
|
-
}, _errorFactory)) && input.assigned.every((elem,
|
|
20355
|
+
}, _errorFactory)) && input.assigned.every((elem, _index74) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20200
20356
|
method: "typia.assertGuard",
|
|
20201
|
-
path: _path + ".assigned[" +
|
|
20357
|
+
path: _path + ".assigned[" + _index74 + "]",
|
|
20202
20358
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
20203
20359
|
value: elem
|
|
20204
20360
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -20211,9 +20367,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20211
20367
|
path: _path + ".unassigned",
|
|
20212
20368
|
expected: "(Array<NotificationReason> | undefined)",
|
|
20213
20369
|
value: input.unassigned
|
|
20214
|
-
}, _errorFactory)) && input.unassigned.every((elem,
|
|
20370
|
+
}, _errorFactory)) && input.unassigned.every((elem, _index75) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20215
20371
|
method: "typia.assertGuard",
|
|
20216
|
-
path: _path + ".unassigned[" +
|
|
20372
|
+
path: _path + ".unassigned[" + _index75 + "]",
|
|
20217
20373
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
20218
20374
|
value: elem
|
|
20219
20375
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -20224,14 +20380,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20224
20380
|
}, _errorFactory)) && (undefined === input.publishSucceeded || ("object" === typeof input.publishSucceeded && null !== input.publishSucceeded && false === Array.isArray(input.publishSucceeded) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20225
20381
|
method: "typia.assertGuard",
|
|
20226
20382
|
path: _path + ".publishSucceeded",
|
|
20227
|
-
expected: "(__type.
|
|
20383
|
+
expected: "(__type.o77 | undefined)",
|
|
20228
20384
|
value: input.publishSucceeded
|
|
20229
|
-
}, _errorFactory)) &&
|
|
20385
|
+
}, _errorFactory)) && _ao85(input.publishSucceeded, _path + ".publishSucceeded", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20230
20386
|
method: "typia.assertGuard",
|
|
20231
20387
|
path: _path + ".publishSucceeded",
|
|
20232
|
-
expected: "(__type.
|
|
20388
|
+
expected: "(__type.o77 | undefined)",
|
|
20233
20389
|
value: input.publishSucceeded
|
|
20234
|
-
}, _errorFactory)); const
|
|
20390
|
+
}, _errorFactory)); const _ao85 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
|
|
20235
20391
|
const value = input[key];
|
|
20236
20392
|
if (undefined === value)
|
|
20237
20393
|
return true;
|
|
@@ -20240,9 +20396,9 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20240
20396
|
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
|
|
20241
20397
|
expected: "Array<NotificationReason>",
|
|
20242
20398
|
value: value
|
|
20243
|
-
}, _errorFactory)) && value.every((elem,
|
|
20399
|
+
}, _errorFactory)) && value.every((elem, _index76) => "mentioned" === elem || "assigned" === elem || "author" === elem || "participated" === elem || "always" === elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20244
20400
|
method: "typia.assertGuard",
|
|
20245
|
-
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" +
|
|
20401
|
+
path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key) + "[" + _index76 + "]",
|
|
20246
20402
|
expected: "(\"always\" | \"assigned\" | \"author\" | \"mentioned\" | \"participated\")",
|
|
20247
20403
|
value: elem
|
|
20248
20404
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -20251,27 +20407,27 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20251
20407
|
expected: "Array<NotificationReason>",
|
|
20252
20408
|
value: value
|
|
20253
20409
|
}, _errorFactory);
|
|
20254
|
-
}); const
|
|
20410
|
+
}); const _ao86 = (input, _path, _exceptionable = true) => (undefined === input.create || ("object" === typeof input.create && null !== input.create && false === Array.isArray(input.create) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20255
20411
|
method: "typia.assertGuard",
|
|
20256
20412
|
path: _path + ".create",
|
|
20257
|
-
expected: "(__type.
|
|
20413
|
+
expected: "(__type.o79 | undefined)",
|
|
20258
20414
|
value: input.create
|
|
20259
|
-
}, _errorFactory)) &&
|
|
20415
|
+
}, _errorFactory)) && _ao87(input.create, _path + ".create", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20260
20416
|
method: "typia.assertGuard",
|
|
20261
20417
|
path: _path + ".create",
|
|
20262
|
-
expected: "(__type.
|
|
20418
|
+
expected: "(__type.o79 | undefined)",
|
|
20263
20419
|
value: input.create
|
|
20264
20420
|
}, _errorFactory)) && (undefined === input.duplicate || ("object" === typeof input.duplicate && null !== input.duplicate && false === Array.isArray(input.duplicate) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20265
20421
|
method: "typia.assertGuard",
|
|
20266
20422
|
path: _path + ".duplicate",
|
|
20267
|
-
expected: "(__type.
|
|
20423
|
+
expected: "(__type.o80 | undefined)",
|
|
20268
20424
|
value: input.duplicate
|
|
20269
|
-
}, _errorFactory)) &&
|
|
20425
|
+
}, _errorFactory)) && _ao88(input.duplicate, _path + ".duplicate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20270
20426
|
method: "typia.assertGuard",
|
|
20271
20427
|
path: _path + ".duplicate",
|
|
20272
|
-
expected: "(__type.
|
|
20428
|
+
expected: "(__type.o80 | undefined)",
|
|
20273
20429
|
value: input.duplicate
|
|
20274
|
-
}, _errorFactory)); const
|
|
20430
|
+
}, _errorFactory)); const _ao87 = (input, _path, _exceptionable = true) => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20275
20431
|
method: "typia.assertGuard",
|
|
20276
20432
|
path: _path + ".titlePrefix",
|
|
20277
20433
|
expected: "(string | undefined)",
|
|
@@ -20281,7 +20437,7 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20281
20437
|
path: _path + ".titleSuffix",
|
|
20282
20438
|
expected: "(string | undefined)",
|
|
20283
20439
|
value: input.titleSuffix
|
|
20284
|
-
}, _errorFactory)); const
|
|
20440
|
+
}, _errorFactory)); const _ao88 = (input, _path, _exceptionable = true) => (undefined === input.titlePrefix || "string" === typeof input.titlePrefix || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20285
20441
|
method: "typia.assertGuard",
|
|
20286
20442
|
path: _path + ".titlePrefix",
|
|
20287
20443
|
expected: "(string | undefined)",
|
|
@@ -20291,14 +20447,14 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20291
20447
|
path: _path + ".titleSuffix",
|
|
20292
20448
|
expected: "(string | undefined)",
|
|
20293
20449
|
value: input.titleSuffix
|
|
20294
|
-
}, _errorFactory)); const
|
|
20450
|
+
}, _errorFactory)); const _ao89 = (input, _path, _exceptionable = true) => (undefined === input.stateFilter || (Array.isArray(input.stateFilter) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20295
20451
|
method: "typia.assertGuard",
|
|
20296
20452
|
path: _path + ".stateFilter",
|
|
20297
20453
|
expected: "(Array<number> | undefined)",
|
|
20298
20454
|
value: input.stateFilter
|
|
20299
|
-
}, _errorFactory)) && input.stateFilter.every((elem,
|
|
20455
|
+
}, _errorFactory)) && input.stateFilter.every((elem, _index77) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20300
20456
|
method: "typia.assertGuard",
|
|
20301
|
-
path: _path + ".stateFilter[" +
|
|
20457
|
+
path: _path + ".stateFilter[" + _index77 + "]",
|
|
20302
20458
|
expected: "number",
|
|
20303
20459
|
value: elem
|
|
20304
20460
|
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
@@ -20331,21 +20487,36 @@ function _assertGuardDomainRecord(domain, input) {
|
|
|
20331
20487
|
path: _path + ".parseRegex",
|
|
20332
20488
|
expected: "(boolean | undefined)",
|
|
20333
20489
|
value: input.parseRegex
|
|
20334
|
-
}, _errorFactory)); const
|
|
20490
|
+
}, _errorFactory)); const _ao90 = (input, _path, _exceptionable = true) => undefined === input.disableHotArea || "boolean" === typeof input.disableHotArea || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20335
20491
|
method: "typia.assertGuard",
|
|
20336
20492
|
path: _path + ".disableHotArea",
|
|
20337
20493
|
expected: "(boolean | undefined)",
|
|
20338
20494
|
value: input.disableHotArea
|
|
20339
|
-
}, _errorFactory); const
|
|
20495
|
+
}, _errorFactory); const _ao91 = (input, _path, _exceptionable = true) => undefined === input.refreshInterval || "number" === typeof input.refreshInterval || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20340
20496
|
method: "typia.assertGuard",
|
|
20341
20497
|
path: _path + ".refreshInterval",
|
|
20342
20498
|
expected: "(number | undefined)",
|
|
20343
20499
|
value: input.refreshInterval
|
|
20344
|
-
}, _errorFactory); const
|
|
20500
|
+
}, _errorFactory); const _ao92 = (input, _path, _exceptionable = true) => undefined === input.layout || "string" === typeof input.layout || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20345
20501
|
method: "typia.assertGuard",
|
|
20346
20502
|
path: _path + ".layout",
|
|
20347
20503
|
expected: "(string | undefined)",
|
|
20348
20504
|
value: input.layout
|
|
20505
|
+
}, _errorFactory); const _ao93 = (input, _path, _exceptionable = true) => undefined === input.ignoredMessages || (Array.isArray(input.ignoredMessages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20506
|
+
method: "typia.assertGuard",
|
|
20507
|
+
path: _path + ".ignoredMessages",
|
|
20508
|
+
expected: "(Array<string> | undefined)",
|
|
20509
|
+
value: input.ignoredMessages
|
|
20510
|
+
}, _errorFactory)) && input.ignoredMessages.every((elem, _index78) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20511
|
+
method: "typia.assertGuard",
|
|
20512
|
+
path: _path + ".ignoredMessages[" + _index78 + "]",
|
|
20513
|
+
expected: "string",
|
|
20514
|
+
value: elem
|
|
20515
|
+
}, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
|
|
20516
|
+
method: "typia.assertGuard",
|
|
20517
|
+
path: _path + ".ignoredMessages",
|
|
20518
|
+
expected: "(Array<string> | undefined)",
|
|
20519
|
+
value: input.ignoredMessages
|
|
20349
20520
|
}, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
|
|
20350
20521
|
if (false === __is(input)) {
|
|
20351
20522
|
_errorFactory = errorFactory;
|