@nxtedition/types 1.4.0 → 1.5.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -43,7 +43,7 @@ export const isSettingsRecord = input => {
43
43
  const $io33 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight;
44
44
  const $io34 = input => undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && $io35(input.adobe);
45
45
  const $io35 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies;
46
- const $io36 = 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);
46
+ const $io36 = 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.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu);
47
47
  return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
48
48
  };
49
49
  export const assertSettingsRecord = (input, errorFactory) => {
@@ -91,7 +91,7 @@ export const assertSettingsRecord = (input, errorFactory) => {
91
91
  const $io33 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight;
92
92
  const $io34 = input => undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && $io35(input.adobe);
93
93
  const $io35 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies;
94
- const $io36 = 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);
94
+ const $io36 = 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.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu);
95
95
  return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
96
96
  };
97
97
  if (false === __is(input))
@@ -765,6 +765,22 @@ export const assertSettingsRecord = (input, errorFactory) => {
765
765
  path: _path + ".hlsjs",
766
766
  expected: "(boolean | undefined)",
767
767
  value: input.hlsjs
768
+ }, errorFactory)) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders || $guard(_exceptionable, {
769
+ path: _path + ".resetRenders",
770
+ expected: "(boolean | undefined)",
771
+ value: input.resetRenders
772
+ }, errorFactory)) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus || $guard(_exceptionable, {
773
+ path: _path + ".assetStatus",
774
+ expected: "(boolean | undefined)",
775
+ value: input.assetStatus
776
+ }, errorFactory)) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia || $guard(_exceptionable, {
777
+ path: _path + ".consolidateMedia",
778
+ expected: "(boolean | undefined)",
779
+ value: input.consolidateMedia
780
+ }, errorFactory)) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu || $guard(_exceptionable, {
781
+ path: _path + ".hideInAssetMenu",
782
+ expected: "(boolean | undefined)",
783
+ value: input.hideInAssetMenu
768
784
  }, errorFactory));
769
785
  return ("object" === typeof input && null !== input && false === Array.isArray(input) || $guard(true, {
770
786
  path: _path + "",
@@ -1256,6 +1272,22 @@ export const randomSettingsRecord = generator => {
1256
1272
  hlsjs: $pick([
1257
1273
  () => undefined,
1258
1274
  () => (generator?.boolean ?? $generator.boolean)()
1275
+ ])(),
1276
+ resetRenders: $pick([
1277
+ () => undefined,
1278
+ () => (generator?.boolean ?? $generator.boolean)()
1279
+ ])(),
1280
+ assetStatus: $pick([
1281
+ () => undefined,
1282
+ () => (generator?.boolean ?? $generator.boolean)()
1283
+ ])(),
1284
+ consolidateMedia: $pick([
1285
+ () => undefined,
1286
+ () => (generator?.boolean ?? $generator.boolean)()
1287
+ ])(),
1288
+ hideInAssetMenu: $pick([
1289
+ () => undefined,
1290
+ () => (generator?.boolean ?? $generator.boolean)()
1259
1291
  ])()
1260
1292
  });
1261
1293
  return $ro0();
@@ -1305,7 +1337,7 @@ export const assertGuardSettingsRecord = (input, errorFactory) => {
1305
1337
  const $io33 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight;
1306
1338
  const $io34 = input => undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && $io35(input.adobe);
1307
1339
  const $io35 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies;
1308
- const $io36 = 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);
1340
+ const $io36 = 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.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu);
1309
1341
  return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
1310
1342
  };
1311
1343
  if (false === __is(input))
@@ -1979,6 +2011,22 @@ export const assertGuardSettingsRecord = (input, errorFactory) => {
1979
2011
  path: _path + ".hlsjs",
1980
2012
  expected: "(boolean | undefined)",
1981
2013
  value: input.hlsjs
2014
+ }, errorFactory)) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders || $guard(_exceptionable, {
2015
+ path: _path + ".resetRenders",
2016
+ expected: "(boolean | undefined)",
2017
+ value: input.resetRenders
2018
+ }, errorFactory)) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus || $guard(_exceptionable, {
2019
+ path: _path + ".assetStatus",
2020
+ expected: "(boolean | undefined)",
2021
+ value: input.assetStatus
2022
+ }, errorFactory)) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia || $guard(_exceptionable, {
2023
+ path: _path + ".consolidateMedia",
2024
+ expected: "(boolean | undefined)",
2025
+ value: input.consolidateMedia
2026
+ }, errorFactory)) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu || $guard(_exceptionable, {
2027
+ path: _path + ".hideInAssetMenu",
2028
+ expected: "(boolean | undefined)",
2029
+ value: input.hideInAssetMenu
1982
2030
  }, errorFactory));
1983
2031
  return ("object" === typeof input && null !== input && false === Array.isArray(input) || $guard(true, {
1984
2032
  path: _path + "",
@@ -2034,7 +2082,7 @@ export const stringifySettingsRecord = input => {
2034
2082
  const $io33 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight;
2035
2083
  const $io34 = input => undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && $io35(input.adobe);
2036
2084
  const $io35 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies;
2037
- const $io36 = 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);
2085
+ const $io36 = 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.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu);
2038
2086
  const $string = __typia.json.createStringify.string;
2039
2087
  const $tail = __typia.json.createStringify.tail;
2040
2088
  const $so0 = input => `{${$tail(`${undefined === input.module ? "" : `"module":${undefined !== input.module ? $so1(input.module) : undefined},`}${undefined === input.browser ? "" : `"browser":${undefined !== input.browser ? $so5(input.browser) : undefined},`}${undefined === input.toolbarTags ? "" : `"toolbarTags":${undefined !== input.toolbarTags ? $so7(input.toolbarTags) : undefined},`}${undefined === input.deadlines ? "" : `"deadlines":${undefined !== input.deadlines ? $so8(input.deadlines) : undefined},`}${undefined === input.assignees ? "" : `"assignees":${undefined !== input.assignees ? $so9(input.assignees) : undefined},`}${undefined === input.clock ? "" : `"clock":${undefined !== input.clock ? $so10(input.clock) : undefined},`}${undefined === input.swarm ? "" : `"swarm":${undefined !== input.swarm ? $so11(input.swarm) : undefined},`}${undefined === input.dashboard ? "" : `"dashboard":${undefined !== input.dashboard ? $so12(input.dashboard) : undefined},`}${undefined === input.script ? "" : `"script":${undefined !== input.script ? $so13(input.script) : undefined},`}${undefined === input.rundown ? "" : `"rundown":${undefined !== input.rundown ? $so16(input.rundown) : undefined},`}${undefined === input.gallery ? "" : `"gallery":${undefined !== input.gallery ? $so17(input.gallery) : undefined},`}${undefined === input.history ? "" : `"history":${undefined !== input.history ? input.history : undefined},`}${undefined === input.keymap || "function" === typeof input.keymap ? "" : `"keymap":${undefined !== input.keymap ? JSON.stringify(input.keymap) : undefined},`}${undefined === input.media ? "" : `"media":${undefined !== input.media ? $so18(input.media) : undefined},`}${undefined === input.predefinedTags ? "" : `"predefinedTags":${undefined !== input.predefinedTags ? `[${input.predefinedTags.map(elem => $string(elem)).join(",")}]` : undefined},`}${undefined === input.storyboard ? "" : `"storyboard":${undefined !== input.storyboard ? $so27(input.storyboard) : undefined},`}${undefined === input.plugins ? "" : `"plugins":${undefined !== input.plugins ? $so34(input.plugins) : undefined},`}${undefined === input.crashScreen ? "" : `"crashScreen":${undefined !== input.crashScreen ? input.crashScreen : undefined},`}${undefined === input.debug ? "" : `"debug":${undefined !== input.debug ? input.debug : undefined},`}${undefined === input.flags ? "" : `"flags":${undefined !== input.flags ? $so36(input.flags) : undefined}`}`)}}`;
@@ -2073,7 +2121,7 @@ export const stringifySettingsRecord = input => {
2073
2121
  const $so33 = input => `{${$tail(`${undefined === input.maxHeight ? "" : `"maxHeight":${undefined !== input.maxHeight ? input.maxHeight : undefined}`}`)}}`;
2074
2122
  const $so34 = input => `{${$tail(`${undefined === input.adobe ? "" : `"adobe":${undefined !== input.adobe ? $so35(input.adobe) : undefined}`}`)}}`;
2075
2123
  const $so35 = input => `{${$tail(`${undefined === input.useProxies ? "" : `"useProxies":${undefined !== input.useProxies ? input.useProxies : undefined}`}`)}}`;
2076
- const $so36 = input => `{${$tail(`${undefined === input.utils ? "" : `"utils":${undefined !== input.utils ? input.utils : undefined},`}${undefined === input.history ? "" : `"history":${undefined !== input.history ? input.history : undefined},`}${undefined === input.refs ? "" : `"refs":${undefined !== input.refs ? input.refs : undefined},`}${undefined === input.access ? "" : `"access":${undefined !== input.access ? input.access : undefined},`}${undefined === input.files ? "" : `"files":${undefined !== input.files ? input.files : undefined},`}${undefined === input["export"] ? "" : `"export":${undefined !== input["export"] ? input["export"] : undefined},`}${undefined === input.json ? "" : `"json":${undefined !== input.json ? input.json : undefined},`}${undefined === input.hlsjs ? "" : `"hlsjs":${undefined !== input.hlsjs ? input.hlsjs : undefined}`}`)}}`;
2124
+ const $so36 = input => `{${$tail(`${undefined === input.utils ? "" : `"utils":${undefined !== input.utils ? input.utils : undefined},`}${undefined === input.history ? "" : `"history":${undefined !== input.history ? input.history : undefined},`}${undefined === input.refs ? "" : `"refs":${undefined !== input.refs ? input.refs : undefined},`}${undefined === input.access ? "" : `"access":${undefined !== input.access ? input.access : undefined},`}${undefined === input.files ? "" : `"files":${undefined !== input.files ? input.files : undefined},`}${undefined === input["export"] ? "" : `"export":${undefined !== input["export"] ? input["export"] : undefined},`}${undefined === input.json ? "" : `"json":${undefined !== input.json ? input.json : undefined},`}${undefined === input.hlsjs ? "" : `"hlsjs":${undefined !== input.hlsjs ? input.hlsjs : undefined},`}${undefined === input.resetRenders ? "" : `"resetRenders":${undefined !== input.resetRenders ? input.resetRenders : undefined},`}${undefined === input.assetStatus ? "" : `"assetStatus":${undefined !== input.assetStatus ? input.assetStatus : undefined},`}${undefined === input.consolidateMedia ? "" : `"consolidateMedia":${undefined !== input.consolidateMedia ? input.consolidateMedia : undefined},`}${undefined === input.hideInAssetMenu ? "" : `"hideInAssetMenu":${undefined !== input.hideInAssetMenu ? input.hideInAssetMenu : undefined}`}`)}}`;
2077
2125
  return $so0(input);
2078
2126
  };
2079
2127
  export const assertStringifySettingsRecord = (input, errorFactory) => { const assert = (input, errorFactory) => {
@@ -2121,7 +2169,7 @@ export const assertStringifySettingsRecord = (input, errorFactory) => { const as
2121
2169
  const $io33 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight && !Number.isNaN(input.maxHeight);
2122
2170
  const $io34 = input => undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && $io35(input.adobe);
2123
2171
  const $io35 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies;
2124
- const $io36 = 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);
2172
+ const $io36 = 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.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu);
2125
2173
  return "object" === typeof input && null !== input && false === Array.isArray(input) && $io0(input);
2126
2174
  };
2127
2175
  if (false === __is(input))
@@ -2795,6 +2843,22 @@ export const assertStringifySettingsRecord = (input, errorFactory) => { const as
2795
2843
  path: _path + ".hlsjs",
2796
2844
  expected: "(boolean | undefined)",
2797
2845
  value: input.hlsjs
2846
+ }, errorFactory)) && (undefined === input.resetRenders || "boolean" === typeof input.resetRenders || $guard(_exceptionable, {
2847
+ path: _path + ".resetRenders",
2848
+ expected: "(boolean | undefined)",
2849
+ value: input.resetRenders
2850
+ }, errorFactory)) && (undefined === input.assetStatus || "boolean" === typeof input.assetStatus || $guard(_exceptionable, {
2851
+ path: _path + ".assetStatus",
2852
+ expected: "(boolean | undefined)",
2853
+ value: input.assetStatus
2854
+ }, errorFactory)) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia || $guard(_exceptionable, {
2855
+ path: _path + ".consolidateMedia",
2856
+ expected: "(boolean | undefined)",
2857
+ value: input.consolidateMedia
2858
+ }, errorFactory)) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu || $guard(_exceptionable, {
2859
+ path: _path + ".hideInAssetMenu",
2860
+ expected: "(boolean | undefined)",
2861
+ value: input.hideInAssetMenu
2798
2862
  }, errorFactory));
2799
2863
  return ("object" === typeof input && null !== input && false === Array.isArray(input) || $guard(true, {
2800
2864
  path: _path + "",
@@ -2850,7 +2914,7 @@ export const assertStringifySettingsRecord = (input, errorFactory) => { const as
2850
2914
  const $io33 = input => undefined === input.maxHeight || "number" === typeof input.maxHeight;
2851
2915
  const $io34 = input => undefined === input.adobe || "object" === typeof input.adobe && null !== input.adobe && false === Array.isArray(input.adobe) && $io35(input.adobe);
2852
2916
  const $io35 = input => undefined === input.useProxies || "boolean" === typeof input.useProxies;
2853
- const $io36 = 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);
2917
+ const $io36 = 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.assetStatus || "boolean" === typeof input.assetStatus) && (undefined === input.consolidateMedia || "boolean" === typeof input.consolidateMedia) && (undefined === input.hideInAssetMenu || "boolean" === typeof input.hideInAssetMenu);
2854
2918
  const $string = __typia.json.createAssertStringify.string;
2855
2919
  const $tail = __typia.json.createAssertStringify.tail;
2856
2920
  const $so0 = input => `{${$tail(`${undefined === input.module ? "" : `"module":${undefined !== input.module ? $so1(input.module) : undefined},`}${undefined === input.browser ? "" : `"browser":${undefined !== input.browser ? $so5(input.browser) : undefined},`}${undefined === input.toolbarTags ? "" : `"toolbarTags":${undefined !== input.toolbarTags ? $so7(input.toolbarTags) : undefined},`}${undefined === input.deadlines ? "" : `"deadlines":${undefined !== input.deadlines ? $so8(input.deadlines) : undefined},`}${undefined === input.assignees ? "" : `"assignees":${undefined !== input.assignees ? $so9(input.assignees) : undefined},`}${undefined === input.clock ? "" : `"clock":${undefined !== input.clock ? $so10(input.clock) : undefined},`}${undefined === input.swarm ? "" : `"swarm":${undefined !== input.swarm ? $so11(input.swarm) : undefined},`}${undefined === input.dashboard ? "" : `"dashboard":${undefined !== input.dashboard ? $so12(input.dashboard) : undefined},`}${undefined === input.script ? "" : `"script":${undefined !== input.script ? $so13(input.script) : undefined},`}${undefined === input.rundown ? "" : `"rundown":${undefined !== input.rundown ? $so16(input.rundown) : undefined},`}${undefined === input.gallery ? "" : `"gallery":${undefined !== input.gallery ? $so17(input.gallery) : undefined},`}${undefined === input.history ? "" : `"history":${undefined !== input.history ? input.history : undefined},`}${undefined === input.keymap || "function" === typeof input.keymap ? "" : `"keymap":${undefined !== input.keymap ? JSON.stringify(input.keymap) : undefined},`}${undefined === input.media ? "" : `"media":${undefined !== input.media ? $so18(input.media) : undefined},`}${undefined === input.predefinedTags ? "" : `"predefinedTags":${undefined !== input.predefinedTags ? `[${input.predefinedTags.map(elem => $string(elem)).join(",")}]` : undefined},`}${undefined === input.storyboard ? "" : `"storyboard":${undefined !== input.storyboard ? $so27(input.storyboard) : undefined},`}${undefined === input.plugins ? "" : `"plugins":${undefined !== input.plugins ? $so34(input.plugins) : undefined},`}${undefined === input.crashScreen ? "" : `"crashScreen":${undefined !== input.crashScreen ? input.crashScreen : undefined},`}${undefined === input.debug ? "" : `"debug":${undefined !== input.debug ? input.debug : undefined},`}${undefined === input.flags ? "" : `"flags":${undefined !== input.flags ? $so36(input.flags) : undefined}`}`)}}`;
@@ -2889,6 +2953,6 @@ export const assertStringifySettingsRecord = (input, errorFactory) => { const as
2889
2953
  const $so33 = input => `{${$tail(`${undefined === input.maxHeight ? "" : `"maxHeight":${undefined !== input.maxHeight ? input.maxHeight : undefined}`}`)}}`;
2890
2954
  const $so34 = input => `{${$tail(`${undefined === input.adobe ? "" : `"adobe":${undefined !== input.adobe ? $so35(input.adobe) : undefined}`}`)}}`;
2891
2955
  const $so35 = input => `{${$tail(`${undefined === input.useProxies ? "" : `"useProxies":${undefined !== input.useProxies ? input.useProxies : undefined}`}`)}}`;
2892
- const $so36 = input => `{${$tail(`${undefined === input.utils ? "" : `"utils":${undefined !== input.utils ? input.utils : undefined},`}${undefined === input.history ? "" : `"history":${undefined !== input.history ? input.history : undefined},`}${undefined === input.refs ? "" : `"refs":${undefined !== input.refs ? input.refs : undefined},`}${undefined === input.access ? "" : `"access":${undefined !== input.access ? input.access : undefined},`}${undefined === input.files ? "" : `"files":${undefined !== input.files ? input.files : undefined},`}${undefined === input["export"] ? "" : `"export":${undefined !== input["export"] ? input["export"] : undefined},`}${undefined === input.json ? "" : `"json":${undefined !== input.json ? input.json : undefined},`}${undefined === input.hlsjs ? "" : `"hlsjs":${undefined !== input.hlsjs ? input.hlsjs : undefined}`}`)}}`;
2956
+ const $so36 = input => `{${$tail(`${undefined === input.utils ? "" : `"utils":${undefined !== input.utils ? input.utils : undefined},`}${undefined === input.history ? "" : `"history":${undefined !== input.history ? input.history : undefined},`}${undefined === input.refs ? "" : `"refs":${undefined !== input.refs ? input.refs : undefined},`}${undefined === input.access ? "" : `"access":${undefined !== input.access ? input.access : undefined},`}${undefined === input.files ? "" : `"files":${undefined !== input.files ? input.files : undefined},`}${undefined === input["export"] ? "" : `"export":${undefined !== input["export"] ? input["export"] : undefined},`}${undefined === input.json ? "" : `"json":${undefined !== input.json ? input.json : undefined},`}${undefined === input.hlsjs ? "" : `"hlsjs":${undefined !== input.hlsjs ? input.hlsjs : undefined},`}${undefined === input.resetRenders ? "" : `"resetRenders":${undefined !== input.resetRenders ? input.resetRenders : undefined},`}${undefined === input.assetStatus ? "" : `"assetStatus":${undefined !== input.assetStatus ? input.assetStatus : undefined},`}${undefined === input.consolidateMedia ? "" : `"consolidateMedia":${undefined !== input.consolidateMedia ? input.consolidateMedia : undefined},`}${undefined === input.hideInAssetMenu ? "" : `"hideInAssetMenu":${undefined !== input.hideInAssetMenu ? input.hideInAssetMenu : undefined}`}`)}}`;
2893
2957
  return $so0(input);
2894
2958
  }; return stringify(assert(input, errorFactory)); };
package/dist/index.d.ts CHANGED
@@ -21,4 +21,7 @@ export type Records = {
21
21
  };
22
22
  pick: string[];
23
23
  };
24
+ ":permission": {
25
+ rows: string[];
26
+ };
24
27
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@nxtedition/types",
3
- "version": "1.4.0",
3
+ "version": "1.5.0",
4
4
  "type": "module",
5
5
  "scripts": {
6
6
  "prepare": "ts-patch install && typia patch",