@storm-software/untyped 0.24.56 → 0.24.58

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/bin/untyped.cjs CHANGED
@@ -90,6 +90,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
90
90
  schemaRegistry.add(infoColorSchema, {
91
91
  description: "The informational color of the workspace"
92
92
  });
93
+ var debugColorSchema = z._default(colorSchema, "#8afafc");
94
+ schemaRegistry.add(debugColorSchema, {
95
+ description: "The debug color of the workspace"
96
+ });
93
97
  var warningColorSchema = z._default(colorSchema, "#f3d371");
94
98
  schemaRegistry.add(warningColorSchema, {
95
99
  description: "The warning color of the workspace"
@@ -124,6 +128,7 @@ var darkColorsSchema = z.object({
124
128
  help: helpColorSchema,
125
129
  success: successColorSchema,
126
130
  info: infoColorSchema,
131
+ debug: debugColorSchema,
127
132
  warning: warningColorSchema,
128
133
  danger: dangerColorSchema,
129
134
  fatal: fatalColorSchema,
@@ -141,6 +146,7 @@ var lightColorsSchema = z.object({
141
146
  help: helpColorSchema,
142
147
  success: successColorSchema,
143
148
  info: infoColorSchema,
149
+ debug: debugColorSchema,
144
150
  warning: warningColorSchema,
145
151
  danger: dangerColorSchema,
146
152
  fatal: fatalColorSchema,
@@ -162,6 +168,7 @@ var singleColorsSchema = z.object({
162
168
  help: helpColorSchema,
163
169
  success: successColorSchema,
164
170
  info: infoColorSchema,
171
+ debug: debugColorSchema,
165
172
  warning: warningColorSchema,
166
173
  danger: dangerColorSchema,
167
174
  fatal: fatalColorSchema,
@@ -641,6 +648,7 @@ var DEFAULT_COLOR_CONFIG = {
641
648
  help: "#5C4EE5",
642
649
  success: "#087f5b",
643
650
  info: "#0550ae",
651
+ debug: "#8afafc",
644
652
  warning: "#e3b341",
645
653
  danger: "#D8314A",
646
654
  fatal: "#51070f",
@@ -657,6 +665,7 @@ var DEFAULT_COLOR_CONFIG = {
657
665
  help: "#818cf8",
658
666
  success: "#10b981",
659
667
  info: "#58a6ff",
668
+ debug: "#8afafc",
660
669
  warning: "#f3d371",
661
670
  danger: "#D8314A",
662
671
  fatal: "#a40e26",
@@ -837,7 +846,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
837
846
  return (message) => {
838
847
  console.debug(
839
848
  `
840
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
849
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
841
850
  `
842
851
  );
843
852
  };
@@ -846,7 +855,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
846
855
  return (message) => {
847
856
  console.debug(
848
857
  `
849
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
858
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
850
859
  `
851
860
  );
852
861
  };
@@ -1510,6 +1519,7 @@ var getSingleThemeColorsEnv = (prefix) => {
1510
1519
  help: process.env[`${prefix}HELP`],
1511
1520
  success: process.env[`${prefix}SUCCESS`],
1512
1521
  info: process.env[`${prefix}INFO`],
1522
+ debug: process.env[`${prefix}DEBUG`],
1513
1523
  warning: process.env[`${prefix}WARNING`],
1514
1524
  danger: process.env[`${prefix}DANGER`],
1515
1525
  fatal: process.env[`${prefix}FATAL`],
@@ -1548,6 +1558,7 @@ var getBaseThemeColorsEnv = (prefix) => {
1548
1558
  help: process.env[`${prefix}HELP`],
1549
1559
  success: process.env[`${prefix}SUCCESS`],
1550
1560
  info: process.env[`${prefix}INFO`],
1561
+ debug: process.env[`${prefix}DEBUG`],
1551
1562
  warning: process.env[`${prefix}WARNING`],
1552
1563
  danger: process.env[`${prefix}DANGER`],
1553
1564
  fatal: process.env[`${prefix}FATAL`],
@@ -1849,6 +1860,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
1849
1860
  if (config.info) {
1850
1861
  process.env[`${prefix}INFO`] = config.info;
1851
1862
  }
1863
+ if (config.debug) {
1864
+ process.env[`${prefix}DEBUG`] = config.debug;
1865
+ }
1852
1866
  if (config.warning) {
1853
1867
  process.env[`${prefix}WARNING`] = config.warning;
1854
1868
  }
@@ -1904,6 +1918,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
1904
1918
  if (config.info) {
1905
1919
  process.env[`${prefix}INFO`] = config.info;
1906
1920
  }
1921
+ if (config.debug) {
1922
+ process.env[`${prefix}DEBUG`] = config.debug;
1923
+ }
1907
1924
  if (config.warning) {
1908
1925
  process.env[`${prefix}WARNING`] = config.warning;
1909
1926
  }
package/bin/untyped.js CHANGED
@@ -68,6 +68,10 @@ var infoColorSchema = z._default(colorSchema, "#38bdf8");
68
68
  schemaRegistry.add(infoColorSchema, {
69
69
  description: "The informational color of the workspace"
70
70
  });
71
+ var debugColorSchema = z._default(colorSchema, "#8afafc");
72
+ schemaRegistry.add(debugColorSchema, {
73
+ description: "The debug color of the workspace"
74
+ });
71
75
  var warningColorSchema = z._default(colorSchema, "#f3d371");
72
76
  schemaRegistry.add(warningColorSchema, {
73
77
  description: "The warning color of the workspace"
@@ -102,6 +106,7 @@ var darkColorsSchema = z.object({
102
106
  help: helpColorSchema,
103
107
  success: successColorSchema,
104
108
  info: infoColorSchema,
109
+ debug: debugColorSchema,
105
110
  warning: warningColorSchema,
106
111
  danger: dangerColorSchema,
107
112
  fatal: fatalColorSchema,
@@ -119,6 +124,7 @@ var lightColorsSchema = z.object({
119
124
  help: helpColorSchema,
120
125
  success: successColorSchema,
121
126
  info: infoColorSchema,
127
+ debug: debugColorSchema,
122
128
  warning: warningColorSchema,
123
129
  danger: dangerColorSchema,
124
130
  fatal: fatalColorSchema,
@@ -140,6 +146,7 @@ var singleColorsSchema = z.object({
140
146
  help: helpColorSchema,
141
147
  success: successColorSchema,
142
148
  info: infoColorSchema,
149
+ debug: debugColorSchema,
143
150
  warning: warningColorSchema,
144
151
  danger: dangerColorSchema,
145
152
  fatal: fatalColorSchema,
@@ -619,6 +626,7 @@ var DEFAULT_COLOR_CONFIG = {
619
626
  help: "#5C4EE5",
620
627
  success: "#087f5b",
621
628
  info: "#0550ae",
629
+ debug: "#8afafc",
622
630
  warning: "#e3b341",
623
631
  danger: "#D8314A",
624
632
  fatal: "#51070f",
@@ -635,6 +643,7 @@ var DEFAULT_COLOR_CONFIG = {
635
643
  help: "#818cf8",
636
644
  success: "#10b981",
637
645
  info: "#58a6ff",
646
+ debug: "#8afafc",
638
647
  warning: "#f3d371",
639
648
  danger: "#D8314A",
640
649
  fatal: "#a40e26",
@@ -815,7 +824,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
815
824
  return (message) => {
816
825
  console.debug(
817
826
  `
818
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
827
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
819
828
  `
820
829
  );
821
830
  };
@@ -824,7 +833,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
824
833
  return (message) => {
825
834
  console.debug(
826
835
  `
827
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
836
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
828
837
  `
829
838
  );
830
839
  };
@@ -1488,6 +1497,7 @@ var getSingleThemeColorsEnv = (prefix) => {
1488
1497
  help: process.env[`${prefix}HELP`],
1489
1498
  success: process.env[`${prefix}SUCCESS`],
1490
1499
  info: process.env[`${prefix}INFO`],
1500
+ debug: process.env[`${prefix}DEBUG`],
1491
1501
  warning: process.env[`${prefix}WARNING`],
1492
1502
  danger: process.env[`${prefix}DANGER`],
1493
1503
  fatal: process.env[`${prefix}FATAL`],
@@ -1526,6 +1536,7 @@ var getBaseThemeColorsEnv = (prefix) => {
1526
1536
  help: process.env[`${prefix}HELP`],
1527
1537
  success: process.env[`${prefix}SUCCESS`],
1528
1538
  info: process.env[`${prefix}INFO`],
1539
+ debug: process.env[`${prefix}DEBUG`],
1529
1540
  warning: process.env[`${prefix}WARNING`],
1530
1541
  danger: process.env[`${prefix}DANGER`],
1531
1542
  fatal: process.env[`${prefix}FATAL`],
@@ -1827,6 +1838,9 @@ var setSingleThemeColorsEnv = (prefix, config) => {
1827
1838
  if (config.info) {
1828
1839
  process.env[`${prefix}INFO`] = config.info;
1829
1840
  }
1841
+ if (config.debug) {
1842
+ process.env[`${prefix}DEBUG`] = config.debug;
1843
+ }
1830
1844
  if (config.warning) {
1831
1845
  process.env[`${prefix}WARNING`] = config.warning;
1832
1846
  }
@@ -1882,6 +1896,9 @@ var setBaseThemeColorsEnv = (prefix, config) => {
1882
1896
  if (config.info) {
1883
1897
  process.env[`${prefix}INFO`] = config.info;
1884
1898
  }
1899
+ if (config.debug) {
1900
+ process.env[`${prefix}DEBUG`] = config.debug;
1901
+ }
1885
1902
  if (config.warning) {
1886
1903
  process.env[`${prefix}WARNING`] = config.warning;
1887
1904
  }
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
3
 
4
- var _chunkDUNUNFJ4cjs = require('./chunk-DUNUNFJ4.cjs');
4
+ var _chunkWTLVDXC2cjs = require('./chunk-WTLVDXC2.cjs');
5
5
 
6
6
 
7
7
  var _chunk4G3IU22Jcjs = require('./chunk-4G3IU22J.cjs');
@@ -471,10 +471,10 @@ ${generateTypes(schema, {
471
471
  function generateDeclarationFile(schema, file, generatedBy = "@storm-software/untyped", config) {
472
472
  try {
473
473
  const declarations = _chunk4G3IU22Jcjs.getOutputFile.call(void 0, file, "d.ts");
474
- _chunkDUNUNFJ4cjs.writeTrace.call(void 0, `Writing type declaration file ${declarations}`, config);
474
+ _chunkWTLVDXC2cjs.writeTrace.call(void 0, `Writing type declaration file ${declarations}`, config);
475
475
  return _promises.writeFile.call(void 0, declarations, generateDeclaration(schema, generatedBy));
476
476
  } catch (error) {
477
- _chunkDUNUNFJ4cjs.writeError.call(void 0,
477
+ _chunkWTLVDXC2cjs.writeError.call(void 0,
478
478
  `Error writing declaration file for ${file.name}
479
479
 
480
480
  Error:
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  writeError,
3
3
  writeTrace
4
- } from "./chunk-4U6ARZBV.js";
4
+ } from "./chunk-NSEO2ZUW.js";
5
5
  import {
6
6
  getOutputFile
7
7
  } from "./chunk-NTN5YK5X.js";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  writeError,
3
3
  writeTrace
4
- } from "./chunk-4U6ARZBV.js";
4
+ } from "./chunk-NSEO2ZUW.js";
5
5
  import {
6
6
  getOutputFile
7
7
  } from "./chunk-NTN5YK5X.js";
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  writeError,
3
3
  writeTrace
4
- } from "./chunk-4U6ARZBV.js";
4
+ } from "./chunk-NSEO2ZUW.js";
5
5
  import {
6
6
  getOutputFile
7
7
  } from "./chunk-NTN5YK5X.js";
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
3
 
4
- var _chunkDUNUNFJ4cjs = require('./chunk-DUNUNFJ4.cjs');
4
+ var _chunkWTLVDXC2cjs = require('./chunk-WTLVDXC2.cjs');
5
5
 
6
6
 
7
7
  var _chunk4G3IU22Jcjs = require('./chunk-4G3IU22J.cjs');
@@ -45,10 +45,10 @@ function generateMarkdownLevel(schema, title, level) {
45
45
  function generateMarkdownFile(schema, file, generatedBy = "@storm-software/untyped", config) {
46
46
  try {
47
47
  const declarations = _chunk4G3IU22Jcjs.getOutputFile.call(void 0, file, "md");
48
- _chunkDUNUNFJ4cjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
48
+ _chunkWTLVDXC2cjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
49
49
  return _promises.writeFile.call(void 0, declarations, generateMarkdown(schema, generatedBy));
50
50
  } catch (error) {
51
- _chunkDUNUNFJ4cjs.writeError.call(void 0,
51
+ _chunkWTLVDXC2cjs.writeError.call(void 0,
52
52
  `Error writing markdown file for ${file.name}
53
53
 
54
54
  Error:
@@ -35,6 +35,7 @@ var DEFAULT_COLOR_CONFIG = {
35
35
  help: "#5C4EE5",
36
36
  success: "#087f5b",
37
37
  info: "#0550ae",
38
+ debug: "#8afafc",
38
39
  warning: "#e3b341",
39
40
  danger: "#D8314A",
40
41
  fatal: "#51070f",
@@ -51,6 +52,7 @@ var DEFAULT_COLOR_CONFIG = {
51
52
  help: "#818cf8",
52
53
  success: "#10b981",
53
54
  info: "#58a6ff",
55
+ debug: "#8afafc",
54
56
  warning: "#f3d371",
55
57
  danger: "#D8314A",
56
58
  fatal: "#a40e26",
@@ -204,7 +206,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
204
206
  return (message) => {
205
207
  console.debug(
206
208
  `
207
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
209
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.debug ?? DEFAULT_COLOR_CONFIG.dark.debug)(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
208
210
  `
209
211
  );
210
212
  };
@@ -213,7 +215,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONF
213
215
  return (message) => {
214
216
  console.debug(
215
217
  `
216
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? DEFAULT_COLOR_CONFIG.dark.info)(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
218
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
217
219
  `
218
220
  );
219
221
  };
@@ -1,7 +1,7 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true}); function _optionalChain(ops) { let lastAccessLHS = undefined; let value = ops[0]; let i = 1; while (i < ops.length) { const op = ops[i]; const fn = ops[i + 1]; i += 2; if ((op === 'optionalAccess' || op === 'optionalCall') && value == null) { return undefined; } if (op === 'access' || op === 'optionalAccess') { lastAccessLHS = value; value = fn(value); } else if (op === 'call' || op === 'optionalCall') { value = fn((...args) => value.call(lastAccessLHS, ...args)); lastAccessLHS = undefined; } } return value; }
2
2
 
3
3
 
4
- var _chunkDUNUNFJ4cjs = require('./chunk-DUNUNFJ4.cjs');
4
+ var _chunkWTLVDXC2cjs = require('./chunk-WTLVDXC2.cjs');
5
5
 
6
6
 
7
7
  var _chunk4G3IU22Jcjs = require('./chunk-4G3IU22J.cjs');
@@ -11,10 +11,10 @@ var _promises = require('fs/promises');
11
11
  function generateJsonSchemaFile(schema, file, config) {
12
12
  try {
13
13
  const jsonSchema = _chunk4G3IU22Jcjs.getOutputFile.call(void 0, file, "json");
14
- _chunkDUNUNFJ4cjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
14
+ _chunkWTLVDXC2cjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
15
15
  return _promises.writeFile.call(void 0, jsonSchema, JSON.stringify(schema, null, 2));
16
16
  } catch (error) {
17
- _chunkDUNUNFJ4cjs.writeError.call(void 0,
17
+ _chunkWTLVDXC2cjs.writeError.call(void 0,
18
18
  `Error writing JSON schema file for ${file.name}
19
19
 
20
20
  Error:
@@ -35,6 +35,7 @@ var DEFAULT_COLOR_CONFIG = {
35
35
  help: "#5C4EE5",
36
36
  success: "#087f5b",
37
37
  info: "#0550ae",
38
+ debug: "#8afafc",
38
39
  warning: "#e3b341",
39
40
  danger: "#D8314A",
40
41
  fatal: "#51070f",
@@ -51,6 +52,7 @@ var DEFAULT_COLOR_CONFIG = {
51
52
  help: "#818cf8",
52
53
  success: "#10b981",
53
54
  info: "#58a6ff",
55
+ debug: "#8afafc",
54
56
  warning: "#f3d371",
55
57
  danger: "#D8314A",
56
58
  fatal: "#a40e26",
@@ -204,7 +206,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
204
206
  return (message) => {
205
207
  console.debug(
206
208
  `
207
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
209
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.debug, () => ( DEFAULT_COLOR_CONFIG.dark.debug)))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
208
210
  `
209
211
  );
210
212
  };
@@ -213,7 +215,7 @@ ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, ()
213
215
  return (message) => {
214
216
  console.debug(
215
217
  `
216
- ${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( DEFAULT_COLOR_CONFIG.dark.info)))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
218
+ ${_chalk.gray(formatTimestamp())} ${_chalk.hex("#bbbbbb")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
217
219
  `
218
220
  );
219
221
  };
@@ -5,17 +5,17 @@
5
5
 
6
6
 
7
7
 
8
- var _chunkGXKBPF6Rcjs = require('./chunk-GXKBPF6R.cjs');
8
+ var _chunk7KHQWTWTcjs = require('./chunk-7KHQWTWT.cjs');
9
9
 
10
10
 
11
- var _chunkDNUXDRL4cjs = require('./chunk-DNUXDRL4.cjs');
11
+ var _chunkPKKCO5ICcjs = require('./chunk-PKKCO5IC.cjs');
12
12
 
13
13
 
14
- var _chunkAA55W4PIcjs = require('./chunk-AA55W4PI.cjs');
14
+ var _chunkN64XHFF3cjs = require('./chunk-N64XHFF3.cjs');
15
15
 
16
16
 
17
17
 
18
- var _chunkDUNUNFJ4cjs = require('./chunk-DUNUNFJ4.cjs');
18
+ var _chunkWTLVDXC2cjs = require('./chunk-WTLVDXC2.cjs');
19
19
 
20
20
 
21
21
  var _chunk4G3IU22Jcjs = require('./chunk-4G3IU22J.cjs');
@@ -6627,7 +6627,7 @@ var babelPluginUntyped = function(api, options) {
6627
6627
  if (p2.parent.type !== "ExportNamedDeclaration" && p2.parent.type !== "ExportDefaultDeclaration") {
6628
6628
  return;
6629
6629
  }
6630
- const _getLines = _chunkGXKBPF6Rcjs.cachedFn.call(void 0, () => this.file.code.split("\n"));
6630
+ const _getLines = _chunk7KHQWTWTcjs.cachedFn.call(void 0, () => this.file.code.split("\n"));
6631
6631
  const getCode = (loc) => {
6632
6632
  if (!loc) {
6633
6633
  return "";
@@ -6653,7 +6653,7 @@ var babelPluginUntyped = function(api, options) {
6653
6653
  if (lparam.typeAnnotation) {
6654
6654
  Object.assign(
6655
6655
  arg,
6656
- _chunkGXKBPF6Rcjs.mergedTypes.call(void 0,
6656
+ _chunk7KHQWTWTcjs.mergedTypes.call(void 0,
6657
6657
  arg,
6658
6658
  inferAnnotationType(lparam.typeAnnotation, getCode)
6659
6659
  )
@@ -6662,7 +6662,7 @@ var babelPluginUntyped = function(api, options) {
6662
6662
  if (param.type === "AssignmentPattern") {
6663
6663
  Object.assign(
6664
6664
  arg,
6665
- _chunkGXKBPF6Rcjs.mergedTypes.call(void 0, arg, inferArgType(param.right))
6665
+ _chunk7KHQWTWTcjs.mergedTypes.call(void 0, arg, inferArgType(param.right))
6666
6666
  );
6667
6667
  }
6668
6668
  schema.args = schema.args || [];
@@ -6676,7 +6676,7 @@ var babelPluginUntyped = function(api, options) {
6676
6676
  const { type } = _optionalChain([tag, 'access', _27 => _27.match, 'call', _28 => _28(/^@returns\s+{(?<type>[\S\s]+)}/), 'optionalAccess', _29 => _29.groups]) || {};
6677
6677
  if (type) {
6678
6678
  schema.returns = schema.returns || {};
6679
- Object.assign(schema.returns, _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, type));
6679
+ Object.assign(schema.returns, _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, type));
6680
6680
  return false;
6681
6681
  }
6682
6682
  }
@@ -6685,7 +6685,7 @@ var babelPluginUntyped = function(api, options) {
6685
6685
  if (type && param) {
6686
6686
  const arg = _optionalChain([schema, 'access', _33 => _33.args, 'optionalAccess', _34 => _34.find, 'call', _35 => _35((arg2) => arg2.name === param)]);
6687
6687
  if (arg) {
6688
- Object.assign(arg, _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, type));
6688
+ Object.assign(arg, _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, type));
6689
6689
  return false;
6690
6690
  }
6691
6691
  }
@@ -6761,7 +6761,7 @@ function parseJSDocs(input) {
6761
6761
  if (!type) {
6762
6762
  continue;
6763
6763
  }
6764
- Object.assign(schema, _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, type));
6764
+ Object.assign(schema, _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, type));
6765
6765
  for (const typedef in typedefs) {
6766
6766
  schema.markdownType = type;
6767
6767
  if (schema.tsType) {
@@ -6821,20 +6821,20 @@ var AST_JSTYPE_MAP = {
6821
6821
  };
6822
6822
  function inferArgType(e2, getCode) {
6823
6823
  if (AST_JSTYPE_MAP[e2.type]) {
6824
- return _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, AST_JSTYPE_MAP[e2.type]);
6824
+ return _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, AST_JSTYPE_MAP[e2.type]);
6825
6825
  }
6826
6826
  if (e2.type === "AssignmentExpression") {
6827
6827
  return inferArgType(e2.right);
6828
6828
  }
6829
6829
  if (e2.type === "NewExpression" && e2.callee.type === "Identifier") {
6830
- return _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, e2.callee.name);
6830
+ return _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, e2.callee.name);
6831
6831
  }
6832
6832
  if (e2.type === "ArrayExpression" || e2.type === "TupleExpression") {
6833
6833
  const itemTypes = e2.elements.filter((el) => r.isExpression(el)).flatMap((el) => inferArgType(el).type);
6834
6834
  return {
6835
6835
  type: "array",
6836
6836
  items: {
6837
- type: _chunkGXKBPF6Rcjs.normalizeTypes.call(void 0, itemTypes)
6837
+ type: _chunk7KHQWTWTcjs.normalizeTypes.call(void 0, itemTypes)
6838
6838
  }
6839
6839
  };
6840
6840
  }
@@ -6857,10 +6857,10 @@ function inferTSType(tsType, getCode) {
6857
6857
  items: inferTSType(tsType.typeParameters.params[0], getCode)
6858
6858
  };
6859
6859
  }
6860
- return _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, getCode(tsType.loc));
6860
+ return _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, getCode(tsType.loc));
6861
6861
  }
6862
6862
  if (tsType.type === "TSUnionType") {
6863
- return _chunkGXKBPF6Rcjs.mergedTypes.call(void 0, ...tsType.types.map((t2) => inferTSType(t2, getCode)));
6863
+ return _chunk7KHQWTWTcjs.mergedTypes.call(void 0, ...tsType.types.map((t2) => inferTSType(t2, getCode)));
6864
6864
  }
6865
6865
  if (tsType.type === "TSArrayType") {
6866
6866
  return {
@@ -6868,7 +6868,7 @@ function inferTSType(tsType, getCode) {
6868
6868
  items: inferTSType(tsType.elementType, getCode)
6869
6869
  };
6870
6870
  }
6871
- return _chunkGXKBPF6Rcjs.getTypeDescriptor.call(void 0, getCode(tsType.loc));
6871
+ return _chunk7KHQWTWTcjs.getTypeDescriptor.call(void 0, getCode(tsType.loc));
6872
6872
  }
6873
6873
 
6874
6874
  // ../../node_modules/.pnpm/untyped@2.0.0/node_modules/untyped/dist/loader/loader.mjs
@@ -6890,7 +6890,7 @@ async function loadSchema(entryPath, options = {}) {
6890
6890
  if (rawSchemaKeys.length === 1 && rawSchemaKeys[0] === "default") {
6891
6891
  rawSchema = rawSchema.default;
6892
6892
  }
6893
- const schema = await _chunkGXKBPF6Rcjs.resolveSchema.call(void 0, rawSchema, options.defaults, {
6893
+ const schema = await _chunk7KHQWTWTcjs.resolveSchema.call(void 0, rawSchema, options.defaults, {
6894
6894
  ignoreDefaults: options.ignoreDefaults
6895
6895
  });
6896
6896
  return schema;
@@ -6898,7 +6898,7 @@ async function loadSchema(entryPath, options = {}) {
6898
6898
 
6899
6899
  // src/generate.ts
6900
6900
  var getGenerateAction = (config) => async (options) => {
6901
- _chunkDUNUNFJ4cjs.writeTrace.call(void 0,
6901
+ _chunkWTLVDXC2cjs.writeTrace.call(void 0,
6902
6902
  `Running Storm Untyped with options: ${JSON.stringify(options)}`,
6903
6903
  config
6904
6904
  );
@@ -6917,7 +6917,7 @@ var getGenerateAction = (config) => async (options) => {
6917
6917
  });
6918
6918
  await Promise.all(
6919
6919
  files.map(async (file) => {
6920
- _chunkDUNUNFJ4cjs.writeTrace.call(void 0,
6920
+ _chunkWTLVDXC2cjs.writeTrace.call(void 0,
6921
6921
  `Generating files for schema file: ${_chunk4G3IU22Jcjs.joinPaths.call(void 0, file.parentPath, file.name)}`,
6922
6922
  config
6923
6923
  );
@@ -6936,7 +6936,7 @@ var getGenerateAction = (config) => async (options) => {
6936
6936
  }
6937
6937
  });
6938
6938
  } catch (error) {
6939
- _chunkDUNUNFJ4cjs.writeError.call(void 0,
6939
+ _chunkWTLVDXC2cjs.writeError.call(void 0,
6940
6940
  `Error while parsing schema file: ${_chunk4G3IU22Jcjs.joinPaths.call(void 0, file.parentPath, file.name)}
6941
6941
 
6942
6942
  Error:
@@ -6952,12 +6952,12 @@ ${JSON.stringify(schema)}
6952
6952
  }
6953
6953
  const promises = [];
6954
6954
  promises.push(
6955
- _chunkGXKBPF6Rcjs.generateDeclarationFile.call(void 0, schema, file, options.generatedBy, config)
6955
+ _chunk7KHQWTWTcjs.generateDeclarationFile.call(void 0, schema, file, options.generatedBy, config)
6956
6956
  );
6957
6957
  promises.push(
6958
- _chunkAA55W4PIcjs.generateMarkdownFile.call(void 0, schema, file, options.generatedBy, config)
6958
+ _chunkN64XHFF3cjs.generateMarkdownFile.call(void 0, schema, file, options.generatedBy, config)
6959
6959
  );
6960
- promises.push(_chunkDNUXDRL4cjs.generateJsonSchemaFile.call(void 0, schema, file, config));
6960
+ promises.push(_chunkPKKCO5ICcjs.generateJsonSchemaFile.call(void 0, schema, file, config));
6961
6961
  return Promise.all(promises);
6962
6962
  })
6963
6963
  );
@@ -5,17 +5,17 @@ import {
5
5
  mergedTypes,
6
6
  normalizeTypes,
7
7
  resolveSchema
8
- } from "./chunk-USMEAXKV.js";
8
+ } from "./chunk-L4FG5RFD.js";
9
9
  import {
10
10
  generateJsonSchemaFile
11
- } from "./chunk-AXIV4HBX.js";
11
+ } from "./chunk-BYOEAO2M.js";
12
12
  import {
13
13
  generateMarkdownFile
14
- } from "./chunk-OKI3BIEA.js";
14
+ } from "./chunk-CWXLCNZH.js";
15
15
  import {
16
16
  writeError,
17
17
  writeTrace
18
- } from "./chunk-4U6ARZBV.js";
18
+ } from "./chunk-NSEO2ZUW.js";
19
19
  import {
20
20
  joinPaths
21
21
  } from "./chunk-NTN5YK5X.js";
package/dist/generate.cjs CHANGED
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkNS7A3OHMcjs = require('./chunk-NS7A3OHM.cjs');
4
- require('./chunk-GXKBPF6R.cjs');
5
- require('./chunk-DNUXDRL4.cjs');
6
- require('./chunk-AA55W4PI.cjs');
7
- require('./chunk-DUNUNFJ4.cjs');
3
+ var _chunkWWCAVDDOcjs = require('./chunk-WWCAVDDO.cjs');
4
+ require('./chunk-7KHQWTWT.cjs');
5
+ require('./chunk-PKKCO5IC.cjs');
6
+ require('./chunk-N64XHFF3.cjs');
7
+ require('./chunk-WTLVDXC2.cjs');
8
8
  require('./chunk-4G3IU22J.cjs');
9
9
 
10
10
 
11
- exports.getGenerateAction = _chunkNS7A3OHMcjs.getGenerateAction;
11
+ exports.getGenerateAction = _chunkWWCAVDDOcjs.getGenerateAction;
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-B_lvFfKV.cjs';
1
+ import { S as StormWorkspaceConfig } from './types-BEj5gmFg.cjs';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-B_lvFfKV.js';
1
+ import { S as StormWorkspaceConfig } from './types-BEj5gmFg.js';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
package/dist/generate.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  getGenerateAction
3
- } from "./chunk-EF33M72U.js";
4
- import "./chunk-USMEAXKV.js";
5
- import "./chunk-AXIV4HBX.js";
6
- import "./chunk-OKI3BIEA.js";
7
- import "./chunk-4U6ARZBV.js";
3
+ } from "./chunk-YZIIZHI7.js";
4
+ import "./chunk-L4FG5RFD.js";
5
+ import "./chunk-BYOEAO2M.js";
6
+ import "./chunk-CWXLCNZH.js";
7
+ import "./chunk-NSEO2ZUW.js";
8
8
  import "./chunk-NTN5YK5X.js";
9
9
  export {
10
10
  getGenerateAction
package/dist/index.cjs CHANGED
@@ -1,19 +1,19 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkNS7A3OHMcjs = require('./chunk-NS7A3OHM.cjs');
3
+ var _chunkWWCAVDDOcjs = require('./chunk-WWCAVDDO.cjs');
4
4
  require('./chunk-TQVHFPJA.cjs');
5
5
 
6
6
 
7
7
 
8
- var _chunkGXKBPF6Rcjs = require('./chunk-GXKBPF6R.cjs');
8
+ var _chunk7KHQWTWTcjs = require('./chunk-7KHQWTWT.cjs');
9
9
 
10
10
 
11
- var _chunkDNUXDRL4cjs = require('./chunk-DNUXDRL4.cjs');
11
+ var _chunkPKKCO5ICcjs = require('./chunk-PKKCO5IC.cjs');
12
12
 
13
13
 
14
14
 
15
- var _chunkAA55W4PIcjs = require('./chunk-AA55W4PI.cjs');
16
- require('./chunk-DUNUNFJ4.cjs');
15
+ var _chunkN64XHFF3cjs = require('./chunk-N64XHFF3.cjs');
16
+ require('./chunk-WTLVDXC2.cjs');
17
17
 
18
18
 
19
19
  var _chunk4G3IU22Jcjs = require('./chunk-4G3IU22J.cjs');
@@ -25,4 +25,4 @@ var _chunk4G3IU22Jcjs = require('./chunk-4G3IU22J.cjs');
25
25
 
26
26
 
27
27
 
28
- exports.generateDeclaration = _chunkGXKBPF6Rcjs.generateDeclaration; exports.generateDeclarationFile = _chunkGXKBPF6Rcjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkDNUXDRL4cjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkAA55W4PIcjs.generateMarkdown; exports.generateMarkdownFile = _chunkAA55W4PIcjs.generateMarkdownFile; exports.getGenerateAction = _chunkNS7A3OHMcjs.getGenerateAction; exports.getOutputFile = _chunk4G3IU22Jcjs.getOutputFile;
28
+ exports.generateDeclaration = _chunk7KHQWTWTcjs.generateDeclaration; exports.generateDeclarationFile = _chunk7KHQWTWTcjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkPKKCO5ICcjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkN64XHFF3cjs.generateMarkdown; exports.generateMarkdownFile = _chunkN64XHFF3cjs.generateMarkdownFile; exports.getGenerateAction = _chunkWWCAVDDOcjs.getGenerateAction; exports.getOutputFile = _chunk4G3IU22Jcjs.getOutputFile;
package/dist/index.d.cts CHANGED
@@ -3,7 +3,7 @@ export { generateDeclaration, generateDeclarationFile } from './generators/dts.c
3
3
  export { generateJsonSchemaFile } from './generators/json-schema.cjs';
4
4
  export { generateMarkdown, generateMarkdownFile } from './generators/markdown.cjs';
5
5
  export { getOutputFile } from './utilities.cjs';
6
- import './types-B_lvFfKV.cjs';
6
+ import './types-BEj5gmFg.cjs';
7
7
  import 'zod';
8
8
  import 'zod/mini';
9
9
  import 'glob';
package/dist/index.d.ts CHANGED
@@ -3,7 +3,7 @@ export { generateDeclaration, generateDeclarationFile } from './generators/dts.j
3
3
  export { generateJsonSchemaFile } from './generators/json-schema.js';
4
4
  export { generateMarkdown, generateMarkdownFile } from './generators/markdown.js';
5
5
  export { getOutputFile } from './utilities.js';
6
- import './types-B_lvFfKV.js';
6
+ import './types-BEj5gmFg.js';
7
7
  import 'zod';
8
8
  import 'zod/mini';
9
9
  import 'glob';
package/dist/index.js CHANGED
@@ -1,19 +1,19 @@
1
1
  import {
2
2
  getGenerateAction
3
- } from "./chunk-EF33M72U.js";
3
+ } from "./chunk-YZIIZHI7.js";
4
4
  import "./chunk-BY5UJMXQ.js";
5
5
  import {
6
6
  generateDeclaration,
7
7
  generateDeclarationFile
8
- } from "./chunk-USMEAXKV.js";
8
+ } from "./chunk-L4FG5RFD.js";
9
9
  import {
10
10
  generateJsonSchemaFile
11
- } from "./chunk-AXIV4HBX.js";
11
+ } from "./chunk-BYOEAO2M.js";
12
12
  import {
13
13
  generateMarkdown,
14
14
  generateMarkdownFile
15
- } from "./chunk-OKI3BIEA.js";
16
- import "./chunk-4U6ARZBV.js";
15
+ } from "./chunk-CWXLCNZH.js";
16
+ import "./chunk-NSEO2ZUW.js";
17
17
  import {
18
18
  getOutputFile
19
19
  } from "./chunk-NTN5YK5X.js";
@@ -108,6 +108,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
108
108
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
109
109
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
110
110
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
111
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
111
112
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
112
113
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
113
114
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -125,6 +126,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
125
126
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
126
127
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
127
128
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
129
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
128
130
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
129
131
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
130
132
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -142,6 +144,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
142
144
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
143
145
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
144
146
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
147
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
145
148
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
146
149
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
147
150
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -159,6 +162,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
159
162
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
160
163
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
161
164
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
165
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
162
166
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
163
167
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
164
168
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -176,6 +180,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
176
180
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
177
181
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
178
182
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
183
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
179
184
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
180
185
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
181
186
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -193,6 +198,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
193
198
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
194
199
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
195
200
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
201
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
196
202
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
197
203
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
198
204
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -108,6 +108,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
108
108
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
109
109
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
110
110
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
111
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
111
112
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
112
113
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
113
114
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -125,6 +126,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
125
126
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
126
127
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
127
128
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
129
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
128
130
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
129
131
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
130
132
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -142,6 +144,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
142
144
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
143
145
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
144
146
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
147
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
145
148
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
146
149
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
147
150
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -159,6 +162,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
159
162
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
160
163
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
161
164
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
165
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
162
166
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
163
167
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
164
168
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -176,6 +180,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
176
180
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
177
181
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
178
182
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
183
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
179
184
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
180
185
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
181
186
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -193,6 +198,7 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
193
198
  help: z.ZodMiniDefault<z.ZodMiniString<string>>;
194
199
  success: z.ZodMiniDefault<z.ZodMiniString<string>>;
195
200
  info: z.ZodMiniDefault<z.ZodMiniString<string>>;
201
+ debug: z.ZodMiniDefault<z.ZodMiniString<string>>;
196
202
  warning: z.ZodMiniDefault<z.ZodMiniString<string>>;
197
203
  danger: z.ZodMiniDefault<z.ZodMiniString<string>>;
198
204
  fatal: z.ZodMiniOptional<z.ZodMiniString<string>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/untyped",
3
- "version": "0.24.56",
3
+ "version": "0.24.58",
4
4
  "type": "module",
5
5
  "description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -179,7 +179,7 @@
179
179
  "sullivanpj"
180
180
  ],
181
181
  "dependencies": {
182
- "@storm-software/config-tools": "^1.188.75",
182
+ "@storm-software/config-tools": "^1.188.77",
183
183
  "commander": "^12.1.0",
184
184
  "glob": "^11.1.0",
185
185
  "jiti": "2.4.2",
@@ -192,5 +192,5 @@
192
192
  },
193
193
  "publishConfig": { "access": "public" },
194
194
  "sideEffects": false,
195
- "gitHead": "99ed954da76fded1e0554ae38f1a93f7601e3c24"
195
+ "gitHead": "d07f74f1d50951459260d2738dea47586e194f7f"
196
196
  }