@nxtedition/types 23.0.50 → 23.0.52

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.
Files changed (50) hide show
  1. package/dist/common/file.d.ts +1 -0
  2. package/dist/common/file.js +7 -2
  3. package/dist/common/settings.d.ts +1 -0
  4. package/dist/nxtpression.d.ts +157 -63
  5. package/dist/records/domains/connection/empty.d.ts +7 -0
  6. package/dist/records/domains/connection/facebook.d.ts +8 -0
  7. package/dist/records/domains/connection/file/ftp.d.ts +9 -0
  8. package/dist/records/domains/connection/file/ftp.js +1 -0
  9. package/dist/records/domains/connection/file/index.d.ts +29 -0
  10. package/dist/records/domains/connection/file/index.js +4 -0
  11. package/dist/records/domains/connection/file/s3.d.ts +6 -0
  12. package/dist/records/domains/connection/file/s3.js +1 -0
  13. package/dist/records/domains/connection/file/sftp.d.ts +12 -0
  14. package/dist/records/domains/connection/file/sftp.js +1 -0
  15. package/dist/records/domains/connection/file/smb.d.ts +9 -0
  16. package/dist/records/domains/connection/file/smb.js +1 -0
  17. package/dist/records/domains/connection/index.d.ts +38 -0
  18. package/dist/records/domains/connection/index.js +4 -0
  19. package/dist/records/domains/connection/reuters.d.ts +10 -0
  20. package/dist/records/domains/connection/reuters.js +1 -0
  21. package/dist/records/domains/general.d.ts +16 -0
  22. package/dist/records/domains/index.d.ts +4 -4
  23. package/dist/records/domains/index.js +2 -2
  24. package/dist/records/domains/publish/empty.d.ts +8 -0
  25. package/dist/records/domains/publish/empty.js +1 -0
  26. package/dist/records/domains/publish/facebook.d.ts +11 -0
  27. package/dist/records/domains/publish/facebook.js +1 -0
  28. package/dist/records/domains/publish/file-legacy.d.ts +26 -0
  29. package/dist/records/domains/publish/file-legacy.js +1 -0
  30. package/dist/records/domains/publish/file.d.ts +66 -0
  31. package/dist/records/domains/publish/file.js +1 -0
  32. package/dist/records/domains/publish/index.d.ts +66 -0
  33. package/dist/records/domains/publish/index.js +5 -0
  34. package/dist/records/domains/publish/youtube.d.ts +16 -0
  35. package/dist/records/domains/publish/youtube.js +1 -0
  36. package/dist/records/exact/storage.d.ts +1 -1
  37. package/dist/records/validate/assert-guard.js +570 -687
  38. package/dist/records/validate/assert.js +579 -694
  39. package/dist/records/validate/is.js +51 -109
  40. package/dist/records/validate/schemas.js +421 -380
  41. package/dist/records/validate/stringify.js +74 -155
  42. package/dist/records/validate/utils.d.ts +2 -0
  43. package/dist/records/validate/utils.js +3 -0
  44. package/dist/records/validate/validate-equals.js +961 -819
  45. package/dist/records/validate/validate.js +550 -638
  46. package/package.json +1 -1
  47. package/dist/records/domains/connection.d.ts +0 -77
  48. package/dist/records/domains/publish.d.ts +0 -149
  49. /package/dist/records/domains/{connection.js → connection/empty.js} +0 -0
  50. /package/dist/records/domains/{publish.js → connection/facebook.js} +0 -0
@@ -930,7 +930,7 @@ function _assertExactRecord(name, input) {
930
930
  if (undefined === value)
931
931
  return true;
932
932
  return "object" === typeof value && null !== value && _io1(value);
933
- }); const _io1 = input => "string" === typeof input.id && "string" === typeof input.location && "string" === typeof input.timestamp && "string" === typeof input.type && "string" === typeof input.zone && (null === input.free || "number" === typeof input.free) && (null === input.size || "number" === typeof input.size) && (null === input.available || "number" === typeof input.available) && (null === input.cache || "boolean" === typeof input.cache) && (null === input.capacity || "number" === typeof input.capacity) && "string" === typeof input.origin && (Array.isArray(input.allows) && input.allows.every(elem => "get" === elem || "put" === elem || "del" === elem)) && ("object" === typeof input.net && null !== input.net && _io2(input.net)) && "number" === typeof input.latency; const _io2 = input => "number" === typeof input.rx && "number" === typeof input.tx; const _ao0 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
933
+ }); const _io1 = input => "string" === typeof input.id && "string" === typeof input.location && "string" === typeof input.timestamp && "string" === typeof input.type && "string" === typeof input.zone && (null === input.free || "number" === typeof input.free) && (null === input.size || "number" === typeof input.size) && (null === input.available || "number" === typeof input.available) && (null === input.cache || "boolean" === typeof input.cache) && (null === input.capacity || "number" === typeof input.capacity) && "string" === typeof input.origin && (Array.isArray(input.allows) && input.allows.every(elem => "get" === elem || "put" === elem || "del" === elem)) && (undefined === input.net || "object" === typeof input.net && null !== input.net && _io2(input.net)) && "number" === typeof input.latency; const _io2 = input => "number" === typeof input.rx && "number" === typeof input.tx; const _ao0 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
934
934
  const value = input[key];
935
935
  if (undefined === value)
936
936
  return true;
@@ -1015,15 +1015,15 @@ function _assertExactRecord(name, input) {
1015
1015
  path: _path + ".allows",
1016
1016
  expected: "Array<\"get\" | \"put\" | \"del\">",
1017
1017
  value: input.allows
1018
- }, _errorFactory)) && (("object" === typeof input.net && null !== input.net || __typia_transform__assertGuard._assertGuard(_exceptionable, {
1018
+ }, _errorFactory)) && (undefined === input.net || ("object" === typeof input.net && null !== input.net || __typia_transform__assertGuard._assertGuard(_exceptionable, {
1019
1019
  method: "typia.assert",
1020
1020
  path: _path + ".net",
1021
- expected: "__type",
1021
+ expected: "(__type | undefined)",
1022
1022
  value: input.net
1023
1023
  }, _errorFactory)) && _ao2(input.net, _path + ".net", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
1024
1024
  method: "typia.assert",
1025
1025
  path: _path + ".net",
1026
- expected: "__type",
1026
+ expected: "(__type | undefined)",
1027
1027
  value: input.net
1028
1028
  }, _errorFactory)) && ("number" === typeof input.latency || __typia_transform__assertGuard._assertGuard(_exceptionable, {
1029
1029
  method: "typia.assert",
@@ -3576,41 +3576,58 @@ function _assertDomainRecord(domain, input) {
3576
3576
  }; })()(input);
3577
3577
  }
3578
3578
  case ":connection": {
3579
- return (() => { const _io0 = input => "s3" === input.protocol && true && (undefined === input.bucket || "string" === typeof input.bucket) && "file" === input.type && (undefined === input.host || "string" === typeof input.host) && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io1 = input => "string" === typeof input.content; const _io2 = input => "ftp" === input.protocol && "string" === typeof input.host && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && (undefined === input.utf8 || "boolean" === typeof input.utf8) && (undefined === input.timezone || "string" === typeof input.timezone) && "file" === input.type && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io3 = input => "smb" === input.protocol && "string" === typeof input.host && "string" === typeof input.share && (undefined === input.workgroup || "string" === typeof input.workgroup) && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && "file" === input.type && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io4 = input => "sftp" === input.protocol && "string" === typeof input.host && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && (undefined === input.privateKey || "string" === typeof input.privateKey) && (undefined === input.timezone || "string" === typeof input.timezone) && (undefined === input.debug || "boolean" === typeof input.debug) && (undefined === input.root || "string" === typeof input.root) && (undefined === input.mode || "libcurl" === input.mode || "lftp" === input.mode || "openssh" === input.mode || "ssh2" === input.mode) && "file" === input.type && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io5 = input => "reuters" === input.type && (undefined === input.clientId || "string" === typeof input.clientId) && (undefined === input.clientSecret || "string" === typeof input.clientSecret) && (undefined === input.audience || "string" === typeof input.audience) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io6 = input => "facebook" === input.type && (undefined === input.grantedScopes || Array.isArray(input.grantedScopes) && input.grantedScopes.every(elem => "string" === typeof elem)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _iu0 = input => (() => {
3580
- if ("s3" === input.protocol)
3579
+ return (() => { const _io0 = input => "ftp" === input.protocol && "string" === typeof input.host && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && (undefined === input.utf8 || "boolean" === typeof input.utf8) && (undefined === input.timezone || "string" === typeof input.timezone) && "file" === input.type && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io1 = input => "string" === typeof input.content; const _io2 = input => "s3" === input.protocol && true && (undefined === input.bucket || "string" === typeof input.bucket) && "file" === input.type && (undefined === input.host || "string" === typeof input.host) && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io3 = input => "smb" === input.protocol && "string" === typeof input.host && "string" === typeof input.share && (undefined === input.workgroup || "string" === typeof input.workgroup) && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && "file" === input.type && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io4 = input => "sftp" === input.protocol && "string" === typeof input.host && (undefined === input.username || "string" === typeof input.username) && (undefined === input.password || "string" === typeof input.password) && (undefined === input.privateKey || "string" === typeof input.privateKey) && (undefined === input.timezone || "string" === typeof input.timezone) && (undefined === input.debug || "boolean" === typeof input.debug) && (undefined === input.root || "string" === typeof input.root) && (undefined === input.mode || "libcurl" === input.mode || "lftp" === input.mode || "openssh" === input.mode || "ssh2" === input.mode) && "file" === input.type && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port) && (undefined === input.ignoreMissing || "boolean" === typeof input.ignoreMissing) && (undefined === input.concurrency || "number" === typeof input.concurrency) && (undefined === input.stabilityThreshold || "number" === typeof input.stabilityThreshold) && (undefined === input.pollInterval || "number" === typeof input.pollInterval) && (undefined === input.listConcurrency || "number" === typeof input.listConcurrency) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io1(input.metafile)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io5 = input => "facebook" === input.type && (undefined === input.grantedScopes || Array.isArray(input.grantedScopes) && input.grantedScopes.every(elem => "string" === typeof elem)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io6 = input => "reuters" === input.type && (undefined === input.clientId || "string" === typeof input.clientId) && (undefined === input.clientSecret || "string" === typeof input.clientSecret) && (undefined === input.audience || "string" === typeof input.audience) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _io7 = input => undefined !== input.type && null === input.type && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled); const _iu0 = input => (() => {
3580
+ if ("ftp" === input.protocol)
3581
3581
  return _io0(input);
3582
- else if ("ftp" === input.protocol)
3582
+ else if ("s3" === input.protocol)
3583
3583
  return _io2(input);
3584
3584
  else if ("smb" === input.protocol)
3585
3585
  return _io3(input);
3586
3586
  else if ("sftp" === input.protocol)
3587
3587
  return _io4(input);
3588
- else if ("reuters" === input.type)
3589
- return _io5(input);
3590
3588
  else if ("facebook" === input.type)
3589
+ return _io5(input);
3590
+ else if ("reuters" === input.type)
3591
3591
  return _io6(input);
3592
+ else if (undefined !== input.type && null === input.type)
3593
+ return _io7(input);
3592
3594
  else
3593
3595
  return false;
3594
- })(); const _ao0 = (input, _path, _exceptionable = true) => ("s3" === input.protocol || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3596
+ })(); const _ao0 = (input, _path, _exceptionable = true) => ("ftp" === input.protocol || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3595
3597
  method: "typia.assert",
3596
3598
  path: _path + ".protocol",
3597
- expected: "\"s3\"",
3599
+ expected: "\"ftp\"",
3598
3600
  value: input.protocol
3599
- }, _errorFactory)) && true && (undefined === input.bucket || "string" === typeof input.bucket || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3601
+ }, _errorFactory)) && ("string" === typeof input.host || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3600
3602
  method: "typia.assert",
3601
- path: _path + ".bucket",
3603
+ path: _path + ".host",
3604
+ expected: "string",
3605
+ value: input.host
3606
+ }, _errorFactory)) && (undefined === input.username || "string" === typeof input.username || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3607
+ method: "typia.assert",
3608
+ path: _path + ".username",
3602
3609
  expected: "(string | undefined)",
3603
- value: input.bucket
3610
+ value: input.username
3611
+ }, _errorFactory)) && (undefined === input.password || "string" === typeof input.password || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3612
+ method: "typia.assert",
3613
+ path: _path + ".password",
3614
+ expected: "(string | undefined)",
3615
+ value: input.password
3616
+ }, _errorFactory)) && (undefined === input.utf8 || "boolean" === typeof input.utf8 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3617
+ method: "typia.assert",
3618
+ path: _path + ".utf8",
3619
+ expected: "(boolean | undefined)",
3620
+ value: input.utf8
3621
+ }, _errorFactory)) && (undefined === input.timezone || "string" === typeof input.timezone || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3622
+ method: "typia.assert",
3623
+ path: _path + ".timezone",
3624
+ expected: "(string | undefined)",
3625
+ value: input.timezone
3604
3626
  }, _errorFactory)) && ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3605
3627
  method: "typia.assert",
3606
3628
  path: _path + ".type",
3607
3629
  expected: "\"file\"",
3608
3630
  value: input.type
3609
- }, _errorFactory)) && (undefined === input.host || "string" === typeof input.host || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3610
- method: "typia.assert",
3611
- path: _path + ".host",
3612
- expected: "(string | undefined)",
3613
- value: input.host
3614
3631
  }, _errorFactory)) && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3615
3632
  method: "typia.assert",
3616
3633
  path: _path + ".port",
@@ -3661,41 +3678,26 @@ function _assertDomainRecord(domain, input) {
3661
3678
  path: _path + ".content",
3662
3679
  expected: "string",
3663
3680
  value: input.content
3664
- }, _errorFactory); const _ao2 = (input, _path, _exceptionable = true) => ("ftp" === input.protocol || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3681
+ }, _errorFactory); const _ao2 = (input, _path, _exceptionable = true) => ("s3" === input.protocol || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3665
3682
  method: "typia.assert",
3666
3683
  path: _path + ".protocol",
3667
- expected: "\"ftp\"",
3684
+ expected: "\"s3\"",
3668
3685
  value: input.protocol
3669
- }, _errorFactory)) && ("string" === typeof input.host || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3670
- method: "typia.assert",
3671
- path: _path + ".host",
3672
- expected: "string",
3673
- value: input.host
3674
- }, _errorFactory)) && (undefined === input.username || "string" === typeof input.username || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3675
- method: "typia.assert",
3676
- path: _path + ".username",
3677
- expected: "(string | undefined)",
3678
- value: input.username
3679
- }, _errorFactory)) && (undefined === input.password || "string" === typeof input.password || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3680
- method: "typia.assert",
3681
- path: _path + ".password",
3682
- expected: "(string | undefined)",
3683
- value: input.password
3684
- }, _errorFactory)) && (undefined === input.utf8 || "boolean" === typeof input.utf8 || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3685
- method: "typia.assert",
3686
- path: _path + ".utf8",
3687
- expected: "(boolean | undefined)",
3688
- value: input.utf8
3689
- }, _errorFactory)) && (undefined === input.timezone || "string" === typeof input.timezone || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3686
+ }, _errorFactory)) && true && (undefined === input.bucket || "string" === typeof input.bucket || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3690
3687
  method: "typia.assert",
3691
- path: _path + ".timezone",
3688
+ path: _path + ".bucket",
3692
3689
  expected: "(string | undefined)",
3693
- value: input.timezone
3690
+ value: input.bucket
3694
3691
  }, _errorFactory)) && ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3695
3692
  method: "typia.assert",
3696
3693
  path: _path + ".type",
3697
3694
  expected: "\"file\"",
3698
3695
  value: input.type
3696
+ }, _errorFactory)) && (undefined === input.host || "string" === typeof input.host || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3697
+ method: "typia.assert",
3698
+ path: _path + ".host",
3699
+ expected: "(string | undefined)",
3700
+ value: input.host
3699
3701
  }, _errorFactory)) && (undefined === input.port || "string" === typeof input.port || "number" === typeof input.port || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3700
3702
  method: "typia.assert",
3701
3703
  path: _path + ".port",
@@ -3916,7 +3918,32 @@ function _assertDomainRecord(domain, input) {
3916
3918
  path: _path + ".userNotificationsEnabled",
3917
3919
  expected: "(boolean | undefined)",
3918
3920
  value: input.userNotificationsEnabled
3919
- }, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => ("reuters" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3921
+ }, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => ("facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3922
+ method: "typia.assert",
3923
+ path: _path + ".type",
3924
+ expected: "\"facebook\"",
3925
+ value: input.type
3926
+ }, _errorFactory)) && (undefined === input.grantedScopes || (Array.isArray(input.grantedScopes) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3927
+ method: "typia.assert",
3928
+ path: _path + ".grantedScopes",
3929
+ expected: "(Array<string> | undefined)",
3930
+ value: input.grantedScopes
3931
+ }, _errorFactory)) && input.grantedScopes.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3932
+ method: "typia.assert",
3933
+ path: _path + ".grantedScopes[" + _index2 + "]",
3934
+ expected: "string",
3935
+ value: elem
3936
+ }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3937
+ method: "typia.assert",
3938
+ path: _path + ".grantedScopes",
3939
+ expected: "(Array<string> | undefined)",
3940
+ value: input.grantedScopes
3941
+ }, _errorFactory)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3942
+ method: "typia.assert",
3943
+ path: _path + ".userNotificationsEnabled",
3944
+ expected: "(boolean | undefined)",
3945
+ value: input.userNotificationsEnabled
3946
+ }, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => ("reuters" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3920
3947
  method: "typia.assert",
3921
3948
  path: _path + ".type",
3922
3949
  expected: "\"reuters\"",
@@ -3941,49 +3968,41 @@ function _assertDomainRecord(domain, input) {
3941
3968
  path: _path + ".userNotificationsEnabled",
3942
3969
  expected: "(boolean | undefined)",
3943
3970
  value: input.userNotificationsEnabled
3944
- }, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => ("facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3971
+ }, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => (undefined !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3945
3972
  method: "typia.assert",
3946
3973
  path: _path + ".type",
3947
- expected: "\"facebook\"",
3974
+ expected: "null",
3948
3975
  value: input.type
3949
- }, _errorFactory)) && (undefined === input.grantedScopes || (Array.isArray(input.grantedScopes) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3950
- method: "typia.assert",
3951
- path: _path + ".grantedScopes",
3952
- expected: "(Array<string> | undefined)",
3953
- value: input.grantedScopes
3954
- }, _errorFactory)) && input.grantedScopes.every((elem, _index2) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3955
- method: "typia.assert",
3956
- path: _path + ".grantedScopes[" + _index2 + "]",
3957
- expected: "string",
3958
- value: elem
3959
- }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3976
+ }, _errorFactory)) && (null === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3960
3977
  method: "typia.assert",
3961
- path: _path + ".grantedScopes",
3962
- expected: "(Array<string> | undefined)",
3963
- value: input.grantedScopes
3978
+ path: _path + ".type",
3979
+ expected: "null",
3980
+ value: input.type
3964
3981
  }, _errorFactory)) && (undefined === input.userNotificationsEnabled || "boolean" === typeof input.userNotificationsEnabled || __typia_transform__assertGuard._assertGuard(_exceptionable, {
3965
3982
  method: "typia.assert",
3966
3983
  path: _path + ".userNotificationsEnabled",
3967
3984
  expected: "(boolean | undefined)",
3968
3985
  value: input.userNotificationsEnabled
3969
3986
  }, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
3970
- if ("s3" === input.protocol)
3987
+ if ("ftp" === input.protocol)
3971
3988
  return _ao0(input, _path, true && _exceptionable);
3972
- else if ("ftp" === input.protocol)
3989
+ else if ("s3" === input.protocol)
3973
3990
  return _ao2(input, _path, true && _exceptionable);
3974
3991
  else if ("smb" === input.protocol)
3975
3992
  return _ao3(input, _path, true && _exceptionable);
3976
3993
  else if ("sftp" === input.protocol)
3977
3994
  return _ao4(input, _path, true && _exceptionable);
3978
- else if ("reuters" === input.type)
3979
- return _ao5(input, _path, true && _exceptionable);
3980
3995
  else if ("facebook" === input.type)
3996
+ return _ao5(input, _path, true && _exceptionable);
3997
+ else if ("reuters" === input.type)
3981
3998
  return _ao6(input, _path, true && _exceptionable);
3999
+ else if (undefined !== input.type && null === input.type)
4000
+ return _ao7(input, _path, true && _exceptionable);
3982
4001
  else
3983
4002
  return __typia_transform__assertGuard._assertGuard(_exceptionable, {
3984
4003
  method: "typia.assert",
3985
4004
  path: _path,
3986
- expected: "(FileConnectionS3Record | FileConnectionFtpRecord | FileConnectionSmbRecord | FileConnectionSftpRecord | ReutersConnectionRecord | FacebookConnectionRecord)",
4005
+ expected: "(FileConnectionFtpRecord | FileConnectionS3Record | FileConnectionSmbRecord | FileConnectionSftpRecord | FacebookConnectionRecord | ReutersConnectionRecord | EmptyConnectionRecord)",
3987
4006
  value: input
3988
4007
  }, _errorFactory);
3989
4008
  })(); const __is = input => "object" === typeof input && null !== input && _iu0(input); let _errorFactory; return (input, errorFactory) => {
@@ -3992,12 +4011,12 @@ function _assertDomainRecord(domain, input) {
3992
4011
  ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input || __typia_transform__assertGuard._assertGuard(true, {
3993
4012
  method: "typia.assert",
3994
4013
  path: _path + "",
3995
- expected: "(FacebookConnectionRecord | FileConnectionFtpRecord | FileConnectionS3Record | FileConnectionSftpRecord | FileConnectionSmbRecord | ReutersConnectionRecord)",
4014
+ expected: "(EmptyConnectionRecord | FacebookConnectionRecord | FileConnectionFtpRecord | FileConnectionS3Record | FileConnectionSftpRecord | FileConnectionSmbRecord | ReutersConnectionRecord)",
3996
4015
  value: input
3997
4016
  }, _errorFactory)) && _au0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
3998
4017
  method: "typia.assert",
3999
4018
  path: _path + "",
4000
- expected: "(FacebookConnectionRecord | FileConnectionFtpRecord | FileConnectionS3Record | FileConnectionSftpRecord | FileConnectionSmbRecord | ReutersConnectionRecord)",
4019
+ expected: "(EmptyConnectionRecord | FacebookConnectionRecord | FileConnectionFtpRecord | FileConnectionS3Record | FileConnectionSftpRecord | FileConnectionSmbRecord | ReutersConnectionRecord)",
4001
4020
  value: input
4002
4021
  }, _errorFactory))(input, "$input", true);
4003
4022
  }
@@ -4031,12 +4050,12 @@ function _assertDomainRecord(domain, input) {
4031
4050
  ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
4032
4051
  method: "typia.assert",
4033
4052
  path: _path + "",
4034
- expected: "ConnectionDomainMethodsRecord",
4053
+ expected: "ConnectionMethodsBase",
4035
4054
  value: input
4036
4055
  }, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
4037
4056
  method: "typia.assert",
4038
4057
  path: _path + "",
4039
- expected: "ConnectionDomainMethodsRecord",
4058
+ expected: "ConnectionMethodsBase",
4040
4059
  value: input
4041
4060
  }, _errorFactory))(input, "$input", true);
4042
4061
  }
@@ -4080,12 +4099,12 @@ function _assertDomainRecord(domain, input) {
4080
4099
  ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
4081
4100
  method: "typia.assert",
4082
4101
  path: _path + "",
4083
- expected: "ConnectionStatsRecord",
4102
+ expected: "ConnectionStatsBase",
4084
4103
  value: input
4085
4104
  }, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
4086
4105
  method: "typia.assert",
4087
4106
  path: _path + "",
4088
- expected: "ConnectionStatsRecord",
4107
+ expected: "ConnectionStatsBase",
4089
4108
  value: input
4090
4109
  }, _errorFactory))(input, "$input", true);
4091
4110
  }
@@ -5078,7 +5097,7 @@ function _assertDomainRecord(domain, input) {
5078
5097
  }; })()(input);
5079
5098
  }
5080
5099
  case ":file.stats?": {
5081
- return (() => { const _io0 = input => (null === input.position || "number" === typeof input.position && (0 <= input.position && __typia_transform__isTypeUint64._isTypeUint64(input.position))) && (null === input.uploading || "boolean" === typeof input.uploading) && (Array.isArray(input.zones) && input.zones.every(elem => "string" === typeof elem)) && (Array.isArray(input.replicas) && input.replicas.every(elem => "string" === typeof elem)) && (Array.isArray(input.locations) && input.locations.every(elem => "string" === typeof elem)) && (Array.isArray(input.ranges) && input.ranges.every(elem => Array.isArray(elem) && (elem.length === 2 && ("number" === typeof elem[0] && 0 <= elem[0]) && ("number" === typeof elem[1] && 0 <= elem[1])))) && (undefined === input.progress || "number" === typeof input.progress && (0 <= input.progress && input.progress <= 1)) && (undefined === input.speed || "number" === typeof input.speed && 0 <= input.speed) && ("string" === typeof input.id && RegExp("^[0-9A-Za-z~][0-9A-Za-z~._: -]*$").test(input.id)) && (null === input.size || "number" === typeof input.size && (0 <= input.size && __typia_transform__isTypeUint64._isTypeUint64(input.size))) && "boolean" === typeof input.seekable && "boolean" === typeof input.deleted && (Array.isArray(input.refs) && input.refs.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem))) && (Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && "string" === typeof input.resumable && "string" === typeof input.mimeType && "string" === typeof input.encoding && ("string" === typeof input.hash && RegExp("^([A-Fa-f0-9]{32})?$").test(input.hash)) && ("number" === typeof input.btime && (0 <= input.btime && __typia_transform__isTypeUint64._isTypeUint64(input.btime))) && "boolean" === typeof input.completed && (undefined !== input.error && (null === input.error || (Array.isArray(input.error) && input.error.every(elem => "object" === typeof elem && null !== elem && _io2(elem)) || "object" === typeof input.error && null !== input.error && _io2(input.error)))); const _io1 = input => (undefined === input.file || "string" === typeof input.file) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end); const _io2 = input => "string" === typeof input.message && (undefined === input.type || "string" === typeof input.type) && (undefined === input.code || "string" === typeof input.code) && (undefined === input.exitCode || "number" === typeof input.exitCode) && (undefined === input.signalCode || "number" === typeof input.signalCode) && (undefined === input.statusCode || "number" === typeof input.statusCode) && (undefined === input.headers || "object" === typeof input.headers && null !== input.headers && false === Array.isArray(input.headers) && _io3(input.headers)) && (undefined === input.data || "object" === typeof input.data && null !== input.data && false === Array.isArray(input.data) && _io4(input.data)) && (null === input.cause || undefined === input.cause || "object" === typeof input.cause && null !== input.cause && _io2(input.cause)) && (null === input.errors || undefined === input.errors || Array.isArray(input.errors) && input.errors.every(elem => "object" === typeof elem && null !== elem && _io2(elem))); const _io3 = input => Object.keys(input).every(key => {
5100
+ return (() => { const _io0 = input => (null === input.position || "number" === typeof input.position && (0 <= input.position && __typia_transform__isTypeUint64._isTypeUint64(input.position))) && (null === input.uploading || "boolean" === typeof input.uploading) && (Array.isArray(input.zones) && input.zones.every(elem => "string" === typeof elem)) && (Array.isArray(input.replicas) && input.replicas.every(elem => "string" === typeof elem)) && (Array.isArray(input.locations) && input.locations.every(elem => "string" === typeof elem)) && (Array.isArray(input.ranges) && input.ranges.every(elem => Array.isArray(elem) && (elem.length === 2 && ("number" === typeof elem[0] && 0 <= elem[0]) && ("number" === typeof elem[1] && 0 <= elem[1])))) && (undefined === input.progress || "number" === typeof input.progress && (0 <= input.progress && input.progress <= 1)) && (undefined === input.speed || "number" === typeof input.speed && 0 <= input.speed) && "boolean" === typeof input.complete && ("string" === typeof input.id && RegExp("^[0-9A-Za-z~][0-9A-Za-z~._: -]*$").test(input.id)) && (null === input.size || "number" === typeof input.size && (0 <= input.size && __typia_transform__isTypeUint64._isTypeUint64(input.size))) && "boolean" === typeof input.seekable && "boolean" === typeof input.deleted && (Array.isArray(input.refs) && input.refs.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io1(elem))) && (Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && "string" === typeof input.resumable && "string" === typeof input.mimeType && "string" === typeof input.encoding && ("string" === typeof input.hash && RegExp("^([A-Fa-f0-9]{32})?$").test(input.hash)) && ("number" === typeof input.btime && (0 <= input.btime && __typia_transform__isTypeUint64._isTypeUint64(input.btime))) && "boolean" === typeof input.completed && (undefined !== input.error && (null === input.error || (Array.isArray(input.error) && input.error.every(elem => "object" === typeof elem && null !== elem && _io2(elem)) || "object" === typeof input.error && null !== input.error && _io2(input.error)))); const _io1 = input => (undefined === input.file || "string" === typeof input.file) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.start || "number" === typeof input.start) && (undefined === input.end || "number" === typeof input.end); const _io2 = input => "string" === typeof input.message && (undefined === input.type || "string" === typeof input.type) && (undefined === input.code || "string" === typeof input.code) && (undefined === input.exitCode || "number" === typeof input.exitCode) && (undefined === input.signalCode || "number" === typeof input.signalCode) && (undefined === input.statusCode || "number" === typeof input.statusCode) && (undefined === input.headers || "object" === typeof input.headers && null !== input.headers && false === Array.isArray(input.headers) && _io3(input.headers)) && (undefined === input.data || "object" === typeof input.data && null !== input.data && false === Array.isArray(input.data) && _io4(input.data)) && (null === input.cause || undefined === input.cause || "object" === typeof input.cause && null !== input.cause && _io2(input.cause)) && (null === input.errors || undefined === input.errors || Array.isArray(input.errors) && input.errors.every(elem => "object" === typeof elem && null !== elem && _io2(elem))); const _io3 = input => Object.keys(input).every(key => {
5082
5101
  const value = input[key];
5083
5102
  if (undefined === value)
5084
5103
  return true;
@@ -5218,6 +5237,11 @@ function _assertDomainRecord(domain, input) {
5218
5237
  path: _path + ".speed",
5219
5238
  expected: "((number & Minimum<0>) | undefined)",
5220
5239
  value: input.speed
5240
+ }, _errorFactory)) && ("boolean" === typeof input.complete || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5241
+ method: "typia.assert",
5242
+ path: _path + ".complete",
5243
+ expected: "boolean",
5244
+ value: input.complete
5221
5245
  }, _errorFactory)) && ("string" === typeof input.id && (RegExp("^[0-9A-Za-z~][0-9A-Za-z~._: -]*$").test(input.id) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5222
5246
  method: "typia.assert",
5223
5247
  path: _path + ".id",
@@ -5690,6 +5714,104 @@ function _assertDomainRecord(domain, input) {
5690
5714
  return input;
5691
5715
  }; })()(input);
5692
5716
  }
5717
+ case ":general._asset": {
5718
+ return (() => { const _io0 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.tags || "string" === typeof input.tags) && (undefined === input.media || "string" === typeof input.media) && (undefined === input.duration || "string" === typeof input.duration) && (undefined === input.deadlines || "string" === typeof input.deadlines) && (undefined === input.assignees || "string" === typeof input.assignees) && (undefined === input.locations || "string" === typeof input.locations) && (undefined === input.status || "string" === typeof input.status) && (undefined === input.storage || "string" === typeof input.storage); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5719
+ method: "typia.assert",
5720
+ path: _path + ".title",
5721
+ expected: "(string | undefined)",
5722
+ value: input.title
5723
+ }, _errorFactory)) && (undefined === input.tags || "string" === typeof input.tags || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5724
+ method: "typia.assert",
5725
+ path: _path + ".tags",
5726
+ expected: "(string | undefined)",
5727
+ value: input.tags
5728
+ }, _errorFactory)) && (undefined === input.media || "string" === typeof input.media || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5729
+ method: "typia.assert",
5730
+ path: _path + ".media",
5731
+ expected: "(string | undefined)",
5732
+ value: input.media
5733
+ }, _errorFactory)) && (undefined === input.duration || "string" === typeof input.duration || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5734
+ method: "typia.assert",
5735
+ path: _path + ".duration",
5736
+ expected: "(string | undefined)",
5737
+ value: input.duration
5738
+ }, _errorFactory)) && (undefined === input.deadlines || "string" === typeof input.deadlines || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5739
+ method: "typia.assert",
5740
+ path: _path + ".deadlines",
5741
+ expected: "(string | undefined)",
5742
+ value: input.deadlines
5743
+ }, _errorFactory)) && (undefined === input.assignees || "string" === typeof input.assignees || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5744
+ method: "typia.assert",
5745
+ path: _path + ".assignees",
5746
+ expected: "(string | undefined)",
5747
+ value: input.assignees
5748
+ }, _errorFactory)) && (undefined === input.locations || "string" === typeof input.locations || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5749
+ method: "typia.assert",
5750
+ path: _path + ".locations",
5751
+ expected: "(string | undefined)",
5752
+ value: input.locations
5753
+ }, _errorFactory)) && (undefined === input.status || "string" === typeof input.status || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5754
+ method: "typia.assert",
5755
+ path: _path + ".status",
5756
+ expected: "(string | undefined)",
5757
+ value: input.status
5758
+ }, _errorFactory)) && (undefined === input.storage || "string" === typeof input.storage || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5759
+ method: "typia.assert",
5760
+ path: _path + ".storage",
5761
+ expected: "(string | undefined)",
5762
+ value: input.storage
5763
+ }, _errorFactory)); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
5764
+ if (false === __is(input)) {
5765
+ _errorFactory = errorFactory;
5766
+ ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
5767
+ method: "typia.assert",
5768
+ path: _path + "",
5769
+ expected: "GeneralAssetRecord",
5770
+ value: input
5771
+ }, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
5772
+ method: "typia.assert",
5773
+ path: _path + "",
5774
+ expected: "GeneralAssetRecord",
5775
+ value: input
5776
+ }, _errorFactory))(input, "$input", true);
5777
+ }
5778
+ return input;
5779
+ }; })()(input);
5780
+ }
5781
+ case ":general._embedding": {
5782
+ return (() => { const _io0 = input => Object.keys(input).every(key => {
5783
+ const value = input[key];
5784
+ if (undefined === value)
5785
+ return true;
5786
+ return null === value || "string" === typeof value;
5787
+ }); const _ao0 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
5788
+ const value = input[key];
5789
+ if (undefined === value)
5790
+ return true;
5791
+ return null === value || "string" === typeof value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
5792
+ method: "typia.assert",
5793
+ path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
5794
+ expected: "(null | string)",
5795
+ value: value
5796
+ }, _errorFactory);
5797
+ }); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
5798
+ if (false === __is(input)) {
5799
+ _errorFactory = errorFactory;
5800
+ ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
5801
+ method: "typia.assert",
5802
+ path: _path + "",
5803
+ expected: "GeneralEmbeddingRecord",
5804
+ value: input
5805
+ }, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
5806
+ method: "typia.assert",
5807
+ path: _path + "",
5808
+ expected: "GeneralEmbeddingRecord",
5809
+ value: input
5810
+ }, _errorFactory))(input, "$input", true);
5811
+ }
5812
+ return input;
5813
+ }; })()(input);
5814
+ }
5693
5815
  case ":media.source": {
5694
5816
  return (() => { const _io0 = 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) && _io1(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) && _io2(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io5(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) && _io7(input.transcribe)); const _io1 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io2 = input => Object.keys(input).every(key => {
5695
5817
  const value = input[key];
@@ -8479,140 +8601,104 @@ function _assertDomainRecord(domain, input) {
8479
8601
  }; })()(input);
8480
8602
  }
8481
8603
  case ":publish": {
8482
- return (() => { const _io0 = input => (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io1(input.draft)) && "youtube" === input.type && (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 && _io3(input.render)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && false === Array.isArray(input.published) && _io17(input.published)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io17(input.remote)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io18(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io19(elem))); const _io1 = input => undefined === input.snippet || "object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) && _io2(input.snippet); const _io2 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.description || "string" === typeof input.description); const _io3 = 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) && _io4(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io12(input.profile)); const _io4 = 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) && _io5(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) && _io6(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io9(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) && _io11(input.transcribe)); const _io5 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io6 = input => Object.keys(input).every(key => {
8604
+ return (() => { const _io0 = input => undefined !== input.type && null === input.type && (null === input.asset || undefined === input.asset || "string" === typeof input.asset); const _io1 = input => "facebook" === input.type && (undefined === input.pageId || "string" === typeof input.pageId) && (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 && _io2(input.render)) && true && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io16(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io17(elem))); const _io2 = 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) && _io3(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io11(input.profile)); const _io3 = 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) && _io4(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) && _io5(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io8(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) && _io10(input.transcribe)); const _io4 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io5 = input => Object.keys(input).every(key => {
8483
8605
  const value = input[key];
8484
8606
  if (undefined === value)
8485
8607
  return true;
8486
- return "object" === typeof value && null !== value && false === Array.isArray(value) && _io7(value);
8487
- }); const _io7 = 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) && _io8(input.styleOverrides)); const _io8 = 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.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 _io9 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io10(input.crop); const _io10 = 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 _io11 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io12 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io13(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io14(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io15(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) && _io16(input.subtitle))); const _io13 = input => "string" === typeof input.engine; const _io14 = input => "string" === typeof input.language; const _io15 = 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 _io16 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io17 = input => Object.keys(input).every(key => {
8488
- const value = input[key];
8489
- if (undefined === value)
8490
- return true;
8491
- return true;
8492
- }); const _io18 = input => "string" === typeof input.method; const _io19 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io20 = input => (undefined === input.pageId || "string" === typeof input.pageId) && "facebook" === input.type && (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 && _io3(input.render)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io17(input.draft)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && false === Array.isArray(input.published) && _io17(input.published)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io17(input.remote)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io18(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io19(elem))); const _io21 = 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) && _io22(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io26(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io27(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io30(input.published)) && "file" === input.type && (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 && _io3(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io18(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io19(elem))); const _io22 = input => Object.keys(input).every(key => {
8608
+ return "object" === typeof value && null !== value && false === Array.isArray(value) && _io6(value);
8609
+ }); const _io6 = 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) && _io7(input.styleOverrides)); const _io7 = 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.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 _io8 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io9(input.crop); const _io9 = 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 _io10 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io11 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io12(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io13(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io14(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) && _io15(input.subtitle))); const _io12 = input => "string" === typeof input.engine; const _io13 = input => "string" === typeof input.language; const _io14 = 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 _io15 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io16 = input => "string" === typeof input.method; const _io17 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io18 = input => "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) && _io19(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io23(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io24(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io27(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 && _io2(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io16(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io17(elem))); const _io19 = input => Object.keys(input).every(key => {
8493
8610
  const value = input[key];
8494
8611
  if (undefined === value)
8495
8612
  return true;
8496
8613
  return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
8497
- }); const _io23 = input => (undefined === input.preset || "string" === typeof input.preset) && (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) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io4(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io12(input.profile)); const _io24 = input => "object" === typeof input.__context && null !== input.__context && _io25(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io23(input.__returnValue)); const _io25 = input => "object" === typeof input.publish && null !== input.publish && _io21(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io26 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && Object.keys(input).every(key => {
8498
- if (["directory", "filename"].some(prop => key === prop))
8499
- return true;
8500
- const value = input[key];
8501
- if (undefined === value)
8502
- return true;
8503
- return true;
8504
- }); const _io27 = 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) && _io28(input.renders)) && Object.keys(input).every(key => {
8505
- if (["directory", "filename", "renders"].some(prop => key === prop))
8506
- return true;
8507
- const value = input[key];
8508
- if (undefined === value)
8509
- return true;
8510
- return true;
8511
- }); const _io28 = input => Object.keys(input).every(key => {
8512
- const value = input[key];
8513
- if (undefined === value)
8514
- return true;
8515
- return "object" === typeof value && null !== value && false === Array.isArray(value) && _io29(value);
8516
- }); const _io29 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io19(elem))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source); const _io30 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename && Object.keys(input).every(key => {
8517
- if (["directory", "filename"].some(prop => key === prop))
8518
- return true;
8614
+ }); const _io20 = 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) && _io3(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io11(input.profile)); const _io21 = input => "object" === typeof input.__context && null !== input.__context && _io22(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io20(input.__returnValue)); const _io22 = input => "object" === typeof input.publish && null !== input.publish && _io18(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io23 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io24 = 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) && _io25(input.renders)); const _io25 = input => Object.keys(input).every(key => {
8519
8615
  const value = input[key];
8520
8616
  if (undefined === value)
8521
8617
  return true;
8522
- return true;
8523
- }); const _io31 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io26(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && _io32(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io30(input.published)) && (null !== input.renders && undefined === input.renders) && "file" === input.type && (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 && _io3(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io18(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io19(elem))); const _io32 = input => (undefined === input.id || "string" === typeof input.id) && "string" === typeof input.path && "string" === typeof input.filename && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && _io33(input.subtitle)) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io34(input.metafile)) && Object.keys(input).every(key => {
8618
+ return "object" === typeof value && null !== value && false === Array.isArray(value) && _io26(value);
8619
+ }); const _io26 = input => (undefined === input.path || "string" === typeof input.path) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io17(elem))) && true && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash) && (undefined === input.source || "string" === typeof input.source); const _io27 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename; const _io28 = input => "file" === input.type && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io23(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && _io29(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io27(input.published)) && (null !== input.renders && undefined === input.renders) && (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 && _io2(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io16(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io17(elem))); const _io29 = input => (undefined === input.id || "string" === typeof input.id) && "string" === typeof input.path && "string" === typeof input.filename && (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.subtitle || "object" === typeof input.subtitle && null !== input.subtitle && _io30(input.subtitle)) && (undefined === input.metafile || "object" === typeof input.metafile && null !== input.metafile && _io31(input.metafile)) && Object.keys(input).every(key => {
8524
8620
  if (["id", "path", "filename", "directory", "subtitle", "metafile"].some(prop => key === prop))
8525
8621
  return true;
8526
8622
  const value = input[key];
8527
8623
  if (undefined === value)
8528
8624
  return true;
8529
8625
  return true;
8530
- }); const _io33 = input => "string" === typeof input.path; const _io34 = input => "string" === typeof input.path; const _io35 = input => undefined !== input.type && null === input.type && (null === input.asset || undefined === input.asset || "string" === typeof input.asset); const _iu0 = input => (() => {
8626
+ }); const _io30 = input => "string" === typeof input.path; const _io31 = input => "string" === typeof input.path; const _io32 = input => "youtube" === input.type && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io33(input.draft)) && (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 && _io2(input.render)) && true && true && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io16(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io17(elem))); const _io33 = input => undefined === input.snippet || "object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) && _io34(input.snippet); const _io34 = input => (undefined === input.title || "string" === typeof input.title) && (undefined === input.tags || Array.isArray(input.tags) && input.tags.every(elem => "string" === typeof elem)) && (undefined === input.description || "string" === typeof input.description); const _iu0 = input => (() => {
8531
8627
  if (undefined !== input.path)
8532
- return _io23(input);
8628
+ return _io20(input);
8533
8629
  else if (undefined !== input.__context)
8534
- return _io24(input);
8630
+ return _io21(input);
8535
8631
  else
8536
8632
  return false;
8537
8633
  })(); const _iu1 = input => (() => {
8538
- if ("youtube" === input.type)
8634
+ if (undefined !== input.type && null === input.type)
8539
8635
  return _io0(input);
8540
8636
  else if ("facebook" === input.type)
8541
- return _io20(input);
8542
- else if (undefined !== input.type && null === input.type)
8543
- return _io35(input);
8637
+ return _io1(input);
8638
+ else if ("youtube" === input.type)
8639
+ return _io32(input);
8544
8640
  else
8545
8641
  return (() => {
8546
- if (_io31(input))
8547
- return _io31(input);
8548
- if (_io21(input))
8549
- return _io21(input);
8642
+ if (_io28(input))
8643
+ return _io28(input);
8644
+ if (_io18(input))
8645
+ return _io18(input);
8550
8646
  return false;
8551
8647
  })();
8552
- })(); const _ao0 = (input, _path, _exceptionable = true) => (undefined === input.draft || ("object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8553
- method: "typia.assert",
8554
- path: _path + ".draft",
8555
- expected: "(__type | undefined)",
8556
- value: input.draft
8557
- }, _errorFactory)) && _ao1(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8648
+ })(); const _ao0 = (input, _path, _exceptionable = true) => (undefined !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8558
8649
  method: "typia.assert",
8559
- path: _path + ".draft",
8560
- expected: "(__type | undefined)",
8561
- value: input.draft
8562
- }, _errorFactory)) && ("youtube" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8650
+ path: _path + ".type",
8651
+ expected: "null",
8652
+ value: input.type
8653
+ }, _errorFactory)) && (null === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8563
8654
  method: "typia.assert",
8564
8655
  path: _path + ".type",
8565
- expected: "\"youtube\"",
8656
+ expected: "null",
8566
8657
  value: input.type
8567
8658
  }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8568
8659
  method: "typia.assert",
8569
8660
  path: _path + ".asset",
8570
8661
  expected: "(null | string | undefined)",
8571
8662
  value: input.asset
8572
- }, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8663
+ }, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => ("facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8573
8664
  method: "typia.assert",
8574
- path: _path + ".connection",
8575
- expected: "(string | undefined)",
8576
- value: input.connection
8577
- }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8665
+ path: _path + ".type",
8666
+ expected: "\"facebook\"",
8667
+ value: input.type
8668
+ }, _errorFactory)) && (undefined === input.pageId || "string" === typeof input.pageId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8578
8669
  method: "typia.assert",
8579
- path: _path + ".render",
8580
- expected: "(PublishRender | undefined)",
8581
- value: input.render
8582
- }, _errorFactory)) && _ao3(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8583
- method: "typia.assert",
8584
- path: _path + ".render",
8585
- expected: "(PublishRender | undefined)",
8586
- value: input.render
8587
- }, _errorFactory)) && (undefined === input.published || ("object" === typeof input.published && null !== input.published && false === Array.isArray(input.published) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8670
+ path: _path + ".pageId",
8671
+ expected: "(string | undefined)",
8672
+ value: input.pageId
8673
+ }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8588
8674
  method: "typia.assert",
8589
- path: _path + ".published",
8590
- expected: "(Record<string, unknown> | undefined)",
8591
- value: input.published
8592
- }, _errorFactory)) && _ao17(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8675
+ path: _path + ".asset",
8676
+ expected: "(null | string | undefined)",
8677
+ value: input.asset
8678
+ }, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8593
8679
  method: "typia.assert",
8594
- path: _path + ".published",
8595
- expected: "(Record<string, unknown> | undefined)",
8596
- value: input.published
8597
- }, _errorFactory)) && (undefined === input.remote || ("object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8680
+ path: _path + ".connection",
8681
+ expected: "(string | undefined)",
8682
+ value: input.connection
8683
+ }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8598
8684
  method: "typia.assert",
8599
- path: _path + ".remote",
8600
- expected: "(Record<string, unknown> | undefined)",
8601
- value: input.remote
8602
- }, _errorFactory)) && _ao17(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8685
+ path: _path + ".render",
8686
+ expected: "(PublishRenderBase | undefined)",
8687
+ value: input.render
8688
+ }, _errorFactory)) && _ao2(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8603
8689
  method: "typia.assert",
8604
- path: _path + ".remote",
8605
- expected: "(Record<string, unknown> | undefined)",
8606
- value: input.remote
8607
- }, _errorFactory)) && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8690
+ path: _path + ".render",
8691
+ expected: "(PublishRenderBase | undefined)",
8692
+ value: input.render
8693
+ }, _errorFactory)) && true && true && true && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8608
8694
  method: "typia.assert",
8609
8695
  path: _path + ".error",
8610
- expected: "(__type.o11 | null | undefined)",
8696
+ expected: "(__type.o9 | null | undefined)",
8611
8697
  value: input.error
8612
- }, _errorFactory)) && _ao18(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8698
+ }, _errorFactory)) && _ao16(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8613
8699
  method: "typia.assert",
8614
8700
  path: _path + ".error",
8615
- expected: "(__type.o11 | null | undefined)",
8701
+ expected: "(__type.o9 | null | undefined)",
8616
8702
  value: input.error
8617
8703
  }, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8618
8704
  method: "typia.assert",
@@ -8624,7 +8710,7 @@ function _assertDomainRecord(domain, input) {
8624
8710
  path: _path + ".messages[" + _index9 + "]",
8625
8711
  expected: "Message",
8626
8712
  value: elem
8627
- }, _errorFactory)) && _ao19(elem, _path + ".messages[" + _index9 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8713
+ }, _errorFactory)) && _ao17(elem, _path + ".messages[" + _index9 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8628
8714
  method: "typia.assert",
8629
8715
  path: _path + ".messages[" + _index9 + "]",
8630
8716
  expected: "Message",
@@ -8634,42 +8720,7 @@ function _assertDomainRecord(domain, input) {
8634
8720
  path: _path + ".messages",
8635
8721
  expected: "(Array<Message> | undefined)",
8636
8722
  value: input.messages
8637
- }, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => undefined === input.snippet || ("object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8638
- method: "typia.assert",
8639
- path: _path + ".snippet",
8640
- expected: "(__type.o1 | undefined)",
8641
- value: input.snippet
8642
- }, _errorFactory)) && _ao2(input.snippet, _path + ".snippet", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8643
- method: "typia.assert",
8644
- path: _path + ".snippet",
8645
- expected: "(__type.o1 | undefined)",
8646
- value: input.snippet
8647
- }, _errorFactory); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8648
- method: "typia.assert",
8649
- path: _path + ".title",
8650
- expected: "(string | undefined)",
8651
- value: input.title
8652
- }, _errorFactory)) && (undefined === input.tags || (Array.isArray(input.tags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8653
- method: "typia.assert",
8654
- path: _path + ".tags",
8655
- expected: "(Array<string> | undefined)",
8656
- value: input.tags
8657
- }, _errorFactory)) && input.tags.every((elem, _index10) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8658
- method: "typia.assert",
8659
- path: _path + ".tags[" + _index10 + "]",
8660
- expected: "string",
8661
- value: elem
8662
- }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8663
- method: "typia.assert",
8664
- path: _path + ".tags",
8665
- expected: "(Array<string> | undefined)",
8666
- value: input.tags
8667
- }, _errorFactory)) && (undefined === input.description || "string" === typeof input.description || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8668
- method: "typia.assert",
8669
- path: _path + ".description",
8670
- expected: "(string | undefined)",
8671
- value: input.description
8672
- }, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8723
+ }, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8673
8724
  method: "typia.assert",
8674
8725
  path: _path + ".preset",
8675
8726
  expected: "(string | undefined)",
@@ -8684,7 +8735,7 @@ function _assertDomainRecord(domain, input) {
8684
8735
  path: _path + ".scene",
8685
8736
  expected: "(RenderSceneObject | undefined)",
8686
8737
  value: input.scene
8687
- }, _errorFactory)) && _ao4(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8738
+ }, _errorFactory)) && _ao3(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8688
8739
  method: "typia.assert",
8689
8740
  path: _path + ".scene",
8690
8741
  expected: "(RenderSceneObject | undefined)",
@@ -8694,12 +8745,12 @@ function _assertDomainRecord(domain, input) {
8694
8745
  path: _path + ".profile",
8695
8746
  expected: "(RenderProfileObject | undefined)",
8696
8747
  value: input.profile
8697
- }, _errorFactory)) && _ao12(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8748
+ }, _errorFactory)) && _ao11(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8698
8749
  method: "typia.assert",
8699
8750
  path: _path + ".profile",
8700
8751
  expected: "(RenderProfileObject | undefined)",
8701
8752
  value: input.profile
8702
- }, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8753
+ }, _errorFactory)); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8703
8754
  method: "typia.assert",
8704
8755
  path: _path + ".id",
8705
8756
  expected: "(string | undefined)",
@@ -8712,12 +8763,12 @@ function _assertDomainRecord(domain, input) {
8712
8763
  }, _errorFactory)) && (null === input.input || undefined === input.input || ("object" === typeof input.input && null !== input.input && false === Array.isArray(input.input) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8713
8764
  method: "typia.assert",
8714
8765
  path: _path + ".input",
8715
- expected: "(__type.o2 | null | undefined)",
8766
+ expected: "(__type | null | undefined)",
8716
8767
  value: input.input
8717
- }, _errorFactory)) && _ao5(input.input, _path + ".input", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8768
+ }, _errorFactory)) && _ao4(input.input, _path + ".input", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8718
8769
  method: "typia.assert",
8719
8770
  path: _path + ".input",
8720
- expected: "(__type.o2 | null | undefined)",
8771
+ expected: "(__type | null | undefined)",
8721
8772
  value: input.input
8722
8773
  }, _errorFactory)) && (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8723
8774
  method: "typia.assert",
@@ -8732,22 +8783,22 @@ function _assertDomainRecord(domain, input) {
8732
8783
  }, _errorFactory)) && (undefined === input.subtitleTracks || ("object" === typeof input.subtitleTracks && null !== input.subtitleTracks && false === Array.isArray(input.subtitleTracks) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8733
8784
  method: "typia.assert",
8734
8785
  path: _path + ".subtitleTracks",
8735
- expected: "(__type.o3 | undefined)",
8786
+ expected: "(__type.o1 | undefined)",
8736
8787
  value: input.subtitleTracks
8737
- }, _errorFactory)) && _ao6(input.subtitleTracks, _path + ".subtitleTracks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8788
+ }, _errorFactory)) && _ao5(input.subtitleTracks, _path + ".subtitleTracks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8738
8789
  method: "typia.assert",
8739
8790
  path: _path + ".subtitleTracks",
8740
- expected: "(__type.o3 | undefined)",
8791
+ expected: "(__type.o1 | undefined)",
8741
8792
  value: input.subtitleTracks
8742
8793
  }, _errorFactory)) && (undefined === input.video || ("object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8743
8794
  method: "typia.assert",
8744
8795
  path: _path + ".video",
8745
- expected: "(__type.o5 | undefined)",
8796
+ expected: "(__type.o3 | undefined)",
8746
8797
  value: input.video
8747
- }, _errorFactory)) && _ao9(input.video, _path + ".video", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8798
+ }, _errorFactory)) && _ao8(input.video, _path + ".video", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8748
8799
  method: "typia.assert",
8749
8800
  path: _path + ".video",
8750
- expected: "(__type.o5 | undefined)",
8801
+ expected: "(__type.o3 | undefined)",
8751
8802
  value: input.video
8752
8803
  }, _errorFactory)) && (undefined === input.start || "number" === typeof input.start || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8753
8804
  method: "typia.assert",
@@ -8762,14 +8813,14 @@ function _assertDomainRecord(domain, input) {
8762
8813
  }, _errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8763
8814
  method: "typia.assert",
8764
8815
  path: _path + ".transcribe",
8765
- expected: "(__type.o7 | undefined)",
8816
+ expected: "(__type.o5 | undefined)",
8766
8817
  value: input.transcribe
8767
- }, _errorFactory)) && _ao11(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8818
+ }, _errorFactory)) && _ao10(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8768
8819
  method: "typia.assert",
8769
8820
  path: _path + ".transcribe",
8770
- expected: "(__type.o7 | undefined)",
8821
+ expected: "(__type.o5 | undefined)",
8771
8822
  value: input.transcribe
8772
- }, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8823
+ }, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8773
8824
  method: "typia.assert",
8774
8825
  path: _path + ".type",
8775
8826
  expected: "(string | undefined)",
@@ -8779,22 +8830,22 @@ function _assertDomainRecord(domain, input) {
8779
8830
  path: _path + ".file",
8780
8831
  expected: "(null | string | undefined)",
8781
8832
  value: input.file
8782
- }, _errorFactory)); const _ao6 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
8833
+ }, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
8783
8834
  const value = input[key];
8784
8835
  if (undefined === value)
8785
8836
  return true;
8786
8837
  return ("object" === typeof value && null !== value && false === Array.isArray(value) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8787
8838
  method: "typia.assert",
8788
8839
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
8789
- expected: "__type.o4",
8840
+ expected: "__type.o2",
8790
8841
  value: value
8791
- }, _errorFactory)) && _ao7(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8842
+ }, _errorFactory)) && _ao6(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8792
8843
  method: "typia.assert",
8793
8844
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
8794
- expected: "__type.o4",
8845
+ expected: "__type.o2",
8795
8846
  value: value
8796
8847
  }, _errorFactory);
8797
- }); const _ao7 = (input, _path, _exceptionable = true) => (null === input.style || undefined === input.style || "string" === typeof input.style || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8848
+ }); const _ao6 = (input, _path, _exceptionable = true) => (null === input.style || undefined === input.style || "string" === typeof input.style || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8798
8849
  method: "typia.assert",
8799
8850
  path: _path + ".style",
8800
8851
  expected: "(null | string | undefined)",
@@ -8804,12 +8855,12 @@ function _assertDomainRecord(domain, input) {
8804
8855
  path: _path + ".styleOverrides",
8805
8856
  expected: "(SubtitleStyle | undefined)",
8806
8857
  value: input.styleOverrides
8807
- }, _errorFactory)) && _ao8(input.styleOverrides, _path + ".styleOverrides", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8858
+ }, _errorFactory)) && _ao7(input.styleOverrides, _path + ".styleOverrides", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8808
8859
  method: "typia.assert",
8809
8860
  path: _path + ".styleOverrides",
8810
8861
  expected: "(SubtitleStyle | undefined)",
8811
8862
  value: input.styleOverrides
8812
- }, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8863
+ }, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8813
8864
  method: "typia.assert",
8814
8865
  path: _path + ".name",
8815
8866
  expected: "(string | undefined)",
@@ -8924,17 +8975,17 @@ function _assertDomainRecord(domain, input) {
8924
8975
  path: _path + ".encoding",
8925
8976
  expected: "(string | undefined)",
8926
8977
  value: input.encoding
8927
- }, _errorFactory)); const _ao9 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8978
+ }, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8928
8979
  method: "typia.assert",
8929
8980
  path: _path + ".crop",
8930
- expected: "(__type.o6 | undefined)",
8981
+ expected: "(__type.o4 | undefined)",
8931
8982
  value: input.crop
8932
- }, _errorFactory)) && _ao10(input.crop, _path + ".crop", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8983
+ }, _errorFactory)) && _ao9(input.crop, _path + ".crop", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8933
8984
  method: "typia.assert",
8934
8985
  path: _path + ".crop",
8935
- expected: "(__type.o6 | undefined)",
8986
+ expected: "(__type.o4 | undefined)",
8936
8987
  value: input.crop
8937
- }, _errorFactory); const _ao10 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8988
+ }, _errorFactory); const _ao9 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8938
8989
  method: "typia.assert",
8939
8990
  path: _path + ".x",
8940
8991
  expected: "(number | undefined)",
@@ -8954,7 +9005,7 @@ function _assertDomainRecord(domain, input) {
8954
9005
  path: _path + ".height",
8955
9006
  expected: "(number | undefined)",
8956
9007
  value: input.height
8957
- }, _errorFactory)); const _ao11 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9008
+ }, _errorFactory)); const _ao10 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8958
9009
  method: "typia.assert",
8959
9010
  path: _path + ".language",
8960
9011
  expected: "(string | undefined)",
@@ -8964,9 +9015,9 @@ function _assertDomainRecord(domain, input) {
8964
9015
  path: _path + ".pan",
8965
9016
  expected: "(Array<number> | undefined)",
8966
9017
  value: input.pan
8967
- }, _errorFactory)) && input.pan.every((elem, _index11) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9018
+ }, _errorFactory)) && input.pan.every((elem, _index10) => "number" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8968
9019
  method: "typia.assert",
8969
- path: _path + ".pan[" + _index11 + "]",
9020
+ path: _path + ".pan[" + _index10 + "]",
8970
9021
  expected: "number",
8971
9022
  value: elem
8972
9023
  }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
@@ -8974,7 +9025,7 @@ function _assertDomainRecord(domain, input) {
8974
9025
  path: _path + ".pan",
8975
9026
  expected: "(Array<number> | undefined)",
8976
9027
  value: input.pan
8977
- }, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9028
+ }, _errorFactory)); const _ao11 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8978
9029
  method: "typia.assert",
8979
9030
  path: _path + ".format",
8980
9031
  expected: "string",
@@ -8982,41 +9033,41 @@ function _assertDomainRecord(domain, input) {
8982
9033
  }, _errorFactory)) && (undefined === input.transcribe || ("object" === typeof input.transcribe && null !== input.transcribe || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8983
9034
  method: "typia.assert",
8984
9035
  path: _path + ".transcribe",
8985
- expected: "(__type.o8 | undefined)",
9036
+ expected: "(__type.o6 | undefined)",
8986
9037
  value: input.transcribe
8987
- }, _errorFactory)) && _ao13(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9038
+ }, _errorFactory)) && _ao12(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8988
9039
  method: "typia.assert",
8989
9040
  path: _path + ".transcribe",
8990
- expected: "(__type.o8 | undefined)",
9041
+ expected: "(__type.o6 | undefined)",
8991
9042
  value: input.transcribe
8992
9043
  }, _errorFactory)) && (undefined === input.translate || ("object" === typeof input.translate && null !== input.translate || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8993
9044
  method: "typia.assert",
8994
9045
  path: _path + ".translate",
8995
- expected: "(__type.o9 | undefined)",
9046
+ expected: "(__type.o7 | undefined)",
8996
9047
  value: input.translate
8997
- }, _errorFactory)) && _ao14(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9048
+ }, _errorFactory)) && _ao13(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
8998
9049
  method: "typia.assert",
8999
9050
  path: _path + ".translate",
9000
- expected: "(__type.o9 | undefined)",
9051
+ expected: "(__type.o7 | undefined)",
9001
9052
  value: input.translate
9002
9053
  }, _errorFactory)) && (undefined === input.audio || ("object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9003
9054
  method: "typia.assert",
9004
9055
  path: _path + ".audio",
9005
- expected: "(__type.o10 | undefined)",
9056
+ expected: "(__type.o8 | undefined)",
9006
9057
  value: input.audio
9007
- }, _errorFactory)) && _ao15(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9058
+ }, _errorFactory)) && _ao14(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9008
9059
  method: "typia.assert",
9009
9060
  path: _path + ".audio",
9010
- expected: "(__type.o10 | undefined)",
9061
+ expected: "(__type.o8 | undefined)",
9011
9062
  value: input.audio
9012
9063
  }, _errorFactory)) && true && (undefined === input.pick || (Array.isArray(input.pick) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9013
9064
  method: "typia.assert",
9014
9065
  path: _path + ".pick",
9015
9066
  expected: "(Array<string> | undefined)",
9016
9067
  value: input.pick
9017
- }, _errorFactory)) && input.pick.every((elem, _index12) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9068
+ }, _errorFactory)) && input.pick.every((elem, _index11) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9018
9069
  method: "typia.assert",
9019
- path: _path + ".pick[" + _index12 + "]",
9070
+ path: _path + ".pick[" + _index11 + "]",
9020
9071
  expected: "string",
9021
9072
  value: elem
9022
9073
  }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
@@ -9034,22 +9085,22 @@ function _assertDomainRecord(domain, input) {
9034
9085
  path: _path + ".subtitle",
9035
9086
  expected: "(SubtitleProfile | string | undefined)",
9036
9087
  value: input.subtitle
9037
- }, _errorFactory)) && _ao16(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9088
+ }, _errorFactory)) && _ao15(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9038
9089
  method: "typia.assert",
9039
9090
  path: _path + ".subtitle",
9040
9091
  expected: "(SubtitleProfile | string | undefined)",
9041
9092
  value: input.subtitle
9042
- }, _errorFactory))); const _ao13 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9093
+ }, _errorFactory))); const _ao12 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9043
9094
  method: "typia.assert",
9044
9095
  path: _path + ".engine",
9045
9096
  expected: "string",
9046
9097
  value: input.engine
9047
- }, _errorFactory); const _ao14 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9098
+ }, _errorFactory); const _ao13 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9048
9099
  method: "typia.assert",
9049
9100
  path: _path + ".language",
9050
9101
  expected: "string",
9051
9102
  value: input.language
9052
- }, _errorFactory); const _ao15 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9103
+ }, _errorFactory); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9053
9104
  method: "typia.assert",
9054
9105
  path: _path + ".codec",
9055
9106
  expected: "(string | undefined)",
@@ -9069,7 +9120,7 @@ function _assertDomainRecord(domain, input) {
9069
9120
  path: _path + ".split",
9070
9121
  expected: "(boolean | undefined)",
9071
9122
  value: input.split
9072
- }, _errorFactory)); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9123
+ }, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9073
9124
  method: "typia.assert",
9074
9125
  path: _path + ".lang",
9075
9126
  expected: "(string | undefined)",
@@ -9079,17 +9130,12 @@ function _assertDomainRecord(domain, input) {
9079
9130
  path: _path + ".style",
9080
9131
  expected: "(string | undefined)",
9081
9132
  value: input.style
9082
- }, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9083
- const value = input[key];
9084
- if (undefined === value)
9085
- return true;
9086
- return true;
9087
- }); const _ao18 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9133
+ }, _errorFactory)); const _ao16 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9088
9134
  method: "typia.assert",
9089
9135
  path: _path + ".method",
9090
9136
  expected: "string",
9091
9137
  value: input.method
9092
- }, _errorFactory); const _ao19 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9138
+ }, _errorFactory); const _ao17 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9093
9139
  method: "typia.assert",
9094
9140
  path: _path + ".level",
9095
9141
  expected: "number",
@@ -9104,97 +9150,12 @@ function _assertDomainRecord(domain, input) {
9104
9150
  path: _path + ".msg",
9105
9151
  expected: "string",
9106
9152
  value: input.msg
9107
- }, _errorFactory)); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.pageId || "string" === typeof input.pageId || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9108
- method: "typia.assert",
9109
- path: _path + ".pageId",
9110
- expected: "(string | undefined)",
9111
- value: input.pageId
9112
- }, _errorFactory)) && ("facebook" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9153
+ }, _errorFactory)); const _ao18 = (input, _path, _exceptionable = true) => ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9113
9154
  method: "typia.assert",
9114
9155
  path: _path + ".type",
9115
- expected: "\"facebook\"",
9156
+ expected: "\"file\"",
9116
9157
  value: input.type
9117
- }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9118
- method: "typia.assert",
9119
- path: _path + ".asset",
9120
- expected: "(null | string | undefined)",
9121
- value: input.asset
9122
- }, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9123
- method: "typia.assert",
9124
- path: _path + ".connection",
9125
- expected: "(string | undefined)",
9126
- value: input.connection
9127
- }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9128
- method: "typia.assert",
9129
- path: _path + ".render",
9130
- expected: "(PublishRender | undefined)",
9131
- value: input.render
9132
- }, _errorFactory)) && _ao3(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9133
- method: "typia.assert",
9134
- path: _path + ".render",
9135
- expected: "(PublishRender | undefined)",
9136
- value: input.render
9137
- }, _errorFactory)) && (undefined === input.draft || ("object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9138
- method: "typia.assert",
9139
- path: _path + ".draft",
9140
- expected: "(Record<string, unknown> | undefined)",
9141
- value: input.draft
9142
- }, _errorFactory)) && _ao17(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9143
- method: "typia.assert",
9144
- path: _path + ".draft",
9145
- expected: "(Record<string, unknown> | undefined)",
9146
- value: input.draft
9147
- }, _errorFactory)) && (undefined === input.published || ("object" === typeof input.published && null !== input.published && false === Array.isArray(input.published) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9148
- method: "typia.assert",
9149
- path: _path + ".published",
9150
- expected: "(Record<string, unknown> | undefined)",
9151
- value: input.published
9152
- }, _errorFactory)) && _ao17(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9153
- method: "typia.assert",
9154
- path: _path + ".published",
9155
- expected: "(Record<string, unknown> | undefined)",
9156
- value: input.published
9157
- }, _errorFactory)) && (undefined === input.remote || ("object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9158
- method: "typia.assert",
9159
- path: _path + ".remote",
9160
- expected: "(Record<string, unknown> | undefined)",
9161
- value: input.remote
9162
- }, _errorFactory)) && _ao17(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9163
- method: "typia.assert",
9164
- path: _path + ".remote",
9165
- expected: "(Record<string, unknown> | undefined)",
9166
- value: input.remote
9167
- }, _errorFactory)) && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9168
- method: "typia.assert",
9169
- path: _path + ".error",
9170
- expected: "(__type.o11 | null | undefined)",
9171
- value: input.error
9172
- }, _errorFactory)) && _ao18(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9173
- method: "typia.assert",
9174
- path: _path + ".error",
9175
- expected: "(__type.o11 | null | undefined)",
9176
- value: input.error
9177
- }, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9178
- method: "typia.assert",
9179
- path: _path + ".messages",
9180
- expected: "(Array<Message> | undefined)",
9181
- value: input.messages
9182
- }, _errorFactory)) && input.messages.every((elem, _index13) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9183
- method: "typia.assert",
9184
- path: _path + ".messages[" + _index13 + "]",
9185
- expected: "Message",
9186
- value: elem
9187
- }, _errorFactory)) && _ao19(elem, _path + ".messages[" + _index13 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9188
- method: "typia.assert",
9189
- path: _path + ".messages[" + _index13 + "]",
9190
- expected: "Message",
9191
- value: elem
9192
- }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9193
- method: "typia.assert",
9194
- path: _path + ".messages",
9195
- expected: "(Array<Message> | undefined)",
9196
- value: input.messages
9197
- }, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9158
+ }, _errorFactory)) && (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9198
9159
  method: "typia.assert",
9199
9160
  path: _path + ".directory",
9200
9161
  expected: "(string | undefined)",
@@ -9209,7 +9170,7 @@ function _assertDomainRecord(domain, input) {
9209
9170
  path: _path + ".renders",
9210
9171
  expected: "(Record<string, FilePublishRender> | undefined)",
9211
9172
  value: input.renders
9212
- }, _errorFactory)) && _ao22(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9173
+ }, _errorFactory)) && _ao19(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9213
9174
  method: "typia.assert",
9214
9175
  path: _path + ".renders",
9215
9176
  expected: "(Record<string, FilePublishRender> | undefined)",
@@ -9219,7 +9180,7 @@ function _assertDomainRecord(domain, input) {
9219
9180
  path: _path + ".draft",
9220
9181
  expected: "(FilePublishDraft | undefined)",
9221
9182
  value: input.draft
9222
- }, _errorFactory)) && _ao26(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9183
+ }, _errorFactory)) && _ao23(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9223
9184
  method: "typia.assert",
9224
9185
  path: _path + ".draft",
9225
9186
  expected: "(FilePublishDraft | undefined)",
@@ -9229,7 +9190,7 @@ function _assertDomainRecord(domain, input) {
9229
9190
  path: _path + ".remote",
9230
9191
  expected: "(FilePublishRemote | undefined)",
9231
9192
  value: input.remote
9232
- }, _errorFactory)) && _ao27(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9193
+ }, _errorFactory)) && _ao24(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9233
9194
  method: "typia.assert",
9234
9195
  path: _path + ".remote",
9235
9196
  expected: "(FilePublishRemote | undefined)",
@@ -9239,16 +9200,11 @@ function _assertDomainRecord(domain, input) {
9239
9200
  path: _path + ".published",
9240
9201
  expected: "(FilePublishPublished | undefined)",
9241
9202
  value: input.published
9242
- }, _errorFactory)) && _ao30(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9203
+ }, _errorFactory)) && _ao27(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9243
9204
  method: "typia.assert",
9244
9205
  path: _path + ".published",
9245
9206
  expected: "(FilePublishPublished | undefined)",
9246
9207
  value: input.published
9247
- }, _errorFactory)) && ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9248
- method: "typia.assert",
9249
- path: _path + ".type",
9250
- expected: "\"file\"",
9251
- value: input.type
9252
9208
  }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9253
9209
  method: "typia.assert",
9254
9210
  path: _path + ".asset",
@@ -9262,36 +9218,36 @@ function _assertDomainRecord(domain, input) {
9262
9218
  }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9263
9219
  method: "typia.assert",
9264
9220
  path: _path + ".render",
9265
- expected: "(PublishRender | undefined)",
9221
+ expected: "(PublishRenderBase | undefined)",
9266
9222
  value: input.render
9267
- }, _errorFactory)) && _ao3(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9223
+ }, _errorFactory)) && _ao2(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9268
9224
  method: "typia.assert",
9269
9225
  path: _path + ".render",
9270
- expected: "(PublishRender | undefined)",
9226
+ expected: "(PublishRenderBase | undefined)",
9271
9227
  value: input.render
9272
9228
  }, _errorFactory)) && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9273
9229
  method: "typia.assert",
9274
9230
  path: _path + ".error",
9275
- expected: "(__type.o11 | null | undefined)",
9231
+ expected: "(__type.o9 | null | undefined)",
9276
9232
  value: input.error
9277
- }, _errorFactory)) && _ao18(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9233
+ }, _errorFactory)) && _ao16(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9278
9234
  method: "typia.assert",
9279
9235
  path: _path + ".error",
9280
- expected: "(__type.o11 | null | undefined)",
9236
+ expected: "(__type.o9 | null | undefined)",
9281
9237
  value: input.error
9282
9238
  }, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9283
9239
  method: "typia.assert",
9284
9240
  path: _path + ".messages",
9285
9241
  expected: "(Array<Message> | undefined)",
9286
9242
  value: input.messages
9287
- }, _errorFactory)) && input.messages.every((elem, _index14) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9243
+ }, _errorFactory)) && input.messages.every((elem, _index12) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9288
9244
  method: "typia.assert",
9289
- path: _path + ".messages[" + _index14 + "]",
9245
+ path: _path + ".messages[" + _index12 + "]",
9290
9246
  expected: "Message",
9291
9247
  value: elem
9292
- }, _errorFactory)) && _ao19(elem, _path + ".messages[" + _index14 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9248
+ }, _errorFactory)) && _ao17(elem, _path + ".messages[" + _index12 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9293
9249
  method: "typia.assert",
9294
- path: _path + ".messages[" + _index14 + "]",
9250
+ path: _path + ".messages[" + _index12 + "]",
9295
9251
  expected: "Message",
9296
9252
  value: elem
9297
9253
  }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
@@ -9299,37 +9255,32 @@ function _assertDomainRecord(domain, input) {
9299
9255
  path: _path + ".messages",
9300
9256
  expected: "(Array<Message> | undefined)",
9301
9257
  value: input.messages
9302
- }, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9258
+ }, _errorFactory)); const _ao19 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9303
9259
  const value = input[key];
9304
9260
  if (undefined === value)
9305
9261
  return true;
9306
9262
  return (null !== value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9307
9263
  method: "typia.assert",
9308
9264
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
9309
- expected: "(ResolvedFilePublishRender | __type.o12 | string)",
9265
+ expected: "(ResolvedFilePublishRender | __type.o10 | string)",
9310
9266
  value: value
9311
9267
  }, _errorFactory)) && (undefined !== value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9312
9268
  method: "typia.assert",
9313
9269
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
9314
- expected: "(ResolvedFilePublishRender | __type.o12 | string)",
9270
+ expected: "(ResolvedFilePublishRender | __type.o10 | string)",
9315
9271
  value: value
9316
9272
  }, _errorFactory)) && ("string" === typeof value || ("object" === typeof value && null !== value || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9317
9273
  method: "typia.assert",
9318
9274
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
9319
- expected: "(ResolvedFilePublishRender | __type.o12 | string)",
9275
+ expected: "(ResolvedFilePublishRender | __type.o10 | string)",
9320
9276
  value: value
9321
9277
  }, _errorFactory)) && _au0(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9322
9278
  method: "typia.assert",
9323
9279
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
9324
- expected: "(ResolvedFilePublishRender | __type.o12 | string)",
9280
+ expected: "(ResolvedFilePublishRender | __type.o10 | string)",
9325
9281
  value: value
9326
9282
  }, _errorFactory));
9327
- }); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9328
- method: "typia.assert",
9329
- path: _path + ".preset",
9330
- expected: "(string | undefined)",
9331
- value: input.preset
9332
- }, _errorFactory)) && (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9283
+ }); const _ao20 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9333
9284
  method: "typia.assert",
9334
9285
  path: _path + ".name",
9335
9286
  expected: "(string | undefined)",
@@ -9349,6 +9300,11 @@ function _assertDomainRecord(domain, input) {
9349
9300
  path: _path + ".ignoreEmptyScene",
9350
9301
  expected: "(boolean | undefined)",
9351
9302
  value: input.ignoreEmptyScene
9303
+ }, _errorFactory)) && (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9304
+ method: "typia.assert",
9305
+ path: _path + ".preset",
9306
+ expected: "(string | undefined)",
9307
+ value: input.preset
9352
9308
  }, _errorFactory)) && ("string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9353
9309
  method: "typia.assert",
9354
9310
  path: _path + ".type",
@@ -9359,7 +9315,7 @@ function _assertDomainRecord(domain, input) {
9359
9315
  path: _path + ".scene",
9360
9316
  expected: "(RenderSceneObject | undefined)",
9361
9317
  value: input.scene
9362
- }, _errorFactory)) && _ao4(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9318
+ }, _errorFactory)) && _ao3(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9363
9319
  method: "typia.assert",
9364
9320
  path: _path + ".scene",
9365
9321
  expected: "(RenderSceneObject | undefined)",
@@ -9369,37 +9325,37 @@ function _assertDomainRecord(domain, input) {
9369
9325
  path: _path + ".profile",
9370
9326
  expected: "(RenderProfileObject | undefined)",
9371
9327
  value: input.profile
9372
- }, _errorFactory)) && _ao12(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9328
+ }, _errorFactory)) && _ao11(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9373
9329
  method: "typia.assert",
9374
9330
  path: _path + ".profile",
9375
9331
  expected: "(RenderProfileObject | undefined)",
9376
9332
  value: input.profile
9377
- }, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9333
+ }, _errorFactory)); const _ao21 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9378
9334
  method: "typia.assert",
9379
9335
  path: _path + ".__context",
9380
- expected: "__type.o13",
9336
+ expected: "__type.o11",
9381
9337
  value: input.__context
9382
- }, _errorFactory)) && _ao25(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9338
+ }, _errorFactory)) && _ao22(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9383
9339
  method: "typia.assert",
9384
9340
  path: _path + ".__context",
9385
- expected: "__type.o13",
9341
+ expected: "__type.o11",
9386
9342
  value: input.__context
9387
9343
  }, _errorFactory)) && (("object" === typeof input.__returnValue && null !== input.__returnValue || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9388
9344
  method: "typia.assert",
9389
9345
  path: _path + ".__returnValue",
9390
9346
  expected: "ResolvedFilePublishRender",
9391
9347
  value: input.__returnValue
9392
- }, _errorFactory)) && _ao23(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9348
+ }, _errorFactory)) && _ao20(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9393
9349
  method: "typia.assert",
9394
9350
  path: _path + ".__returnValue",
9395
9351
  expected: "ResolvedFilePublishRender",
9396
9352
  value: input.__returnValue
9397
- }, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9353
+ }, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9398
9354
  method: "typia.assert",
9399
9355
  path: _path + ".publish",
9400
9356
  expected: "FilePublishRecord",
9401
9357
  value: input.publish
9402
- }, _errorFactory)) && _ao21(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9358
+ }, _errorFactory)) && _ao18(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9403
9359
  method: "typia.assert",
9404
9360
  path: _path + ".publish",
9405
9361
  expected: "FilePublishRecord",
@@ -9414,7 +9370,7 @@ function _assertDomainRecord(domain, input) {
9414
9370
  path: _path + ".name",
9415
9371
  expected: "string",
9416
9372
  value: input.name
9417
- }, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9373
+ }, _errorFactory)); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9418
9374
  method: "typia.assert",
9419
9375
  path: _path + ".directory",
9420
9376
  expected: "(string | undefined)",
@@ -9424,14 +9380,7 @@ function _assertDomainRecord(domain, input) {
9424
9380
  path: _path + ".filename",
9425
9381
  expected: "(string | undefined)",
9426
9382
  value: input.filename
9427
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
9428
- if (["directory", "filename"].some(prop => key === prop))
9429
- return true;
9430
- const value = input[key];
9431
- if (undefined === value)
9432
- return true;
9433
- return true;
9434
- })); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9383
+ }, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9435
9384
  method: "typia.assert",
9436
9385
  path: _path + ".directory",
9437
9386
  expected: "(string | undefined)",
@@ -9446,19 +9395,12 @@ function _assertDomainRecord(domain, input) {
9446
9395
  path: _path + ".renders",
9447
9396
  expected: "(Record<string, FilePublishRemoteRender> | undefined)",
9448
9397
  value: input.renders
9449
- }, _errorFactory)) && _ao28(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9398
+ }, _errorFactory)) && _ao25(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9450
9399
  method: "typia.assert",
9451
9400
  path: _path + ".renders",
9452
9401
  expected: "(Record<string, FilePublishRemoteRender> | undefined)",
9453
9402
  value: input.renders
9454
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
9455
- if (["directory", "filename", "renders"].some(prop => key === prop))
9456
- return true;
9457
- const value = input[key];
9458
- if (undefined === value)
9459
- return true;
9460
- return true;
9461
- })); const _ao28 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9403
+ }, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9462
9404
  const value = input[key];
9463
9405
  if (undefined === value)
9464
9406
  return true;
@@ -9467,13 +9409,13 @@ function _assertDomainRecord(domain, input) {
9467
9409
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
9468
9410
  expected: "FilePublishRemoteRender",
9469
9411
  value: value
9470
- }, _errorFactory)) && _ao29(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9412
+ }, _errorFactory)) && _ao26(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9471
9413
  method: "typia.assert",
9472
9414
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
9473
9415
  expected: "FilePublishRemoteRender",
9474
9416
  value: value
9475
9417
  }, _errorFactory);
9476
- }); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9418
+ }); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9477
9419
  method: "typia.assert",
9478
9420
  path: _path + ".path",
9479
9421
  expected: "(string | undefined)",
@@ -9483,14 +9425,14 @@ function _assertDomainRecord(domain, input) {
9483
9425
  path: _path + ".messages",
9484
9426
  expected: "(Array<Message> | undefined)",
9485
9427
  value: input.messages
9486
- }, _errorFactory)) && input.messages.every((elem, _index15) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9428
+ }, _errorFactory)) && input.messages.every((elem, _index13) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9487
9429
  method: "typia.assert",
9488
- path: _path + ".messages[" + _index15 + "]",
9430
+ path: _path + ".messages[" + _index13 + "]",
9489
9431
  expected: "Message",
9490
9432
  value: elem
9491
- }, _errorFactory)) && _ao19(elem, _path + ".messages[" + _index15 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9433
+ }, _errorFactory)) && _ao17(elem, _path + ".messages[" + _index13 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9492
9434
  method: "typia.assert",
9493
- path: _path + ".messages[" + _index15 + "]",
9435
+ path: _path + ".messages[" + _index13 + "]",
9494
9436
  expected: "Message",
9495
9437
  value: elem
9496
9438
  }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
@@ -9513,7 +9455,7 @@ function _assertDomainRecord(domain, input) {
9513
9455
  path: _path + ".source",
9514
9456
  expected: "(string | undefined)",
9515
9457
  value: input.source
9516
- }, _errorFactory)); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9458
+ }, _errorFactory)); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9517
9459
  method: "typia.assert",
9518
9460
  path: _path + ".directory",
9519
9461
  expected: "(string | undefined)",
@@ -9523,14 +9465,12 @@ function _assertDomainRecord(domain, input) {
9523
9465
  path: _path + ".filename",
9524
9466
  expected: "string",
9525
9467
  value: input.filename
9526
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
9527
- if (["directory", "filename"].some(prop => key === prop))
9528
- return true;
9529
- const value = input[key];
9530
- if (undefined === value)
9531
- return true;
9532
- return true;
9533
- })); const _ao31 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9468
+ }, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9469
+ method: "typia.assert",
9470
+ path: _path + ".type",
9471
+ expected: "\"file\"",
9472
+ value: input.type
9473
+ }, _errorFactory)) && (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9534
9474
  method: "typia.assert",
9535
9475
  path: _path + ".directory",
9536
9476
  expected: "(string | undefined)",
@@ -9545,7 +9485,7 @@ function _assertDomainRecord(domain, input) {
9545
9485
  path: _path + ".draft",
9546
9486
  expected: "(FilePublishDraft | undefined)",
9547
9487
  value: input.draft
9548
- }, _errorFactory)) && _ao26(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9488
+ }, _errorFactory)) && _ao23(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9549
9489
  method: "typia.assert",
9550
9490
  path: _path + ".draft",
9551
9491
  expected: "(FilePublishDraft | undefined)",
@@ -9555,7 +9495,7 @@ function _assertDomainRecord(domain, input) {
9555
9495
  path: _path + ".remote",
9556
9496
  expected: "(FilePublishRemoteLegacy | undefined)",
9557
9497
  value: input.remote
9558
- }, _errorFactory)) && _ao32(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9498
+ }, _errorFactory)) && _ao29(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9559
9499
  method: "typia.assert",
9560
9500
  path: _path + ".remote",
9561
9501
  expected: "(FilePublishRemoteLegacy | undefined)",
@@ -9565,7 +9505,7 @@ function _assertDomainRecord(domain, input) {
9565
9505
  path: _path + ".published",
9566
9506
  expected: "(FilePublishPublished | undefined)",
9567
9507
  value: input.published
9568
- }, _errorFactory)) && _ao30(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9508
+ }, _errorFactory)) && _ao27(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9569
9509
  method: "typia.assert",
9570
9510
  path: _path + ".published",
9571
9511
  expected: "(FilePublishPublished | undefined)",
@@ -9580,12 +9520,7 @@ function _assertDomainRecord(domain, input) {
9580
9520
  path: _path + ".renders",
9581
9521
  expected: "undefined",
9582
9522
  value: input.renders
9583
- }, _errorFactory))) && ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9584
- method: "typia.assert",
9585
- path: _path + ".type",
9586
- expected: "\"file\"",
9587
- value: input.type
9588
- }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9523
+ }, _errorFactory))) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9589
9524
  method: "typia.assert",
9590
9525
  path: _path + ".asset",
9591
9526
  expected: "(null | string | undefined)",
@@ -9598,36 +9533,36 @@ function _assertDomainRecord(domain, input) {
9598
9533
  }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9599
9534
  method: "typia.assert",
9600
9535
  path: _path + ".render",
9601
- expected: "(PublishRender | undefined)",
9536
+ expected: "(PublishRenderBase | undefined)",
9602
9537
  value: input.render
9603
- }, _errorFactory)) && _ao3(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9538
+ }, _errorFactory)) && _ao2(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9604
9539
  method: "typia.assert",
9605
9540
  path: _path + ".render",
9606
- expected: "(PublishRender | undefined)",
9541
+ expected: "(PublishRenderBase | undefined)",
9607
9542
  value: input.render
9608
9543
  }, _errorFactory)) && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9609
9544
  method: "typia.assert",
9610
9545
  path: _path + ".error",
9611
- expected: "(__type.o11 | null | undefined)",
9546
+ expected: "(__type.o9 | null | undefined)",
9612
9547
  value: input.error
9613
- }, _errorFactory)) && _ao18(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9548
+ }, _errorFactory)) && _ao16(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9614
9549
  method: "typia.assert",
9615
9550
  path: _path + ".error",
9616
- expected: "(__type.o11 | null | undefined)",
9551
+ expected: "(__type.o9 | null | undefined)",
9617
9552
  value: input.error
9618
9553
  }, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9619
9554
  method: "typia.assert",
9620
9555
  path: _path + ".messages",
9621
9556
  expected: "(Array<Message> | undefined)",
9622
9557
  value: input.messages
9623
- }, _errorFactory)) && input.messages.every((elem, _index16) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9558
+ }, _errorFactory)) && input.messages.every((elem, _index14) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9624
9559
  method: "typia.assert",
9625
- path: _path + ".messages[" + _index16 + "]",
9560
+ path: _path + ".messages[" + _index14 + "]",
9626
9561
  expected: "Message",
9627
9562
  value: elem
9628
- }, _errorFactory)) && _ao19(elem, _path + ".messages[" + _index16 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9563
+ }, _errorFactory)) && _ao17(elem, _path + ".messages[" + _index14 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9629
9564
  method: "typia.assert",
9630
- path: _path + ".messages[" + _index16 + "]",
9565
+ path: _path + ".messages[" + _index14 + "]",
9631
9566
  expected: "Message",
9632
9567
  value: elem
9633
9568
  }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
@@ -9635,7 +9570,7 @@ function _assertDomainRecord(domain, input) {
9635
9570
  path: _path + ".messages",
9636
9571
  expected: "(Array<Message> | undefined)",
9637
9572
  value: input.messages
9638
- }, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9573
+ }, _errorFactory)); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9639
9574
  method: "typia.assert",
9640
9575
  path: _path + ".id",
9641
9576
  expected: "(string | undefined)",
@@ -9658,22 +9593,22 @@ function _assertDomainRecord(domain, input) {
9658
9593
  }, _errorFactory)) && (undefined === input.subtitle || ("object" === typeof input.subtitle && null !== input.subtitle || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9659
9594
  method: "typia.assert",
9660
9595
  path: _path + ".subtitle",
9661
- expected: "(__type.o14 | undefined)",
9596
+ expected: "(__type.o12 | undefined)",
9662
9597
  value: input.subtitle
9663
- }, _errorFactory)) && _ao33(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9598
+ }, _errorFactory)) && _ao30(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9664
9599
  method: "typia.assert",
9665
9600
  path: _path + ".subtitle",
9666
- expected: "(__type.o14 | undefined)",
9601
+ expected: "(__type.o12 | undefined)",
9667
9602
  value: input.subtitle
9668
9603
  }, _errorFactory)) && (undefined === input.metafile || ("object" === typeof input.metafile && null !== input.metafile || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9669
9604
  method: "typia.assert",
9670
9605
  path: _path + ".metafile",
9671
- expected: "(__type.o15 | undefined)",
9606
+ expected: "(__type.o13 | undefined)",
9672
9607
  value: input.metafile
9673
- }, _errorFactory)) && _ao34(input.metafile, _path + ".metafile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9608
+ }, _errorFactory)) && _ao31(input.metafile, _path + ".metafile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9674
9609
  method: "typia.assert",
9675
9610
  path: _path + ".metafile",
9676
- expected: "(__type.o15 | undefined)",
9611
+ expected: "(__type.o13 | undefined)",
9677
9612
  value: input.metafile
9678
9613
  }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
9679
9614
  if (["id", "path", "filename", "directory", "subtitle", "metafile"].some(prop => key === prop))
@@ -9682,52 +9617,137 @@ function _assertDomainRecord(domain, input) {
9682
9617
  if (undefined === value)
9683
9618
  return true;
9684
9619
  return true;
9685
- })); const _ao33 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9620
+ })); const _ao30 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9686
9621
  method: "typia.assert",
9687
9622
  path: _path + ".path",
9688
9623
  expected: "string",
9689
9624
  value: input.path
9690
- }, _errorFactory); const _ao34 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9625
+ }, _errorFactory); const _ao31 = (input, _path, _exceptionable = true) => "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9691
9626
  method: "typia.assert",
9692
9627
  path: _path + ".path",
9693
9628
  expected: "string",
9694
9629
  value: input.path
9695
- }, _errorFactory); const _ao35 = (input, _path, _exceptionable = true) => (undefined !== input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9630
+ }, _errorFactory); const _ao32 = (input, _path, _exceptionable = true) => ("youtube" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9696
9631
  method: "typia.assert",
9697
9632
  path: _path + ".type",
9698
- expected: "null",
9633
+ expected: "\"youtube\"",
9699
9634
  value: input.type
9700
- }, _errorFactory)) && (null === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9635
+ }, _errorFactory)) && (undefined === input.draft || ("object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9701
9636
  method: "typia.assert",
9702
- path: _path + ".type",
9703
- expected: "null",
9704
- value: input.type
9637
+ path: _path + ".draft",
9638
+ expected: "(__type.o14 | undefined)",
9639
+ value: input.draft
9640
+ }, _errorFactory)) && _ao33(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9641
+ method: "typia.assert",
9642
+ path: _path + ".draft",
9643
+ expected: "(__type.o14 | undefined)",
9644
+ value: input.draft
9705
9645
  }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9706
9646
  method: "typia.assert",
9707
9647
  path: _path + ".asset",
9708
9648
  expected: "(null | string | undefined)",
9709
9649
  value: input.asset
9650
+ }, _errorFactory)) && (undefined === input.connection || "string" === typeof input.connection || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9651
+ method: "typia.assert",
9652
+ path: _path + ".connection",
9653
+ expected: "(string | undefined)",
9654
+ value: input.connection
9655
+ }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9656
+ method: "typia.assert",
9657
+ path: _path + ".render",
9658
+ expected: "(PublishRenderBase | undefined)",
9659
+ value: input.render
9660
+ }, _errorFactory)) && _ao2(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9661
+ method: "typia.assert",
9662
+ path: _path + ".render",
9663
+ expected: "(PublishRenderBase | undefined)",
9664
+ value: input.render
9665
+ }, _errorFactory)) && true && true && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9666
+ method: "typia.assert",
9667
+ path: _path + ".error",
9668
+ expected: "(__type.o9 | null | undefined)",
9669
+ value: input.error
9670
+ }, _errorFactory)) && _ao16(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9671
+ method: "typia.assert",
9672
+ path: _path + ".error",
9673
+ expected: "(__type.o9 | null | undefined)",
9674
+ value: input.error
9675
+ }, _errorFactory)) && (undefined === input.messages || (Array.isArray(input.messages) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9676
+ method: "typia.assert",
9677
+ path: _path + ".messages",
9678
+ expected: "(Array<Message> | undefined)",
9679
+ value: input.messages
9680
+ }, _errorFactory)) && input.messages.every((elem, _index15) => ("object" === typeof elem && null !== elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9681
+ method: "typia.assert",
9682
+ path: _path + ".messages[" + _index15 + "]",
9683
+ expected: "Message",
9684
+ value: elem
9685
+ }, _errorFactory)) && _ao17(elem, _path + ".messages[" + _index15 + "]", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9686
+ method: "typia.assert",
9687
+ path: _path + ".messages[" + _index15 + "]",
9688
+ expected: "Message",
9689
+ value: elem
9690
+ }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9691
+ method: "typia.assert",
9692
+ path: _path + ".messages",
9693
+ expected: "(Array<Message> | undefined)",
9694
+ value: input.messages
9695
+ }, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => undefined === input.snippet || ("object" === typeof input.snippet && null !== input.snippet && false === Array.isArray(input.snippet) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9696
+ method: "typia.assert",
9697
+ path: _path + ".snippet",
9698
+ expected: "(__type.o15 | undefined)",
9699
+ value: input.snippet
9700
+ }, _errorFactory)) && _ao34(input.snippet, _path + ".snippet", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9701
+ method: "typia.assert",
9702
+ path: _path + ".snippet",
9703
+ expected: "(__type.o15 | undefined)",
9704
+ value: input.snippet
9705
+ }, _errorFactory); const _ao34 = (input, _path, _exceptionable = true) => (undefined === input.title || "string" === typeof input.title || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9706
+ method: "typia.assert",
9707
+ path: _path + ".title",
9708
+ expected: "(string | undefined)",
9709
+ value: input.title
9710
+ }, _errorFactory)) && (undefined === input.tags || (Array.isArray(input.tags) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9711
+ method: "typia.assert",
9712
+ path: _path + ".tags",
9713
+ expected: "(Array<string> | undefined)",
9714
+ value: input.tags
9715
+ }, _errorFactory)) && input.tags.every((elem, _index16) => "string" === typeof elem || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9716
+ method: "typia.assert",
9717
+ path: _path + ".tags[" + _index16 + "]",
9718
+ expected: "string",
9719
+ value: elem
9720
+ }, _errorFactory)) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9721
+ method: "typia.assert",
9722
+ path: _path + ".tags",
9723
+ expected: "(Array<string> | undefined)",
9724
+ value: input.tags
9725
+ }, _errorFactory)) && (undefined === input.description || "string" === typeof input.description || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9726
+ method: "typia.assert",
9727
+ path: _path + ".description",
9728
+ expected: "(string | undefined)",
9729
+ value: input.description
9710
9730
  }, _errorFactory)); const _au0 = (input, _path, _exceptionable = true) => (() => {
9711
9731
  if (undefined !== input.path)
9712
- return _ao23(input, _path, true && _exceptionable);
9732
+ return _ao20(input, _path, true && _exceptionable);
9713
9733
  else if (undefined !== input.__context)
9714
- return _ao24(input, _path, true && _exceptionable);
9734
+ return _ao21(input, _path, true && _exceptionable);
9715
9735
  else
9716
9736
  return __typia_transform__assertGuard._assertGuard(_exceptionable, {
9717
9737
  method: "typia.assert",
9718
9738
  path: _path,
9719
- expected: "(ResolvedFilePublishRender | __type.o12)",
9739
+ expected: "(ResolvedFilePublishRender | __type.o10)",
9720
9740
  value: input
9721
9741
  }, _errorFactory);
9722
9742
  })(); const _au1 = (input, _path, _exceptionable = true) => (() => {
9723
- if ("youtube" === input.type)
9743
+ if (undefined !== input.type && null === input.type)
9724
9744
  return _ao0(input, _path, true && _exceptionable);
9725
9745
  else if ("facebook" === input.type)
9726
- return _ao20(input, _path, true && _exceptionable);
9727
- else if (undefined !== input.type && null === input.type)
9728
- return _ao35(input, _path, true && _exceptionable);
9746
+ return _ao1(input, _path, true && _exceptionable);
9747
+ else if ("youtube" === input.type)
9748
+ return _ao32(input, _path, true && _exceptionable);
9729
9749
  else
9730
- return _ao31(input, _path, false && _exceptionable) || _ao21(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9750
+ return _ao28(input, _path, false && _exceptionable) || _ao18(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9731
9751
  method: "typia.assert",
9732
9752
  path: _path,
9733
9753
  expected: "(FilePublishRecordLegacy | FilePublishRecord)",
@@ -9752,78 +9772,38 @@ function _assertDomainRecord(domain, input) {
9752
9772
  }; })()(input);
9753
9773
  }
9754
9774
  case ":publish.stats?": {
9755
- 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))) && (undefined === input.retrieved || "object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) && _io2(input.retrieved)) && (undefined === input.defaults || "object" === typeof input.defaults && null !== input.defaults && false === Array.isArray(input.defaults) && _io2(input.defaults)); const _io1 = input => "number" === typeof input.level && "string" === typeof input.code && "string" === typeof input.msg; const _io2 = input => Object.keys(input).every(key => {
9756
- const value = input[key];
9757
- if (undefined === value)
9758
- return true;
9759
- return true;
9760
- }); const _io3 = 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))) && (undefined === input.retrieved || "object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) && _io2(input.retrieved)) && (undefined === input.defaults || "object" === typeof input.defaults && null !== input.defaults && false === Array.isArray(input.defaults) && _io2(input.defaults)); const _io4 = input => (undefined === input.retrieved || "object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) && _io5(input.retrieved)) && (undefined === input.defaults || "object" === typeof input.defaults && null !== input.defaults && _io8(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 _io5 = 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) && _io6(input.renders)) && Object.keys(input).every(key => {
9761
- if (["filename", "directory", "renders"].some(prop => key === prop))
9762
- return true;
9763
- const value = input[key];
9764
- if (undefined === value)
9765
- return true;
9766
- return true;
9767
- }); const _io6 = input => Object.keys(input).every(key => {
9775
+ 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.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 _io3 = input => (undefined === input.retrieved || "object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) && _io4(input.retrieved)) && (undefined === input.defaults || "object" === typeof input.defaults && null !== input.defaults && _io7(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 _io4 = 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) && _io5(input.renders)); const _io5 = input => Object.keys(input).every(key => {
9768
9776
  const value = input[key];
9769
9777
  if (undefined === value)
9770
9778
  return true;
9771
- return "object" === typeof value && null !== value && _io7(value);
9772
- }); const _io7 = input => "string" === typeof input.path && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash); const _io8 = input => "string" === typeof input.directory && "string" === typeof input.filename && ("object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io9(input.renders)) && Object.keys(input).every(key => {
9773
- if (["directory", "filename", "renders"].some(prop => key === prop))
9774
- return true;
9775
- const value = input[key];
9776
- if (undefined === value)
9777
- return true;
9778
- return true;
9779
- }); const _io9 = input => Object.keys(input).every(key => {
9779
+ return "object" === typeof value && null !== value && _io6(value);
9780
+ }); const _io6 = input => "string" === typeof input.path && (undefined === input.size || "number" === typeof input.size) && (undefined === input.hash || "string" === typeof input.hash); const _io7 = input => "string" === typeof input.directory && "string" === typeof input.filename && ("object" === typeof input.renders && null !== input.renders && false === Array.isArray(input.renders) && _io8(input.renders)); const _io8 = input => Object.keys(input).every(key => {
9780
9781
  const value = input[key];
9781
9782
  if (undefined === value)
9782
9783
  return true;
9783
9784
  return null !== value && undefined !== value && ("string" === typeof value || "object" === typeof value && null !== value && _iu0(value));
9784
- }); const _io10 = input => (undefined === input.preset || "string" === typeof input.preset) && (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) && "string" === typeof input.type && (undefined === input.scene || "object" === typeof input.scene && null !== input.scene && false === Array.isArray(input.scene) && _io11(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io19(input.profile)); const _io11 = 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) && _io12(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) && _io13(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io16(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) && _io18(input.transcribe)); const _io12 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io13 = input => Object.keys(input).every(key => {
9785
- const value = input[key];
9786
- if (undefined === value)
9787
- return true;
9788
- return "object" === typeof value && null !== value && false === Array.isArray(value) && _io14(value);
9789
- }); const _io14 = 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) && _io15(input.styleOverrides)); const _io15 = 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.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 _io16 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io17(input.crop); const _io17 = 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 _io18 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io19 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io20(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io21(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io22(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) && _io23(input.subtitle))); const _io20 = input => "string" === typeof input.engine; const _io21 = input => "string" === typeof input.language; const _io22 = 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 _io23 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io24 = input => "object" === typeof input.__context && null !== input.__context && _io25(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io10(input.__returnValue)); const _io25 = input => "object" === typeof input.publish && null !== input.publish && _io26(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io26 = 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) && _io9(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)) && "file" === input.type && (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) && Object.keys(input).every(key => {
9790
- if (["directory", "filename"].some(prop => key === prop))
9791
- return true;
9785
+ }); const _io9 = 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) && _io10(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io18(input.profile)); const _io10 = 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) && _io11(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) && _io12(input.subtitleTracks)) && (undefined === input.video || "object" === typeof input.video && null !== input.video && false === Array.isArray(input.video) && _io15(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) && _io17(input.transcribe)); const _io11 = input => (undefined === input.type || "string" === typeof input.type) && (null === input.file || undefined === input.file || "string" === typeof input.file); const _io12 = input => Object.keys(input).every(key => {
9792
9786
  const value = input[key];
9793
9787
  if (undefined === value)
9794
9788
  return true;
9795
- return true;
9796
- }); 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)) && Object.keys(input).every(key => {
9797
- if (["directory", "filename", "renders"].some(prop => key === prop))
9798
- return true;
9789
+ return "object" === typeof value && null !== value && false === Array.isArray(value) && _io13(value);
9790
+ }); const _io13 = 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) && _io14(input.styleOverrides)); const _io14 = 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.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 _io15 = input => undefined === input.crop || "object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) && _io16(input.crop); const _io16 = 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 _io17 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.pan || Array.isArray(input.pan) && input.pan.every(elem => "number" === typeof elem)); const _io18 = input => "string" === typeof input.format && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && _io19(input.transcribe)) && (undefined === input.translate || "object" === typeof input.translate && null !== input.translate && _io20(input.translate)) && (undefined === input.audio || "object" === typeof input.audio && null !== input.audio && false === Array.isArray(input.audio) && _io21(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) && _io22(input.subtitle))); const _io19 = input => "string" === typeof input.engine; const _io20 = input => "string" === typeof input.language; const _io21 = 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 _io22 = input => (undefined === input.lang || "string" === typeof input.lang) && (undefined === input.style || "string" === typeof input.style); const _io23 = input => "object" === typeof input.__context && null !== input.__context && _io24(input.__context) && ("object" === typeof input.__returnValue && null !== input.__returnValue && _io9(input.__returnValue)); const _io24 = input => "object" === typeof input.publish && null !== input.publish && _io25(input.publish) && "string" === typeof input.directory && "string" === typeof input.name; const _io25 = input => "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) && _io8(input.renders)) && (undefined === input.draft || "object" === typeof input.draft && null !== input.draft && false === Array.isArray(input.draft) && _io26(input.draft)) && (undefined === input.remote || "object" === typeof input.remote && null !== input.remote && false === Array.isArray(input.remote) && _io27(input.remote)) && (undefined === input.published || "object" === typeof input.published && null !== input.published && _io30(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 && _io31(input.render)) && (null === input.error || undefined === input.error || "object" === typeof input.error && null !== input.error && _io32(input.error)) && (undefined === input.messages || Array.isArray(input.messages) && input.messages.every(elem => "object" === typeof elem && null !== elem && _io1(elem))); const _io26 = input => (undefined === input.directory || "string" === typeof input.directory) && (undefined === input.filename || "string" === typeof input.filename); const _io27 = 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) && _io28(input.renders)); const _io28 = input => Object.keys(input).every(key => {
9799
9791
  const value = input[key];
9800
9792
  if (undefined === value)
9801
9793
  return true;
9802
- return true;
9803
- }); const _io29 = input => Object.keys(input).every(key => {
9804
- const value = input[key];
9805
- if (undefined === value)
9806
- return true;
9807
- return "object" === typeof value && null !== value && false === Array.isArray(value) && _io30(value);
9808
- }); 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 && Object.keys(input).every(key => {
9809
- if (["directory", "filename"].some(prop => key === prop))
9810
- return true;
9811
- const value = input[key];
9812
- if (undefined === value)
9813
- return true;
9814
- return true;
9815
- }); 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) && _io11(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io19(input.profile)); const _io33 = input => "string" === typeof input.method; const _iu0 = input => (() => {
9794
+ return "object" === typeof value && null !== value && false === Array.isArray(value) && _io29(value);
9795
+ }); const _io29 = 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 _io30 = input => (undefined === input.directory || "string" === typeof input.directory) && "string" === typeof input.filename; const _io31 = 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) && _io10(input.scene)) && (undefined === input.profile || "object" === typeof input.profile && null !== input.profile && _io18(input.profile)); const _io32 = input => "string" === typeof input.method; const _iu0 = input => (() => {
9816
9796
  if (undefined !== input.path)
9817
- return _io10(input);
9797
+ return _io9(input);
9818
9798
  else if (undefined !== input.__context)
9819
- return _io24(input);
9799
+ return _io23(input);
9820
9800
  else
9821
9801
  return false;
9822
9802
  })(); const _iu1 = input => (() => {
9823
- if (_io4(input))
9824
- return _io4(input);
9825
9803
  if (_io3(input))
9826
9804
  return _io3(input);
9805
+ if (_io2(input))
9806
+ return _io2(input);
9827
9807
  if (_io0(input))
9828
9808
  return _io0(input);
9829
9809
  return false;
@@ -9857,27 +9837,7 @@ function _assertDomainRecord(domain, input) {
9857
9837
  path: _path + ".messages",
9858
9838
  expected: "(Array<Message> | undefined)",
9859
9839
  value: input.messages
9860
- }, _errorFactory)) && (undefined === input.retrieved || ("object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9861
- method: "typia.assert",
9862
- path: _path + ".retrieved",
9863
- expected: "(Record<string, unknown> | undefined)",
9864
- value: input.retrieved
9865
- }, _errorFactory)) && _ao2(input.retrieved, _path + ".retrieved", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9866
- method: "typia.assert",
9867
- path: _path + ".retrieved",
9868
- expected: "(Record<string, unknown> | undefined)",
9869
- value: input.retrieved
9870
- }, _errorFactory)) && (undefined === input.defaults || ("object" === typeof input.defaults && null !== input.defaults && false === Array.isArray(input.defaults) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9871
- method: "typia.assert",
9872
- path: _path + ".defaults",
9873
- expected: "(Record<string, unknown> | undefined)",
9874
- value: input.defaults
9875
- }, _errorFactory)) && _ao2(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9876
- method: "typia.assert",
9877
- path: _path + ".defaults",
9878
- expected: "(Record<string, unknown> | undefined)",
9879
- value: input.defaults
9880
- }, _errorFactory)); const _ao1 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9840
+ }, _errorFactory)) && true && true; const _ao1 = (input, _path, _exceptionable = true) => ("number" === typeof input.level || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9881
9841
  method: "typia.assert",
9882
9842
  path: _path + ".level",
9883
9843
  expected: "number",
@@ -9892,12 +9852,7 @@ function _assertDomainRecord(domain, input) {
9892
9852
  path: _path + ".msg",
9893
9853
  expected: "string",
9894
9854
  value: input.msg
9895
- }, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9896
- const value = input[key];
9897
- if (undefined === value)
9898
- return true;
9899
- return true;
9900
- }); const _ao3 = (input, _path, _exceptionable = true) => (undefined === input.status || "string" === typeof input.status || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9855
+ }, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => (undefined === input.status || "string" === typeof input.status || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9901
9856
  method: "typia.assert",
9902
9857
  path: _path + ".status",
9903
9858
  expected: "(string | undefined)",
@@ -9927,32 +9882,12 @@ function _assertDomainRecord(domain, input) {
9927
9882
  path: _path + ".messages",
9928
9883
  expected: "(Array<Message> | undefined)",
9929
9884
  value: input.messages
9930
- }, _errorFactory)) && (undefined === input.retrieved || ("object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9931
- method: "typia.assert",
9932
- path: _path + ".retrieved",
9933
- expected: "(Record<string, unknown> | undefined)",
9934
- value: input.retrieved
9935
- }, _errorFactory)) && _ao2(input.retrieved, _path + ".retrieved", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9936
- method: "typia.assert",
9937
- path: _path + ".retrieved",
9938
- expected: "(Record<string, unknown> | undefined)",
9939
- value: input.retrieved
9940
- }, _errorFactory)) && (undefined === input.defaults || ("object" === typeof input.defaults && null !== input.defaults && false === Array.isArray(input.defaults) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9941
- method: "typia.assert",
9942
- path: _path + ".defaults",
9943
- expected: "(Record<string, unknown> | undefined)",
9944
- value: input.defaults
9945
- }, _errorFactory)) && _ao2(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9946
- method: "typia.assert",
9947
- path: _path + ".defaults",
9948
- expected: "(Record<string, unknown> | undefined)",
9949
- value: input.defaults
9950
- }, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (undefined === input.retrieved || ("object" === typeof input.retrieved && null !== input.retrieved && false === Array.isArray(input.retrieved) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9885
+ }, _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, {
9951
9886
  method: "typia.assert",
9952
9887
  path: _path + ".retrieved",
9953
9888
  expected: "(FilePublishRetrieved | undefined)",
9954
9889
  value: input.retrieved
9955
- }, _errorFactory)) && _ao5(input.retrieved, _path + ".retrieved", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9890
+ }, _errorFactory)) && _ao4(input.retrieved, _path + ".retrieved", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9956
9891
  method: "typia.assert",
9957
9892
  path: _path + ".retrieved",
9958
9893
  expected: "(FilePublishRetrieved | undefined)",
@@ -9962,7 +9897,7 @@ function _assertDomainRecord(domain, input) {
9962
9897
  path: _path + ".defaults",
9963
9898
  expected: "(FilePublishDefaults | undefined)",
9964
9899
  value: input.defaults
9965
- }, _errorFactory)) && _ao8(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9900
+ }, _errorFactory)) && _ao7(input.defaults, _path + ".defaults", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9966
9901
  method: "typia.assert",
9967
9902
  path: _path + ".defaults",
9968
9903
  expected: "(FilePublishDefaults | undefined)",
@@ -9997,7 +9932,7 @@ function _assertDomainRecord(domain, input) {
9997
9932
  path: _path + ".messages",
9998
9933
  expected: "(Array<Message> | undefined)",
9999
9934
  value: input.messages
10000
- }, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => (undefined === input.filename || "string" === typeof input.filename || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9935
+ }, _errorFactory)); const _ao4 = (input, _path, _exceptionable = true) => (undefined === input.filename || "string" === typeof input.filename || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10001
9936
  method: "typia.assert",
10002
9937
  path: _path + ".filename",
10003
9938
  expected: "(string | undefined)",
@@ -10012,19 +9947,12 @@ function _assertDomainRecord(domain, input) {
10012
9947
  path: _path + ".renders",
10013
9948
  expected: "(Record<string, FilePublishRetrievedRender> | undefined)",
10014
9949
  value: input.renders
10015
- }, _errorFactory)) && _ao6(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9950
+ }, _errorFactory)) && _ao5(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10016
9951
  method: "typia.assert",
10017
9952
  path: _path + ".renders",
10018
9953
  expected: "(Record<string, FilePublishRetrievedRender> | undefined)",
10019
9954
  value: input.renders
10020
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
10021
- if (["filename", "directory", "renders"].some(prop => key === prop))
10022
- return true;
10023
- const value = input[key];
10024
- if (undefined === value)
10025
- return true;
10026
- return true;
10027
- })); const _ao6 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
9955
+ }, _errorFactory)); const _ao5 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10028
9956
  const value = input[key];
10029
9957
  if (undefined === value)
10030
9958
  return true;
@@ -10033,13 +9961,13 @@ function _assertDomainRecord(domain, input) {
10033
9961
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
10034
9962
  expected: "FilePublishRetrievedRender",
10035
9963
  value: value
10036
- }, _errorFactory)) && _ao7(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9964
+ }, _errorFactory)) && _ao6(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10037
9965
  method: "typia.assert",
10038
9966
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
10039
9967
  expected: "FilePublishRetrievedRender",
10040
9968
  value: value
10041
9969
  }, _errorFactory);
10042
- }); const _ao7 = (input, _path, _exceptionable = true) => ("string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9970
+ }); const _ao6 = (input, _path, _exceptionable = true) => ("string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10043
9971
  method: "typia.assert",
10044
9972
  path: _path + ".path",
10045
9973
  expected: "string",
@@ -10054,7 +9982,7 @@ function _assertDomainRecord(domain, input) {
10054
9982
  path: _path + ".hash",
10055
9983
  expected: "(string | undefined)",
10056
9984
  value: input.hash
10057
- }, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => ("string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
9985
+ }, _errorFactory)); const _ao7 = (input, _path, _exceptionable = true) => ("string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10058
9986
  method: "typia.assert",
10059
9987
  path: _path + ".directory",
10060
9988
  expected: "string",
@@ -10069,19 +9997,12 @@ function _assertDomainRecord(domain, input) {
10069
9997
  path: _path + ".renders",
10070
9998
  expected: "Record<string, FilePublishRender>",
10071
9999
  value: input.renders
10072
- }, _errorFactory)) && _ao9(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10000
+ }, _errorFactory)) && _ao8(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10073
10001
  method: "typia.assert",
10074
10002
  path: _path + ".renders",
10075
10003
  expected: "Record<string, FilePublishRender>",
10076
10004
  value: input.renders
10077
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
10078
- if (["directory", "filename", "renders"].some(prop => key === prop))
10079
- return true;
10080
- const value = input[key];
10081
- if (undefined === value)
10082
- return true;
10083
- return true;
10084
- })); const _ao9 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10005
+ }, _errorFactory)); const _ao8 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10085
10006
  const value = input[key];
10086
10007
  if (undefined === value)
10087
10008
  return true;
@@ -10106,12 +10027,7 @@ function _assertDomainRecord(domain, input) {
10106
10027
  expected: "(ResolvedFilePublishRender | __type.o9 | string)",
10107
10028
  value: value
10108
10029
  }, _errorFactory));
10109
- }); const _ao10 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10110
- method: "typia.assert",
10111
- path: _path + ".preset",
10112
- expected: "(string | undefined)",
10113
- value: input.preset
10114
- }, _errorFactory)) && (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10030
+ }); const _ao9 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10115
10031
  method: "typia.assert",
10116
10032
  path: _path + ".name",
10117
10033
  expected: "(string | undefined)",
@@ -10131,6 +10047,11 @@ function _assertDomainRecord(domain, input) {
10131
10047
  path: _path + ".ignoreEmptyScene",
10132
10048
  expected: "(boolean | undefined)",
10133
10049
  value: input.ignoreEmptyScene
10050
+ }, _errorFactory)) && (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10051
+ method: "typia.assert",
10052
+ path: _path + ".preset",
10053
+ expected: "(string | undefined)",
10054
+ value: input.preset
10134
10055
  }, _errorFactory)) && ("string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10135
10056
  method: "typia.assert",
10136
10057
  path: _path + ".type",
@@ -10141,7 +10062,7 @@ function _assertDomainRecord(domain, input) {
10141
10062
  path: _path + ".scene",
10142
10063
  expected: "(RenderSceneObject | undefined)",
10143
10064
  value: input.scene
10144
- }, _errorFactory)) && _ao11(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10065
+ }, _errorFactory)) && _ao10(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10145
10066
  method: "typia.assert",
10146
10067
  path: _path + ".scene",
10147
10068
  expected: "(RenderSceneObject | undefined)",
@@ -10151,12 +10072,12 @@ function _assertDomainRecord(domain, input) {
10151
10072
  path: _path + ".profile",
10152
10073
  expected: "(RenderProfileObject | undefined)",
10153
10074
  value: input.profile
10154
- }, _errorFactory)) && _ao19(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10075
+ }, _errorFactory)) && _ao18(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10155
10076
  method: "typia.assert",
10156
10077
  path: _path + ".profile",
10157
10078
  expected: "(RenderProfileObject | undefined)",
10158
10079
  value: input.profile
10159
- }, _errorFactory)); const _ao11 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10080
+ }, _errorFactory)); const _ao10 = (input, _path, _exceptionable = true) => (undefined === input.id || "string" === typeof input.id || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10160
10081
  method: "typia.assert",
10161
10082
  path: _path + ".id",
10162
10083
  expected: "(string | undefined)",
@@ -10171,7 +10092,7 @@ function _assertDomainRecord(domain, input) {
10171
10092
  path: _path + ".input",
10172
10093
  expected: "(__type | null | undefined)",
10173
10094
  value: input.input
10174
- }, _errorFactory)) && _ao12(input.input, _path + ".input", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10095
+ }, _errorFactory)) && _ao11(input.input, _path + ".input", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10175
10096
  method: "typia.assert",
10176
10097
  path: _path + ".input",
10177
10098
  expected: "(__type | null | undefined)",
@@ -10191,7 +10112,7 @@ function _assertDomainRecord(domain, input) {
10191
10112
  path: _path + ".subtitleTracks",
10192
10113
  expected: "(__type.o1 | undefined)",
10193
10114
  value: input.subtitleTracks
10194
- }, _errorFactory)) && _ao13(input.subtitleTracks, _path + ".subtitleTracks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10115
+ }, _errorFactory)) && _ao12(input.subtitleTracks, _path + ".subtitleTracks", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10195
10116
  method: "typia.assert",
10196
10117
  path: _path + ".subtitleTracks",
10197
10118
  expected: "(__type.o1 | undefined)",
@@ -10201,7 +10122,7 @@ function _assertDomainRecord(domain, input) {
10201
10122
  path: _path + ".video",
10202
10123
  expected: "(__type.o3 | undefined)",
10203
10124
  value: input.video
10204
- }, _errorFactory)) && _ao16(input.video, _path + ".video", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10125
+ }, _errorFactory)) && _ao15(input.video, _path + ".video", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10205
10126
  method: "typia.assert",
10206
10127
  path: _path + ".video",
10207
10128
  expected: "(__type.o3 | undefined)",
@@ -10221,12 +10142,12 @@ function _assertDomainRecord(domain, input) {
10221
10142
  path: _path + ".transcribe",
10222
10143
  expected: "(__type.o5 | undefined)",
10223
10144
  value: input.transcribe
10224
- }, _errorFactory)) && _ao18(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10145
+ }, _errorFactory)) && _ao17(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10225
10146
  method: "typia.assert",
10226
10147
  path: _path + ".transcribe",
10227
10148
  expected: "(__type.o5 | undefined)",
10228
10149
  value: input.transcribe
10229
- }, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10150
+ }, _errorFactory)); const _ao11 = (input, _path, _exceptionable = true) => (undefined === input.type || "string" === typeof input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10230
10151
  method: "typia.assert",
10231
10152
  path: _path + ".type",
10232
10153
  expected: "(string | undefined)",
@@ -10236,7 +10157,7 @@ function _assertDomainRecord(domain, input) {
10236
10157
  path: _path + ".file",
10237
10158
  expected: "(null | string | undefined)",
10238
10159
  value: input.file
10239
- }, _errorFactory)); const _ao13 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10160
+ }, _errorFactory)); const _ao12 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10240
10161
  const value = input[key];
10241
10162
  if (undefined === value)
10242
10163
  return true;
@@ -10245,13 +10166,13 @@ function _assertDomainRecord(domain, input) {
10245
10166
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
10246
10167
  expected: "__type.o2",
10247
10168
  value: value
10248
- }, _errorFactory)) && _ao14(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10169
+ }, _errorFactory)) && _ao13(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10249
10170
  method: "typia.assert",
10250
10171
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
10251
10172
  expected: "__type.o2",
10252
10173
  value: value
10253
10174
  }, _errorFactory);
10254
- }); const _ao14 = (input, _path, _exceptionable = true) => (null === input.style || undefined === input.style || "string" === typeof input.style || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10175
+ }); const _ao13 = (input, _path, _exceptionable = true) => (null === input.style || undefined === input.style || "string" === typeof input.style || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10255
10176
  method: "typia.assert",
10256
10177
  path: _path + ".style",
10257
10178
  expected: "(null | string | undefined)",
@@ -10261,12 +10182,12 @@ function _assertDomainRecord(domain, input) {
10261
10182
  path: _path + ".styleOverrides",
10262
10183
  expected: "(SubtitleStyle | undefined)",
10263
10184
  value: input.styleOverrides
10264
- }, _errorFactory)) && _ao15(input.styleOverrides, _path + ".styleOverrides", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10185
+ }, _errorFactory)) && _ao14(input.styleOverrides, _path + ".styleOverrides", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10265
10186
  method: "typia.assert",
10266
10187
  path: _path + ".styleOverrides",
10267
10188
  expected: "(SubtitleStyle | undefined)",
10268
10189
  value: input.styleOverrides
10269
- }, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10190
+ }, _errorFactory)); const _ao14 = (input, _path, _exceptionable = true) => (undefined === input.name || "string" === typeof input.name || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10270
10191
  method: "typia.assert",
10271
10192
  path: _path + ".name",
10272
10193
  expected: "(string | undefined)",
@@ -10381,17 +10302,17 @@ function _assertDomainRecord(domain, input) {
10381
10302
  path: _path + ".encoding",
10382
10303
  expected: "(string | undefined)",
10383
10304
  value: input.encoding
10384
- }, _errorFactory)); const _ao16 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10305
+ }, _errorFactory)); const _ao15 = (input, _path, _exceptionable = true) => undefined === input.crop || ("object" === typeof input.crop && null !== input.crop && false === Array.isArray(input.crop) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10385
10306
  method: "typia.assert",
10386
10307
  path: _path + ".crop",
10387
10308
  expected: "(__type.o4 | undefined)",
10388
10309
  value: input.crop
10389
- }, _errorFactory)) && _ao17(input.crop, _path + ".crop", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10310
+ }, _errorFactory)) && _ao16(input.crop, _path + ".crop", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10390
10311
  method: "typia.assert",
10391
10312
  path: _path + ".crop",
10392
10313
  expected: "(__type.o4 | undefined)",
10393
10314
  value: input.crop
10394
- }, _errorFactory); const _ao17 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10315
+ }, _errorFactory); const _ao16 = (input, _path, _exceptionable = true) => (undefined === input.x || "number" === typeof input.x || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10395
10316
  method: "typia.assert",
10396
10317
  path: _path + ".x",
10397
10318
  expected: "(number | undefined)",
@@ -10411,7 +10332,7 @@ function _assertDomainRecord(domain, input) {
10411
10332
  path: _path + ".height",
10412
10333
  expected: "(number | undefined)",
10413
10334
  value: input.height
10414
- }, _errorFactory)); const _ao18 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10335
+ }, _errorFactory)); const _ao17 = (input, _path, _exceptionable = true) => (undefined === input.language || "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10415
10336
  method: "typia.assert",
10416
10337
  path: _path + ".language",
10417
10338
  expected: "(string | undefined)",
@@ -10431,7 +10352,7 @@ function _assertDomainRecord(domain, input) {
10431
10352
  path: _path + ".pan",
10432
10353
  expected: "(Array<number> | undefined)",
10433
10354
  value: input.pan
10434
- }, _errorFactory)); const _ao19 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10355
+ }, _errorFactory)); const _ao18 = (input, _path, _exceptionable = true) => ("string" === typeof input.format || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10435
10356
  method: "typia.assert",
10436
10357
  path: _path + ".format",
10437
10358
  expected: "string",
@@ -10441,7 +10362,7 @@ function _assertDomainRecord(domain, input) {
10441
10362
  path: _path + ".transcribe",
10442
10363
  expected: "(__type.o6 | undefined)",
10443
10364
  value: input.transcribe
10444
- }, _errorFactory)) && _ao20(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10365
+ }, _errorFactory)) && _ao19(input.transcribe, _path + ".transcribe", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10445
10366
  method: "typia.assert",
10446
10367
  path: _path + ".transcribe",
10447
10368
  expected: "(__type.o6 | undefined)",
@@ -10451,7 +10372,7 @@ function _assertDomainRecord(domain, input) {
10451
10372
  path: _path + ".translate",
10452
10373
  expected: "(__type.o7 | undefined)",
10453
10374
  value: input.translate
10454
- }, _errorFactory)) && _ao21(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10375
+ }, _errorFactory)) && _ao20(input.translate, _path + ".translate", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10455
10376
  method: "typia.assert",
10456
10377
  path: _path + ".translate",
10457
10378
  expected: "(__type.o7 | undefined)",
@@ -10461,7 +10382,7 @@ function _assertDomainRecord(domain, input) {
10461
10382
  path: _path + ".audio",
10462
10383
  expected: "(__type.o8 | undefined)",
10463
10384
  value: input.audio
10464
- }, _errorFactory)) && _ao22(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10385
+ }, _errorFactory)) && _ao21(input.audio, _path + ".audio", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10465
10386
  method: "typia.assert",
10466
10387
  path: _path + ".audio",
10467
10388
  expected: "(__type.o8 | undefined)",
@@ -10491,22 +10412,22 @@ function _assertDomainRecord(domain, input) {
10491
10412
  path: _path + ".subtitle",
10492
10413
  expected: "(SubtitleProfile | string | undefined)",
10493
10414
  value: input.subtitle
10494
- }, _errorFactory)) && _ao23(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10415
+ }, _errorFactory)) && _ao22(input.subtitle, _path + ".subtitle", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10495
10416
  method: "typia.assert",
10496
10417
  path: _path + ".subtitle",
10497
10418
  expected: "(SubtitleProfile | string | undefined)",
10498
10419
  value: input.subtitle
10499
- }, _errorFactory))); const _ao20 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10420
+ }, _errorFactory))); const _ao19 = (input, _path, _exceptionable = true) => "string" === typeof input.engine || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10500
10421
  method: "typia.assert",
10501
10422
  path: _path + ".engine",
10502
10423
  expected: "string",
10503
10424
  value: input.engine
10504
- }, _errorFactory); const _ao21 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10425
+ }, _errorFactory); const _ao20 = (input, _path, _exceptionable = true) => "string" === typeof input.language || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10505
10426
  method: "typia.assert",
10506
10427
  path: _path + ".language",
10507
10428
  expected: "string",
10508
10429
  value: input.language
10509
- }, _errorFactory); const _ao22 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10430
+ }, _errorFactory); const _ao21 = (input, _path, _exceptionable = true) => (undefined === input.codec || "string" === typeof input.codec || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10510
10431
  method: "typia.assert",
10511
10432
  path: _path + ".codec",
10512
10433
  expected: "(string | undefined)",
@@ -10526,7 +10447,7 @@ function _assertDomainRecord(domain, input) {
10526
10447
  path: _path + ".split",
10527
10448
  expected: "(boolean | undefined)",
10528
10449
  value: input.split
10529
- }, _errorFactory)); const _ao23 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10450
+ }, _errorFactory)); const _ao22 = (input, _path, _exceptionable = true) => (undefined === input.lang || "string" === typeof input.lang || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10530
10451
  method: "typia.assert",
10531
10452
  path: _path + ".lang",
10532
10453
  expected: "(string | undefined)",
@@ -10536,12 +10457,12 @@ function _assertDomainRecord(domain, input) {
10536
10457
  path: _path + ".style",
10537
10458
  expected: "(string | undefined)",
10538
10459
  value: input.style
10539
- }, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10460
+ }, _errorFactory)); const _ao23 = (input, _path, _exceptionable = true) => (("object" === typeof input.__context && null !== input.__context || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10540
10461
  method: "typia.assert",
10541
10462
  path: _path + ".__context",
10542
10463
  expected: "__type.o10",
10543
10464
  value: input.__context
10544
- }, _errorFactory)) && _ao25(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10465
+ }, _errorFactory)) && _ao24(input.__context, _path + ".__context", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10545
10466
  method: "typia.assert",
10546
10467
  path: _path + ".__context",
10547
10468
  expected: "__type.o10",
@@ -10551,17 +10472,17 @@ function _assertDomainRecord(domain, input) {
10551
10472
  path: _path + ".__returnValue",
10552
10473
  expected: "ResolvedFilePublishRender",
10553
10474
  value: input.__returnValue
10554
- }, _errorFactory)) && _ao10(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10475
+ }, _errorFactory)) && _ao9(input.__returnValue, _path + ".__returnValue", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10555
10476
  method: "typia.assert",
10556
10477
  path: _path + ".__returnValue",
10557
10478
  expected: "ResolvedFilePublishRender",
10558
10479
  value: input.__returnValue
10559
- }, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10480
+ }, _errorFactory)); const _ao24 = (input, _path, _exceptionable = true) => (("object" === typeof input.publish && null !== input.publish || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10560
10481
  method: "typia.assert",
10561
10482
  path: _path + ".publish",
10562
10483
  expected: "FilePublishRecord",
10563
10484
  value: input.publish
10564
- }, _errorFactory)) && _ao26(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10485
+ }, _errorFactory)) && _ao25(input.publish, _path + ".publish", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10565
10486
  method: "typia.assert",
10566
10487
  path: _path + ".publish",
10567
10488
  expected: "FilePublishRecord",
@@ -10576,7 +10497,12 @@ function _assertDomainRecord(domain, input) {
10576
10497
  path: _path + ".name",
10577
10498
  expected: "string",
10578
10499
  value: input.name
10579
- }, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10500
+ }, _errorFactory)); const _ao25 = (input, _path, _exceptionable = true) => ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10501
+ method: "typia.assert",
10502
+ path: _path + ".type",
10503
+ expected: "\"file\"",
10504
+ value: input.type
10505
+ }, _errorFactory)) && (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10580
10506
  method: "typia.assert",
10581
10507
  path: _path + ".directory",
10582
10508
  expected: "(string | undefined)",
@@ -10591,7 +10517,7 @@ function _assertDomainRecord(domain, input) {
10591
10517
  path: _path + ".renders",
10592
10518
  expected: "(Record<string, FilePublishRender> | undefined)",
10593
10519
  value: input.renders
10594
- }, _errorFactory)) && _ao9(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10520
+ }, _errorFactory)) && _ao8(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10595
10521
  method: "typia.assert",
10596
10522
  path: _path + ".renders",
10597
10523
  expected: "(Record<string, FilePublishRender> | undefined)",
@@ -10601,7 +10527,7 @@ function _assertDomainRecord(domain, input) {
10601
10527
  path: _path + ".draft",
10602
10528
  expected: "(FilePublishDraft | undefined)",
10603
10529
  value: input.draft
10604
- }, _errorFactory)) && _ao27(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10530
+ }, _errorFactory)) && _ao26(input.draft, _path + ".draft", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10605
10531
  method: "typia.assert",
10606
10532
  path: _path + ".draft",
10607
10533
  expected: "(FilePublishDraft | undefined)",
@@ -10611,7 +10537,7 @@ function _assertDomainRecord(domain, input) {
10611
10537
  path: _path + ".remote",
10612
10538
  expected: "(FilePublishRemote | undefined)",
10613
10539
  value: input.remote
10614
- }, _errorFactory)) && _ao28(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10540
+ }, _errorFactory)) && _ao27(input.remote, _path + ".remote", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10615
10541
  method: "typia.assert",
10616
10542
  path: _path + ".remote",
10617
10543
  expected: "(FilePublishRemote | undefined)",
@@ -10621,16 +10547,11 @@ function _assertDomainRecord(domain, input) {
10621
10547
  path: _path + ".published",
10622
10548
  expected: "(FilePublishPublished | undefined)",
10623
10549
  value: input.published
10624
- }, _errorFactory)) && _ao31(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10550
+ }, _errorFactory)) && _ao30(input.published, _path + ".published", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10625
10551
  method: "typia.assert",
10626
10552
  path: _path + ".published",
10627
10553
  expected: "(FilePublishPublished | undefined)",
10628
10554
  value: input.published
10629
- }, _errorFactory)) && ("file" === input.type || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10630
- method: "typia.assert",
10631
- path: _path + ".type",
10632
- expected: "\"file\"",
10633
- value: input.type
10634
10555
  }, _errorFactory)) && (null === input.asset || undefined === input.asset || "string" === typeof input.asset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10635
10556
  method: "typia.assert",
10636
10557
  path: _path + ".asset",
@@ -10644,19 +10565,19 @@ function _assertDomainRecord(domain, input) {
10644
10565
  }, _errorFactory)) && (undefined === input.render || ("object" === typeof input.render && null !== input.render || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10645
10566
  method: "typia.assert",
10646
10567
  path: _path + ".render",
10647
- expected: "(PublishRender | undefined)",
10568
+ expected: "(PublishRenderBase | undefined)",
10648
10569
  value: input.render
10649
- }, _errorFactory)) && _ao32(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10570
+ }, _errorFactory)) && _ao31(input.render, _path + ".render", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10650
10571
  method: "typia.assert",
10651
10572
  path: _path + ".render",
10652
- expected: "(PublishRender | undefined)",
10573
+ expected: "(PublishRenderBase | undefined)",
10653
10574
  value: input.render
10654
10575
  }, _errorFactory)) && (null === input.error || undefined === input.error || ("object" === typeof input.error && null !== input.error || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10655
10576
  method: "typia.assert",
10656
10577
  path: _path + ".error",
10657
10578
  expected: "(__type.o11 | null | undefined)",
10658
10579
  value: input.error
10659
- }, _errorFactory)) && _ao33(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10580
+ }, _errorFactory)) && _ao32(input.error, _path + ".error", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10660
10581
  method: "typia.assert",
10661
10582
  path: _path + ".error",
10662
10583
  expected: "(__type.o11 | null | undefined)",
@@ -10681,7 +10602,7 @@ function _assertDomainRecord(domain, input) {
10681
10602
  path: _path + ".messages",
10682
10603
  expected: "(Array<Message> | undefined)",
10683
10604
  value: input.messages
10684
- }, _errorFactory)); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10605
+ }, _errorFactory)); const _ao26 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10685
10606
  method: "typia.assert",
10686
10607
  path: _path + ".directory",
10687
10608
  expected: "(string | undefined)",
@@ -10691,14 +10612,7 @@ function _assertDomainRecord(domain, input) {
10691
10612
  path: _path + ".filename",
10692
10613
  expected: "(string | undefined)",
10693
10614
  value: input.filename
10694
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
10695
- if (["directory", "filename"].some(prop => key === prop))
10696
- return true;
10697
- const value = input[key];
10698
- if (undefined === value)
10699
- return true;
10700
- return true;
10701
- })); const _ao28 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10615
+ }, _errorFactory)); const _ao27 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10702
10616
  method: "typia.assert",
10703
10617
  path: _path + ".directory",
10704
10618
  expected: "(string | undefined)",
@@ -10713,19 +10627,12 @@ function _assertDomainRecord(domain, input) {
10713
10627
  path: _path + ".renders",
10714
10628
  expected: "(Record<string, FilePublishRemoteRender> | undefined)",
10715
10629
  value: input.renders
10716
- }, _errorFactory)) && _ao29(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10630
+ }, _errorFactory)) && _ao28(input.renders, _path + ".renders", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10717
10631
  method: "typia.assert",
10718
10632
  path: _path + ".renders",
10719
10633
  expected: "(Record<string, FilePublishRemoteRender> | undefined)",
10720
10634
  value: input.renders
10721
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
10722
- if (["directory", "filename", "renders"].some(prop => key === prop))
10723
- return true;
10724
- const value = input[key];
10725
- if (undefined === value)
10726
- return true;
10727
- return true;
10728
- })); const _ao29 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10635
+ }, _errorFactory)); const _ao28 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10729
10636
  const value = input[key];
10730
10637
  if (undefined === value)
10731
10638
  return true;
@@ -10734,13 +10641,13 @@ function _assertDomainRecord(domain, input) {
10734
10641
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
10735
10642
  expected: "FilePublishRemoteRender",
10736
10643
  value: value
10737
- }, _errorFactory)) && _ao30(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10644
+ }, _errorFactory)) && _ao29(value, _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key), true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10738
10645
  method: "typia.assert",
10739
10646
  path: _path + __typia_transform__accessExpressionAsString._accessExpressionAsString(key),
10740
10647
  expected: "FilePublishRemoteRender",
10741
10648
  value: value
10742
10649
  }, _errorFactory);
10743
- }); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10650
+ }); const _ao29 = (input, _path, _exceptionable = true) => (undefined === input.path || "string" === typeof input.path || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10744
10651
  method: "typia.assert",
10745
10652
  path: _path + ".path",
10746
10653
  expected: "(string | undefined)",
@@ -10780,7 +10687,7 @@ function _assertDomainRecord(domain, input) {
10780
10687
  path: _path + ".source",
10781
10688
  expected: "(string | undefined)",
10782
10689
  value: input.source
10783
- }, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10690
+ }, _errorFactory)); const _ao30 = (input, _path, _exceptionable = true) => (undefined === input.directory || "string" === typeof input.directory || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10784
10691
  method: "typia.assert",
10785
10692
  path: _path + ".directory",
10786
10693
  expected: "(string | undefined)",
@@ -10790,14 +10697,7 @@ function _assertDomainRecord(domain, input) {
10790
10697
  path: _path + ".filename",
10791
10698
  expected: "string",
10792
10699
  value: input.filename
10793
- }, _errorFactory)) && (false === _exceptionable || Object.keys(input).every(key => {
10794
- if (["directory", "filename"].some(prop => key === prop))
10795
- return true;
10796
- const value = input[key];
10797
- if (undefined === value)
10798
- return true;
10799
- return true;
10800
- })); const _ao32 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10700
+ }, _errorFactory)); const _ao31 = (input, _path, _exceptionable = true) => (undefined === input.preset || "string" === typeof input.preset || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10801
10701
  method: "typia.assert",
10802
10702
  path: _path + ".preset",
10803
10703
  expected: "(string | undefined)",
@@ -10812,7 +10712,7 @@ function _assertDomainRecord(domain, input) {
10812
10712
  path: _path + ".scene",
10813
10713
  expected: "(RenderSceneObject | undefined)",
10814
10714
  value: input.scene
10815
- }, _errorFactory)) && _ao11(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10715
+ }, _errorFactory)) && _ao10(input.scene, _path + ".scene", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10816
10716
  method: "typia.assert",
10817
10717
  path: _path + ".scene",
10818
10718
  expected: "(RenderSceneObject | undefined)",
@@ -10822,21 +10722,21 @@ function _assertDomainRecord(domain, input) {
10822
10722
  path: _path + ".profile",
10823
10723
  expected: "(RenderProfileObject | undefined)",
10824
10724
  value: input.profile
10825
- }, _errorFactory)) && _ao19(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10725
+ }, _errorFactory)) && _ao18(input.profile, _path + ".profile", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10826
10726
  method: "typia.assert",
10827
10727
  path: _path + ".profile",
10828
10728
  expected: "(RenderProfileObject | undefined)",
10829
10729
  value: input.profile
10830
- }, _errorFactory)); const _ao33 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10730
+ }, _errorFactory)); const _ao32 = (input, _path, _exceptionable = true) => "string" === typeof input.method || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10831
10731
  method: "typia.assert",
10832
10732
  path: _path + ".method",
10833
10733
  expected: "string",
10834
10734
  value: input.method
10835
10735
  }, _errorFactory); const _au0 = (input, _path, _exceptionable = true) => (() => {
10836
10736
  if (undefined !== input.path)
10837
- return _ao10(input, _path, true && _exceptionable);
10737
+ return _ao9(input, _path, true && _exceptionable);
10838
10738
  else if (undefined !== input.__context)
10839
- return _ao24(input, _path, true && _exceptionable);
10739
+ return _ao23(input, _path, true && _exceptionable);
10840
10740
  else
10841
10741
  return __typia_transform__assertGuard._assertGuard(_exceptionable, {
10842
10742
  method: "typia.assert",
@@ -10844,10 +10744,10 @@ function _assertDomainRecord(domain, input) {
10844
10744
  expected: "(ResolvedFilePublishRender | __type.o9)",
10845
10745
  value: input
10846
10746
  }, _errorFactory);
10847
- })(); const _au1 = (input, _path, _exceptionable = true) => _ao4(input, _path, false && _exceptionable) || _ao3(input, _path, false && _exceptionable) || _ao0(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10747
+ })(); const _au1 = (input, _path, _exceptionable = true) => _ao3(input, _path, false && _exceptionable) || _ao2(input, _path, false && _exceptionable) || _ao0(input, _path, false && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10848
10748
  method: "typia.assert",
10849
10749
  path: _path,
10850
- expected: "(FilePublishStatsRecord | FacebookPublishStatsRecord | YoutubePublishStatsRecord)",
10750
+ expected: "(FilePublishStatsRecord | FacebookPublishStatsRecord | PublishStatsRecordBase)",
10851
10751
  value: input
10852
10752
  }, _errorFactory); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _iu1(input); let _errorFactory; return (input, errorFactory) => {
10853
10753
  if (false === __is(input)) {
@@ -10855,12 +10755,12 @@ function _assertDomainRecord(domain, input) {
10855
10755
  ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
10856
10756
  method: "typia.assert",
10857
10757
  path: _path + "",
10858
- expected: "(FacebookPublishStatsRecord | FilePublishStatsRecord | YoutubePublishStatsRecord)",
10758
+ expected: "(FacebookPublishStatsRecord | FilePublishStatsRecord | PublishStatsRecordBase)",
10859
10759
  value: input
10860
10760
  }, _errorFactory)) && _au1(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
10861
10761
  method: "typia.assert",
10862
10762
  path: _path + "",
10863
- expected: "(FacebookPublishStatsRecord | FilePublishStatsRecord | YoutubePublishStatsRecord)",
10763
+ expected: "(FacebookPublishStatsRecord | FilePublishStatsRecord | PublishStatsRecordBase)",
10864
10764
  value: input
10865
10765
  }, _errorFactory))(input, "$input", true);
10866
10766
  }
@@ -10873,12 +10773,7 @@ function _assertDomainRecord(domain, input) {
10873
10773
  if (undefined === value)
10874
10774
  return true;
10875
10775
  return "object" === typeof value && null !== value && _io1(value);
10876
- }); const _io1 = input => "string" === typeof input.rpcId && ("object" === typeof input.rpcData && null !== input.rpcData && false === Array.isArray(input.rpcData) && _io2(input.rpcData)); const _io2 = input => Object.keys(input).every(key => {
10877
- const value = input[key];
10878
- if (undefined === value)
10879
- return true;
10880
- return true;
10881
- }); const _ao0 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10776
+ }); const _io1 = input => "string" === typeof input.rpcId && true; const _ao0 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10882
10777
  const value = input[key];
10883
10778
  if (undefined === value)
10884
10779
  return true;
@@ -10898,33 +10793,18 @@ function _assertDomainRecord(domain, input) {
10898
10793
  path: _path + ".rpcId",
10899
10794
  expected: "string",
10900
10795
  value: input.rpcId
10901
- }, _errorFactory)) && (("object" === typeof input.rpcData && null !== input.rpcData && false === Array.isArray(input.rpcData) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10902
- method: "typia.assert",
10903
- path: _path + ".rpcData",
10904
- expected: "Record<string, unknown>",
10905
- value: input.rpcData
10906
- }, _errorFactory)) && _ao2(input.rpcData, _path + ".rpcData", true && _exceptionable) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
10907
- method: "typia.assert",
10908
- path: _path + ".rpcData",
10909
- expected: "Record<string, unknown>",
10910
- value: input.rpcData
10911
- }, _errorFactory)); const _ao2 = (input, _path, _exceptionable = true) => false === _exceptionable || Object.keys(input).every(key => {
10912
- const value = input[key];
10913
- if (undefined === value)
10914
- return true;
10915
- return true;
10916
- }); const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
10796
+ }, _errorFactory)) && true; const __is = input => "object" === typeof input && null !== input && false === Array.isArray(input) && _io0(input); let _errorFactory; return (input, errorFactory) => {
10917
10797
  if (false === __is(input)) {
10918
10798
  _errorFactory = errorFactory;
10919
10799
  ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
10920
10800
  method: "typia.assert",
10921
10801
  path: _path + "",
10922
- expected: "PublishDomainMethodsRecord",
10802
+ expected: "PublishDomainMethodsRecordBase",
10923
10803
  value: input
10924
10804
  }, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
10925
10805
  method: "typia.assert",
10926
10806
  path: _path + "",
10927
- expected: "PublishDomainMethodsRecord",
10807
+ expected: "PublishDomainMethodsRecordBase",
10928
10808
  value: input
10929
10809
  }, _errorFactory))(input, "$input", true);
10930
10810
  }
@@ -10938,12 +10818,12 @@ function _assertDomainRecord(domain, input) {
10938
10818
  ((input, _path, _exceptionable = true) => ("object" === typeof input && null !== input && false === Array.isArray(input) || __typia_transform__assertGuard._assertGuard(true, {
10939
10819
  method: "typia.assert",
10940
10820
  path: _path + "",
10941
- expected: "PublishDomainAcceptsProvidedRecord",
10821
+ expected: "PublishDomainAcceptsProvidedRecordBase",
10942
10822
  value: input
10943
10823
  }, _errorFactory)) && _ao0(input, _path + "", true) || __typia_transform__assertGuard._assertGuard(true, {
10944
10824
  method: "typia.assert",
10945
10825
  path: _path + "",
10946
- expected: "PublishDomainAcceptsProvidedRecord",
10826
+ expected: "PublishDomainAcceptsProvidedRecordBase",
10947
10827
  value: input
10948
10828
  }, _errorFactory))(input, "$input", true);
10949
10829
  }
@@ -13296,7 +13176,7 @@ function _assertDomainRecord(domain, input) {
13296
13176
  if (undefined === value)
13297
13177
  return true;
13298
13178
  return "object" === typeof value && null !== value && false === Array.isArray(value) && _io31(value);
13299
- }); const _io42 = 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) && _io43(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) && _io44(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) && _io45(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) && _io48(elem))) && (undefined === input.download || "boolean" === typeof input.download) && (undefined === input.editMode || "object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) && _io49(input.editMode)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io50(input.transcribe)) && (null !== input.openCommand && (undefined === input.openCommand || "string" === typeof input.openCommand || "object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) && _io54(input.openCommand))); const _io43 = input => (undefined === input.mask || "boolean" === typeof input.mask) && (undefined === input.actionSafe || "boolean" === typeof input.actionSafe) && (undefined === input.titleSafe || "boolean" === typeof input.titleSafe); const _io44 = 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 _io45 = 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) && _io46(elem))) && (undefined === input.colors || Array.isArray(input.colors) && input.colors.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io47(elem))); const _io46 = 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 _io47 = input => (null === input.label || undefined === input.label || "string" === typeof input.label) && (null === input.color || undefined === input.color || "string" === typeof input.color); const _io48 = input => (undefined === input.label || "string" === typeof input.label) && (undefined === input.aspectRatio || "string" === typeof input.aspectRatio); const _io49 = 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 _io50 = input => undefined === input.subtitleDisclaimer || "object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) && _io51(input.subtitleDisclaimer); const _io51 = input => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable) && (undefined === input.defaultValue || "object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) && _io52(input.defaultValue)); const _io52 = 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) && _io53(elem))) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.duration || "number" === typeof input.duration); const _io53 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.value || "string" === typeof input.value); const _io54 = 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 _io55 = input => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView) && (undefined === input.voiceOver || "object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) && _io56(input.voiceOver)); const _io56 = input => (undefined === input.inputDevice || "string" === typeof input.inputDevice) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.backgroundReductionDb || "number" === typeof input.backgroundReductionDb) && (undefined === input.recordMode || "instant" === input.recordMode || "punchAndRoll" === input.recordMode) && (undefined === input.preRollDuration || "number" === typeof input.preRollDuration); const _io57 = 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 _io58 = input => (undefined === input.folded || "object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) && _io59(input.folded)) && (undefined === input.assets || "object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io60(input.assets)) && (undefined === input.pipeline || "object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) && _io64(input.pipeline)) && (undefined === input.item || "object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) && _io66(input.item)); const _io59 = input => undefined === input.auto || "boolean" === typeof input.auto; const _io60 = input => (undefined === input.story || "object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) && _io61(input.story)) && (undefined === input.note || "object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) && _io63(input.note)); const _io61 = input => undefined === input.excerpt || "object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) && _io62(input.excerpt); const _io62 = input => (undefined === input.maxLines || "number" === typeof input.maxLines) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.comments || "boolean" === typeof input.comments); const _io63 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io64 = input => (undefined === input.search || "object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) && _io65(input.search)) && (undefined === input.sortMode || true === _iv23.has(input.sortMode)); const _io65 = input => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed; const _io66 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io67 = input => undefined === input.fontFamilies || Array.isArray(input.fontFamilies) && input.fontFamilies.every(elem => "string" === typeof elem); const _io68 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.folded || "boolean" === typeof input.folded); const _io69 = input => (undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && _io70(input.adobe)) && (undefined === input.rive || "object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) && _io71(input.rive)); const _io70 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies; const _io71 = input => undefined === input.template || "string" === typeof input.template; const _io72 = input => (undefined === input.collections || "boolean" === typeof input.collections) && (undefined === input.semanticSearch || "boolean" === typeof input.semanticSearch) && (undefined === input.ameRemoteRendering || "boolean" === typeof input.ameRemoteRendering); const _io73 = input => (undefined === input.utils || "boolean" === typeof input.utils) && (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); const _io74 = input => undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io75(input.events); const _io75 = 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) && _io76(input.publishSucceeded)); const _io76 = input => Object.keys(input).every(key => {
13179
+ }); const _io42 = 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) && _io43(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) && _io44(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) && _io45(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) && _io48(elem))) && (undefined === input.download || "boolean" === typeof input.download) && (undefined === input.editMode || "object" === typeof input.editMode && null !== input.editMode && false === Array.isArray(input.editMode) && _io49(input.editMode)) && (undefined === input.transcribe || "object" === typeof input.transcribe && null !== input.transcribe && false === Array.isArray(input.transcribe) && _io50(input.transcribe)) && (null !== input.openCommand && (undefined === input.openCommand || "string" === typeof input.openCommand || "object" === typeof input.openCommand && null !== input.openCommand && false === Array.isArray(input.openCommand) && _io54(input.openCommand))); const _io43 = input => (undefined === input.mask || "boolean" === typeof input.mask) && (undefined === input.actionSafe || "boolean" === typeof input.actionSafe) && (undefined === input.titleSafe || "boolean" === typeof input.titleSafe); const _io44 = 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 _io45 = 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) && _io46(elem))) && (undefined === input.colors || Array.isArray(input.colors) && input.colors.every(elem => "object" === typeof elem && null !== elem && false === Array.isArray(elem) && _io47(elem))); const _io46 = 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 _io47 = input => (null === input.label || undefined === input.label || "string" === typeof input.label) && (null === input.color || undefined === input.color || "string" === typeof input.color); const _io48 = input => (undefined === input.label || "string" === typeof input.label) && (undefined === input.aspectRatio || "string" === typeof input.aspectRatio); const _io49 = 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 _io50 = input => undefined === input.subtitleDisclaimer || "object" === typeof input.subtitleDisclaimer && null !== input.subtitleDisclaimer && false === Array.isArray(input.subtitleDisclaimer) && _io51(input.subtitleDisclaimer); const _io51 = input => (undefined === input.isUserConfigurable || "boolean" === typeof input.isUserConfigurable) && (undefined === input.defaultValue || "object" === typeof input.defaultValue && null !== input.defaultValue && false === Array.isArray(input.defaultValue) && _io52(input.defaultValue)); const _io52 = 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) && _io53(elem))) && (undefined === input.offset || "number" === typeof input.offset) && (undefined === input.duration || "number" === typeof input.duration); const _io53 = input => (undefined === input.language || "string" === typeof input.language) && (undefined === input.value || "string" === typeof input.value); const _io54 = 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 _io55 = input => (undefined === input.thumbnailView || "none" === input.thumbnailView || "filmStrip" === input.thumbnailView || "thumbnail" === input.thumbnailView) && (undefined === input.voiceOver || "object" === typeof input.voiceOver && null !== input.voiceOver && false === Array.isArray(input.voiceOver) && _io56(input.voiceOver)); const _io56 = input => (undefined === input.inputDevice || "string" === typeof input.inputDevice) && (undefined === input.inputGainDb || "number" === typeof input.inputGainDb) && (undefined === input.backgroundReductionDb || "number" === typeof input.backgroundReductionDb) && (undefined === input.recordMode || "instant" === input.recordMode || "punchAndRoll" === input.recordMode) && (undefined === input.preRollDuration || "number" === typeof input.preRollDuration); const _io57 = 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 _io58 = input => (undefined === input.folded || "object" === typeof input.folded && null !== input.folded && false === Array.isArray(input.folded) && _io59(input.folded)) && (undefined === input.assets || "object" === typeof input.assets && null !== input.assets && false === Array.isArray(input.assets) && _io60(input.assets)) && (undefined === input.pipeline || "object" === typeof input.pipeline && null !== input.pipeline && false === Array.isArray(input.pipeline) && _io64(input.pipeline)) && (undefined === input.item || "object" === typeof input.item && null !== input.item && false === Array.isArray(input.item) && _io66(input.item)); const _io59 = input => undefined === input.auto || "boolean" === typeof input.auto; const _io60 = input => (undefined === input.story || "object" === typeof input.story && null !== input.story && false === Array.isArray(input.story) && _io61(input.story)) && (undefined === input.note || "object" === typeof input.note && null !== input.note && false === Array.isArray(input.note) && _io63(input.note)); const _io61 = input => undefined === input.excerpt || "object" === typeof input.excerpt && null !== input.excerpt && false === Array.isArray(input.excerpt) && _io62(input.excerpt); const _io62 = input => (undefined === input.maxLines || "number" === typeof input.maxLines) && (undefined === input.mode || "string" === typeof input.mode) && (undefined === input.comments || "boolean" === typeof input.comments); const _io63 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io64 = input => (undefined === input.search || "object" === typeof input.search && null !== input.search && false === Array.isArray(input.search) && _io65(input.search)) && (undefined === input.sortMode || true === _iv23.has(input.sortMode)); const _io65 = input => undefined === input.maxItemsDisplayed || "number" === typeof input.maxItemsDisplayed; const _io66 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight; const _io67 = input => undefined === input.fontFamilies || Array.isArray(input.fontFamilies) && input.fontFamilies.every(elem => "string" === typeof elem); const _io68 = input => (undefined === input.id || "string" === typeof input.id) && (undefined === input.folded || "boolean" === typeof input.folded); const _io69 = input => (undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && _io70(input.adobe)) && (undefined === input.rive || "object" === typeof input.rive && null !== input.rive && false === Array.isArray(input.rive) && _io71(input.rive)); const _io70 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies; const _io71 = input => undefined === input.template || "string" === typeof input.template; const _io72 = input => (undefined === input.collections || "boolean" === typeof input.collections) && (undefined === input.semanticSearch || "boolean" === typeof input.semanticSearch) && (undefined === input.ameRemoteRendering || "boolean" === typeof input.ameRemoteRendering); const _io73 = input => (undefined === input.utils || "boolean" === typeof input.utils) && (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 _io74 = input => undefined === input.events || "object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) && _io75(input.events); const _io75 = 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) && _io76(input.publishSucceeded)); const _io76 = input => Object.keys(input).every(key => {
13300
13180
  const value = input[key];
13301
13181
  if (undefined === value)
13302
13182
  return true;
@@ -15158,6 +15038,11 @@ function _assertDomainRecord(domain, input) {
15158
15038
  path: _path + ".multiplexWebSockets",
15159
15039
  expected: "(boolean | undefined)",
15160
15040
  value: input.multiplexWebSockets
15041
+ }, _errorFactory)) && (undefined === input.systemHealth || "boolean" === typeof input.systemHealth || __typia_transform__assertGuard._assertGuard(_exceptionable, {
15042
+ method: "typia.assert",
15043
+ path: _path + ".systemHealth",
15044
+ expected: "(boolean | undefined)",
15045
+ value: input.systemHealth
15161
15046
  }, _errorFactory)); const _ao74 = (input, _path, _exceptionable = true) => undefined === input.events || ("object" === typeof input.events && null !== input.events && false === Array.isArray(input.events) || __typia_transform__assertGuard._assertGuard(_exceptionable, {
15162
15047
  method: "typia.assert",
15163
15048
  path: _path + ".events",