@storm-software/untyped 0.10.21 → 0.10.22
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/README.md +1 -1
- package/bin/untyped.cjs +8 -9
- package/bin/untyped.js +8 -9
- package/dist/{chunk-CNGKYO5T.cjs → chunk-BFP2BHEB.cjs} +11 -11
- package/dist/{chunk-5GKMTADX.cjs → chunk-DJFQ2KNX.cjs} +3 -3
- package/dist/{chunk-CGMXCWJF.js → chunk-ED72UIWL.js} +1 -1
- package/dist/{chunk-VPSISZL2.js → chunk-F3JD6NGA.js} +8 -8
- package/dist/{chunk-MGZOT5JS.js → chunk-FJSHZ4HE.js} +1 -1
- package/dist/{chunk-SDI5ZZ4C.js → chunk-FWX3ISAD.js} +1 -1
- package/dist/{chunk-VRNWXN6K.cjs → chunk-NKODBY33.cjs} +3 -3
- package/dist/{chunk-VQ7EG3MR.js → chunk-Q7EQVFUE.js} +4 -4
- package/dist/{chunk-MO7NVWJT.cjs → chunk-WKKGHX75.cjs} +3 -3
- package/dist/{chunk-5ZJF3J5F.cjs → chunk-WL3IUAR7.cjs} +8 -8
- package/dist/generate.cjs +6 -6
- package/dist/generate.d.cts +1 -1
- package/dist/generate.d.ts +1 -1
- package/dist/generate.js +5 -5
- package/dist/index.cjs +6 -6
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/index.js +5 -5
- package/dist/{types-HiZpltUX.d.cts → types-BHTvEliD.d.cts} +359 -359
- package/dist/{types-HiZpltUX.d.ts → types-BHTvEliD.d.ts} +359 -359
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ This package is part of the <b>⚡Storm-Ops</b> monorepo. The Storm-Ops packages
|
|
|
21
21
|
|
|
22
22
|
<h3 align="center">💻 Visit <a href="https://stormsoftware.com" target="_blank">stormsoftware.com</a> to stay up to date with this developer</h3><br />
|
|
23
23
|
|
|
24
|
-
[](https://prettier.io/) [](http://nx.dev/) [](https://nextjs.org/) [](http://commitizen.github.io/cz-cli/)  [](https://fumadocs.vercel.app/) 
|
|
25
25
|
|
|
26
26
|
<!-- prettier-ignore-start -->
|
|
27
27
|
<!-- markdownlint-disable -->
|
package/bin/untyped.cjs
CHANGED
|
@@ -73756,55 +73756,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
73756
73756
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
73757
73757
|
return (message) => {
|
|
73758
73758
|
console.error(`
|
|
73759
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
73759
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73760
73760
|
`);
|
|
73761
73761
|
};
|
|
73762
73762
|
}
|
|
73763
73763
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
73764
73764
|
return (message) => {
|
|
73765
73765
|
console.error(`
|
|
73766
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
73766
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73767
73767
|
`);
|
|
73768
73768
|
};
|
|
73769
73769
|
}
|
|
73770
73770
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
73771
73771
|
return (message) => {
|
|
73772
73772
|
console.warn(`
|
|
73773
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
73773
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73774
73774
|
`);
|
|
73775
73775
|
};
|
|
73776
73776
|
}
|
|
73777
73777
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
73778
73778
|
return (message) => {
|
|
73779
73779
|
console.info(`
|
|
73780
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
73780
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73781
73781
|
`);
|
|
73782
73782
|
};
|
|
73783
73783
|
}
|
|
73784
73784
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
73785
73785
|
return (message) => {
|
|
73786
73786
|
console.info(`
|
|
73787
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
73787
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73788
73788
|
`);
|
|
73789
73789
|
};
|
|
73790
73790
|
}
|
|
73791
73791
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
73792
73792
|
return (message) => {
|
|
73793
73793
|
console.debug(`
|
|
73794
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
73794
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73795
73795
|
`);
|
|
73796
73796
|
};
|
|
73797
73797
|
}
|
|
73798
73798
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
73799
73799
|
return (message) => {
|
|
73800
73800
|
console.debug(`
|
|
73801
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
73801
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73802
73802
|
`);
|
|
73803
73803
|
};
|
|
73804
73804
|
}
|
|
73805
73805
|
return (message) => {
|
|
73806
73806
|
console.log(`
|
|
73807
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
73807
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73808
73808
|
`);
|
|
73809
73809
|
};
|
|
73810
73810
|
}, "getLogFn");
|
|
@@ -73820,7 +73820,6 @@ var getStopwatch = /* @__PURE__ */ __name((name) => {
|
|
|
73820
73820
|
const end = process.hrtime(start);
|
|
73821
73821
|
console.info(`
|
|
73822
73822
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
73823
|
-
|
|
73824
73823
|
`);
|
|
73825
73824
|
};
|
|
73826
73825
|
}, "getStopwatch");
|
package/bin/untyped.js
CHANGED
|
@@ -73744,55 +73744,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
73744
73744
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
73745
73745
|
return (message) => {
|
|
73746
73746
|
console.error(`
|
|
73747
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
73747
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73748
73748
|
`);
|
|
73749
73749
|
};
|
|
73750
73750
|
}
|
|
73751
73751
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
73752
73752
|
return (message) => {
|
|
73753
73753
|
console.error(`
|
|
73754
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
73754
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73755
73755
|
`);
|
|
73756
73756
|
};
|
|
73757
73757
|
}
|
|
73758
73758
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
73759
73759
|
return (message) => {
|
|
73760
73760
|
console.warn(`
|
|
73761
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
73761
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73762
73762
|
`);
|
|
73763
73763
|
};
|
|
73764
73764
|
}
|
|
73765
73765
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
73766
73766
|
return (message) => {
|
|
73767
73767
|
console.info(`
|
|
73768
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
73768
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73769
73769
|
`);
|
|
73770
73770
|
};
|
|
73771
73771
|
}
|
|
73772
73772
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
73773
73773
|
return (message) => {
|
|
73774
73774
|
console.info(`
|
|
73775
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
73775
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73776
73776
|
`);
|
|
73777
73777
|
};
|
|
73778
73778
|
}
|
|
73779
73779
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
73780
73780
|
return (message) => {
|
|
73781
73781
|
console.debug(`
|
|
73782
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
73782
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73783
73783
|
`);
|
|
73784
73784
|
};
|
|
73785
73785
|
}
|
|
73786
73786
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
73787
73787
|
return (message) => {
|
|
73788
73788
|
console.debug(`
|
|
73789
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
73789
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73790
73790
|
`);
|
|
73791
73791
|
};
|
|
73792
73792
|
}
|
|
73793
73793
|
return (message) => {
|
|
73794
73794
|
console.log(`
|
|
73795
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
73795
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
73796
73796
|
`);
|
|
73797
73797
|
};
|
|
73798
73798
|
}, "getLogFn");
|
|
@@ -73808,7 +73808,6 @@ var getStopwatch = /* @__PURE__ */ __name((name) => {
|
|
|
73808
73808
|
const end = process.hrtime(start);
|
|
73809
73809
|
console.info(`
|
|
73810
73810
|
> \u23F1\uFE0F The${name ? ` ${name}` : ""} process took ${Math.round(end[0] * 1e3 + end[1] / 1e6)}ms to complete
|
|
73811
|
-
|
|
73812
73811
|
`);
|
|
73813
73812
|
};
|
|
73814
73813
|
}, "getStopwatch");
|
|
@@ -1,17 +1,17 @@
|
|
|
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
|
-
var
|
|
3
|
+
var _chunkNKODBY33cjs = require('./chunk-NKODBY33.cjs');
|
|
4
4
|
|
|
5
5
|
|
|
6
|
-
var
|
|
6
|
+
var _chunkDJFQ2KNXcjs = require('./chunk-DJFQ2KNX.cjs');
|
|
7
7
|
|
|
8
8
|
|
|
9
|
-
var
|
|
9
|
+
var _chunkWKKGHX75cjs = require('./chunk-WKKGHX75.cjs');
|
|
10
10
|
|
|
11
11
|
|
|
12
12
|
|
|
13
13
|
|
|
14
|
-
var
|
|
14
|
+
var _chunkWL3IUAR7cjs = require('./chunk-WL3IUAR7.cjs');
|
|
15
15
|
|
|
16
16
|
|
|
17
17
|
|
|
@@ -23,7 +23,7 @@ _chunkBWZ4GDR6cjs.init_cjs_shims.call(void 0, );
|
|
|
23
23
|
var _glob = require('glob');
|
|
24
24
|
var _loader = require('untyped/loader');
|
|
25
25
|
var getGenerateAction = /* @__PURE__ */ _chunkBWZ4GDR6cjs.__name.call(void 0, (config) => async (options) => {
|
|
26
|
-
|
|
26
|
+
_chunkWL3IUAR7cjs.writeTrace.call(void 0, `Running Storm Untyped with options: ${JSON.stringify(options)}`, config);
|
|
27
27
|
const files = await _glob.glob.call(void 0, options.entry || "**/{untyped.ts,*.untyped.ts}", {
|
|
28
28
|
ignore: [
|
|
29
29
|
"**/{*.stories.tsx,*.stories.ts,*.spec.tsx,*.spec.ts}",
|
|
@@ -38,18 +38,18 @@ var getGenerateAction = /* @__PURE__ */ _chunkBWZ4GDR6cjs.__name.call(void 0, (c
|
|
|
38
38
|
cwd: config.workspaceRoot
|
|
39
39
|
});
|
|
40
40
|
await Promise.all(files.map(async (file) => {
|
|
41
|
-
|
|
41
|
+
_chunkWL3IUAR7cjs.writeTrace.call(void 0, `Generating files for schema file: ${_chunkBWZ4GDR6cjs.joinPaths.call(void 0, file.parentPath, file.name)}`, config);
|
|
42
42
|
let schema;
|
|
43
43
|
try {
|
|
44
44
|
schema = await _loader.loadSchema.call(void 0, _chunkBWZ4GDR6cjs.joinPaths.call(void 0, file.parentPath, file.name), {
|
|
45
45
|
jiti: {
|
|
46
|
-
debug:
|
|
46
|
+
debug: _chunkWL3IUAR7cjs.isVerbose.call(void 0, config.logLevel),
|
|
47
47
|
fsCache: config.skipCache ? false : _chunkBWZ4GDR6cjs.joinPaths.call(void 0, config.directories.cache || _chunkBWZ4GDR6cjs.joinPaths.call(void 0, config.workspaceRoot, "node_modules/.cache/storm"), "jiti"),
|
|
48
48
|
interopDefault: true
|
|
49
49
|
}
|
|
50
50
|
});
|
|
51
51
|
} catch (error) {
|
|
52
|
-
|
|
52
|
+
_chunkWL3IUAR7cjs.writeError.call(void 0, `Error while parsing schema file: ${_chunkBWZ4GDR6cjs.joinPaths.call(void 0, file.parentPath, file.name)}
|
|
53
53
|
|
|
54
54
|
Error:
|
|
55
55
|
${_optionalChain([error, 'optionalAccess', _ => _.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _2 => _2.stack]) ? `
|
|
@@ -61,9 +61,9 @@ ${JSON.stringify(schema)}
|
|
|
61
61
|
throw error;
|
|
62
62
|
}
|
|
63
63
|
const promises = [];
|
|
64
|
-
promises.push(
|
|
65
|
-
promises.push(
|
|
66
|
-
promises.push(
|
|
64
|
+
promises.push(_chunkNKODBY33cjs.generateDeclarationFile.call(void 0, schema, file, config));
|
|
65
|
+
promises.push(_chunkWKKGHX75cjs.generateMarkdownFile.call(void 0, schema, file, config));
|
|
66
|
+
promises.push(_chunkDJFQ2KNXcjs.generateJsonSchemaFile.call(void 0, schema, file, config));
|
|
67
67
|
return Promise.all(promises);
|
|
68
68
|
}));
|
|
69
69
|
}, "getGenerateAction");
|
|
@@ -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
|
|
4
|
+
var _chunkWL3IUAR7cjs = require('./chunk-WL3IUAR7.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -14,10 +14,10 @@ var _promises = require('fs/promises');
|
|
|
14
14
|
function generateJsonSchemaFile(schema, file, config) {
|
|
15
15
|
try {
|
|
16
16
|
const jsonSchema = _chunkBWZ4GDR6cjs.getOutputFile.call(void 0, file, "json");
|
|
17
|
-
|
|
17
|
+
_chunkWL3IUAR7cjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
|
|
18
18
|
return _promises.writeFile.call(void 0, jsonSchema, JSON.stringify(schema, null, 2));
|
|
19
19
|
} catch (error) {
|
|
20
|
-
|
|
20
|
+
_chunkWL3IUAR7cjs.writeError.call(void 0, `Error writing JSON schema file for ${file.name}
|
|
21
21
|
|
|
22
22
|
Error:
|
|
23
23
|
${_optionalChain([error, 'optionalAccess', _ => _.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _2 => _2.stack]) ? `
|
|
@@ -7133,55 +7133,55 @@ var getLogFn = /* @__PURE__ */ __name((logLevel = LogLevel.INFO, config = {}, _c
|
|
|
7133
7133
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
7134
7134
|
return (message) => {
|
|
7135
7135
|
console.error(`
|
|
7136
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
7136
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.fatal ?? "#7d1a1a")(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7137
7137
|
`);
|
|
7138
7138
|
};
|
|
7139
7139
|
}
|
|
7140
7140
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
7141
7141
|
return (message) => {
|
|
7142
7142
|
console.error(`
|
|
7143
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
7143
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.danger ?? "#f85149")(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7144
7144
|
`);
|
|
7145
7145
|
};
|
|
7146
7146
|
}
|
|
7147
7147
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
7148
7148
|
return (message) => {
|
|
7149
7149
|
console.warn(`
|
|
7150
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
7150
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.warning ?? "#e3b341")(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7151
7151
|
`);
|
|
7152
7152
|
};
|
|
7153
7153
|
}
|
|
7154
7154
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
7155
7155
|
return (message) => {
|
|
7156
7156
|
console.info(`
|
|
7157
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
7157
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.success ?? "#56d364")(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7158
7158
|
`);
|
|
7159
7159
|
};
|
|
7160
7160
|
}
|
|
7161
7161
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
7162
7162
|
return (message) => {
|
|
7163
7163
|
console.info(`
|
|
7164
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
7164
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.info ?? "#58a6ff")(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7165
7165
|
`);
|
|
7166
7166
|
};
|
|
7167
7167
|
}
|
|
7168
7168
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
7169
7169
|
return (message) => {
|
|
7170
7170
|
console.debug(`
|
|
7171
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
7171
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7172
7172
|
`);
|
|
7173
7173
|
};
|
|
7174
7174
|
}
|
|
7175
7175
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
7176
7176
|
return (message) => {
|
|
7177
7177
|
console.debug(`
|
|
7178
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
7178
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7179
7179
|
`);
|
|
7180
7180
|
};
|
|
7181
7181
|
}
|
|
7182
7182
|
return (message) => {
|
|
7183
7183
|
console.log(`
|
|
7184
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
7184
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(colors.brand ?? "#1fb2a6")(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7185
7185
|
`);
|
|
7186
7186
|
};
|
|
7187
7187
|
}, "getLogFn");
|
|
@@ -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
|
|
4
|
+
var _chunkWL3IUAR7cjs = require('./chunk-WL3IUAR7.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -29,10 +29,10 @@ _chunkBWZ4GDR6cjs.__name.call(void 0, generateDeclaration, "generateDeclaration"
|
|
|
29
29
|
function generateDeclarationFile(schema, file, config) {
|
|
30
30
|
try {
|
|
31
31
|
const declarations = _chunkBWZ4GDR6cjs.getOutputFile.call(void 0, file, "d.ts");
|
|
32
|
-
|
|
32
|
+
_chunkWL3IUAR7cjs.writeTrace.call(void 0, `Writing type declaration file ${declarations}`, config);
|
|
33
33
|
return _promises.writeFile.call(void 0, declarations, generateDeclaration(schema));
|
|
34
34
|
} catch (error) {
|
|
35
|
-
|
|
35
|
+
_chunkWL3IUAR7cjs.writeError.call(void 0, `Error writing declaration file for ${file.name}
|
|
36
36
|
|
|
37
37
|
Error:
|
|
38
38
|
${_optionalChain([error, 'optionalAccess', _4 => _4.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _5 => _5.stack]) ? `
|
|
@@ -1,17 +1,17 @@
|
|
|
1
1
|
import {
|
|
2
2
|
generateDeclarationFile
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-FWX3ISAD.js";
|
|
4
4
|
import {
|
|
5
5
|
generateJsonSchemaFile
|
|
6
|
-
} from "./chunk-
|
|
6
|
+
} from "./chunk-FJSHZ4HE.js";
|
|
7
7
|
import {
|
|
8
8
|
generateMarkdownFile
|
|
9
|
-
} from "./chunk-
|
|
9
|
+
} from "./chunk-ED72UIWL.js";
|
|
10
10
|
import {
|
|
11
11
|
isVerbose,
|
|
12
12
|
writeError,
|
|
13
13
|
writeTrace
|
|
14
|
-
} from "./chunk-
|
|
14
|
+
} from "./chunk-F3JD6NGA.js";
|
|
15
15
|
import {
|
|
16
16
|
__name,
|
|
17
17
|
init_esm_shims,
|
|
@@ -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
|
|
4
|
+
var _chunkWL3IUAR7cjs = require('./chunk-WL3IUAR7.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
@@ -48,10 +48,10 @@ _chunkBWZ4GDR6cjs.__name.call(void 0, generateMarkdownLevel, "generateMarkdownLe
|
|
|
48
48
|
function generateMarkdownFile(schema, file, config) {
|
|
49
49
|
try {
|
|
50
50
|
const declarations = _chunkBWZ4GDR6cjs.getOutputFile.call(void 0, file, "md");
|
|
51
|
-
|
|
51
|
+
_chunkWL3IUAR7cjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
|
|
52
52
|
return _promises.writeFile.call(void 0, declarations, generateMarkdown(schema));
|
|
53
53
|
} catch (error) {
|
|
54
|
-
|
|
54
|
+
_chunkWL3IUAR7cjs.writeError.call(void 0, `Error writing markdown file for ${file.name}
|
|
55
55
|
|
|
56
56
|
Error:
|
|
57
57
|
${_optionalChain([error, 'optionalAccess', _ => _.message]) ? error.message : JSON.stringify(error)}${_optionalChain([error, 'optionalAccess', _2 => _2.stack]) ? `
|
|
@@ -7136,55 +7136,55 @@ var getLogFn = /* @__PURE__ */ _chunkBWZ4GDR6cjs.__name.call(void 0, (logLevel =
|
|
|
7136
7136
|
if (typeof logLevel === "number" && LogLevel.FATAL >= logLevel) {
|
|
7137
7137
|
return (message) => {
|
|
7138
7138
|
console.error(`
|
|
7139
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal]`)}
|
|
7139
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.fatal, () => ( "#7d1a1a")))(`[${CONSOLE_ICONS[LogLevelLabel.FATAL]} Fatal] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7140
7140
|
`);
|
|
7141
7141
|
};
|
|
7142
7142
|
}
|
|
7143
7143
|
if (typeof logLevel === "number" && LogLevel.ERROR >= logLevel) {
|
|
7144
7144
|
return (message) => {
|
|
7145
7145
|
console.error(`
|
|
7146
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error]`)}
|
|
7146
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.danger, () => ( "#f85149")))(`[${CONSOLE_ICONS[LogLevelLabel.ERROR]} Error] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7147
7147
|
`);
|
|
7148
7148
|
};
|
|
7149
7149
|
}
|
|
7150
7150
|
if (typeof logLevel === "number" && LogLevel.WARN >= logLevel) {
|
|
7151
7151
|
return (message) => {
|
|
7152
7152
|
console.warn(`
|
|
7153
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn]`)}
|
|
7153
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.warning, () => ( "#e3b341")))(`[${CONSOLE_ICONS[LogLevelLabel.WARN]} Warn] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7154
7154
|
`);
|
|
7155
7155
|
};
|
|
7156
7156
|
}
|
|
7157
7157
|
if (typeof logLevel === "number" && LogLevel.SUCCESS >= logLevel) {
|
|
7158
7158
|
return (message) => {
|
|
7159
7159
|
console.info(`
|
|
7160
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success]`)}
|
|
7160
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.success, () => ( "#56d364")))(`[${CONSOLE_ICONS[LogLevelLabel.SUCCESS]} Success] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7161
7161
|
`);
|
|
7162
7162
|
};
|
|
7163
7163
|
}
|
|
7164
7164
|
if (typeof logLevel === "number" && LogLevel.INFO >= logLevel) {
|
|
7165
7165
|
return (message) => {
|
|
7166
7166
|
console.info(`
|
|
7167
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info]`)}
|
|
7167
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.info, () => ( "#58a6ff")))(`[${CONSOLE_ICONS[LogLevelLabel.INFO]} Info] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7168
7168
|
`);
|
|
7169
7169
|
};
|
|
7170
7170
|
}
|
|
7171
7171
|
if (typeof logLevel === "number" && LogLevel.DEBUG >= logLevel) {
|
|
7172
7172
|
return (message) => {
|
|
7173
7173
|
console.debug(`
|
|
7174
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug]`)}
|
|
7174
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.DEBUG]} Debug] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7175
7175
|
`);
|
|
7176
7176
|
};
|
|
7177
7177
|
}
|
|
7178
7178
|
if (typeof logLevel === "number" && LogLevel.TRACE >= logLevel) {
|
|
7179
7179
|
return (message) => {
|
|
7180
7180
|
console.debug(`
|
|
7181
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace]`)}
|
|
7181
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.TRACE]} Trace] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7182
7182
|
`);
|
|
7183
7183
|
};
|
|
7184
7184
|
}
|
|
7185
7185
|
return (message) => {
|
|
7186
7186
|
console.log(`
|
|
7187
|
-
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System]`)}
|
|
7187
|
+
${_chalk.gray(formatTimestamp())} ${_chalk.hex(_nullishCoalesce(colors.brand, () => ( "#1fb2a6")))(`[${CONSOLE_ICONS[LogLevelLabel.ALL]} System] `)}${_chalk.bold.whiteBright(formatLogMessage(message))}
|
|
7188
7188
|
`);
|
|
7189
7189
|
};
|
|
7190
7190
|
}, "getLogFn");
|
package/dist/generate.cjs
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
"use strict";Object.defineProperty(exports, "__esModule", {value: true});
|
|
2
2
|
|
|
3
|
-
var
|
|
4
|
-
require('./chunk-
|
|
5
|
-
require('./chunk-
|
|
6
|
-
require('./chunk-
|
|
7
|
-
require('./chunk-
|
|
3
|
+
var _chunkBFP2BHEBcjs = require('./chunk-BFP2BHEB.cjs');
|
|
4
|
+
require('./chunk-NKODBY33.cjs');
|
|
5
|
+
require('./chunk-DJFQ2KNX.cjs');
|
|
6
|
+
require('./chunk-WKKGHX75.cjs');
|
|
7
|
+
require('./chunk-WL3IUAR7.cjs');
|
|
8
8
|
require('./chunk-BWZ4GDR6.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
exports.getGenerateAction =
|
|
11
|
+
exports.getGenerateAction = _chunkBFP2BHEBcjs.getGenerateAction;
|
package/dist/generate.d.cts
CHANGED
package/dist/generate.d.ts
CHANGED
package/dist/generate.js
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getGenerateAction
|
|
3
|
-
} from "./chunk-
|
|
4
|
-
import "./chunk-
|
|
5
|
-
import "./chunk-
|
|
6
|
-
import "./chunk-
|
|
7
|
-
import "./chunk-
|
|
3
|
+
} from "./chunk-Q7EQVFUE.js";
|
|
4
|
+
import "./chunk-FWX3ISAD.js";
|
|
5
|
+
import "./chunk-FJSHZ4HE.js";
|
|
6
|
+
import "./chunk-ED72UIWL.js";
|
|
7
|
+
import "./chunk-F3JD6NGA.js";
|
|
8
8
|
import "./chunk-R42IA2VA.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
|
|
3
|
+
var _chunkBFP2BHEBcjs = require('./chunk-BFP2BHEB.cjs');
|
|
4
4
|
require('./chunk-ICJ7ZWD6.cjs');
|
|
5
5
|
|
|
6
6
|
|
|
7
7
|
|
|
8
|
-
var
|
|
8
|
+
var _chunkNKODBY33cjs = require('./chunk-NKODBY33.cjs');
|
|
9
9
|
|
|
10
10
|
|
|
11
|
-
var
|
|
11
|
+
var _chunkDJFQ2KNXcjs = require('./chunk-DJFQ2KNX.cjs');
|
|
12
12
|
|
|
13
13
|
|
|
14
14
|
|
|
15
|
-
var
|
|
16
|
-
require('./chunk-
|
|
15
|
+
var _chunkWKKGHX75cjs = require('./chunk-WKKGHX75.cjs');
|
|
16
|
+
require('./chunk-WL3IUAR7.cjs');
|
|
17
17
|
|
|
18
18
|
|
|
19
19
|
|
|
@@ -29,4 +29,4 @@ _chunkBWZ4GDR6cjs.init_cjs_shims.call(void 0, );
|
|
|
29
29
|
|
|
30
30
|
|
|
31
31
|
|
|
32
|
-
exports.generateDeclaration =
|
|
32
|
+
exports.generateDeclaration = _chunkNKODBY33cjs.generateDeclaration; exports.generateDeclarationFile = _chunkNKODBY33cjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkDJFQ2KNXcjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkWKKGHX75cjs.generateMarkdown; exports.generateMarkdownFile = _chunkWKKGHX75cjs.generateMarkdownFile; exports.getGenerateAction = _chunkBFP2BHEBcjs.getGenerateAction; exports.getOutputFile = _chunkBWZ4GDR6cjs.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-
|
|
6
|
+
import './types-BHTvEliD.cjs';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'glob';
|
|
9
9
|
import 'untyped';
|
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-
|
|
6
|
+
import './types-BHTvEliD.js';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'glob';
|
|
9
9
|
import 'untyped';
|
package/dist/index.js
CHANGED
|
@@ -1,19 +1,19 @@
|
|
|
1
1
|
import {
|
|
2
2
|
getGenerateAction
|
|
3
|
-
} from "./chunk-
|
|
3
|
+
} from "./chunk-Q7EQVFUE.js";
|
|
4
4
|
import "./chunk-FQMRVMPC.js";
|
|
5
5
|
import {
|
|
6
6
|
generateDeclaration,
|
|
7
7
|
generateDeclarationFile
|
|
8
|
-
} from "./chunk-
|
|
8
|
+
} from "./chunk-FWX3ISAD.js";
|
|
9
9
|
import {
|
|
10
10
|
generateJsonSchemaFile
|
|
11
|
-
} from "./chunk-
|
|
11
|
+
} from "./chunk-FJSHZ4HE.js";
|
|
12
12
|
import {
|
|
13
13
|
generateMarkdown,
|
|
14
14
|
generateMarkdownFile
|
|
15
|
-
} from "./chunk-
|
|
16
|
-
import "./chunk-
|
|
15
|
+
} from "./chunk-ED72UIWL.js";
|
|
16
|
+
import "./chunk-F3JD6NGA.js";
|
|
17
17
|
import {
|
|
18
18
|
getOutputFile,
|
|
19
19
|
init_esm_shims
|