@storm-software/untyped 0.17.19 → 0.17.20

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 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
- [![Version](https://img.shields.io/badge/version-0.17.18-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
24
+ [![Version](https://img.shields.io/badge/version-0.17.19-1fb2a6.svg?style=for-the-badge&color=1fb2a6)](https://prettier.io/)&nbsp;[![Nx](https://img.shields.io/badge/Nx-17.0.2-lightgrey?style=for-the-badge&logo=nx&logoWidth=20&&color=1fb2a6)](http://nx.dev/)&nbsp;[![NextJs](https://img.shields.io/badge/Next.js-14.0.2-lightgrey?style=for-the-badge&logo=nextdotjs&logoWidth=20&color=1fb2a6)](https://nextjs.org/)&nbsp;[![Commitizen friendly](https://img.shields.io/badge/commitizen-friendly-brightgreen.svg?style=for-the-badge&logo=commitlint&color=1fb2a6)](http://commitizen.github.io/cz-cli/)&nbsp;![Semantic-Release](https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg?style=for-the-badge&color=1fb2a6)&nbsp;[![documented with Fumadocs](https://img.shields.io/badge/documented_with-fumadocs-success.svg?style=for-the-badge&logo=readthedocs&color=1fb2a6)](https://fumadocs.vercel.app/)&nbsp;![GitHub Workflow Status (with event)](https://img.shields.io/github/actions/workflow/status/storm-software/storm-ops/cr.yml?style=for-the-badge&logo=github-actions&color=1fb2a6)
25
25
 
26
26
  <!-- prettier-ignore-start -->
27
27
  <!-- markdownlint-disable -->
package/bin/untyped.cjs CHANGED
@@ -68046,6 +68046,7 @@ var stormWorkspaceConfigSchema = z.object({
68046
68046
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
68047
68047
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
68048
68048
  docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
68049
+ portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
68049
68050
  licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
68050
68051
  contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
68051
68052
  support: z.string().trim().url().optional().describe(
@@ -69554,6 +69555,7 @@ var getConfigEnv = () => {
69554
69555
  license: process.env[`${prefix}LICENSE`] || void 0,
69555
69556
  homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
69556
69557
  docs: process.env[`${prefix}DOCS`] || void 0,
69558
+ portal: process.env[`${prefix}PORTAL`] || void 0,
69557
69559
  licensing: process.env[`${prefix}LICENSING`] || void 0,
69558
69560
  contact: process.env[`${prefix}CONTACT`] || void 0,
69559
69561
  support: process.env[`${prefix}SUPPORT`] || void 0,
@@ -69770,6 +69772,9 @@ var setConfigEnv = (config) => {
69770
69772
  if (config.docs) {
69771
69773
  process.env[`${prefix}DOCS`] = config.docs;
69772
69774
  }
69775
+ if (config.portal) {
69776
+ process.env[`${prefix}PORTAL`] = config.portal;
69777
+ }
69773
69778
  if (config.licensing) {
69774
69779
  process.env[`${prefix}LICENSING`] = config.licensing;
69775
69780
  }
package/bin/untyped.js CHANGED
@@ -68256,6 +68256,7 @@ var stormWorkspaceConfigSchema = z.object({
68256
68256
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
68257
68257
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
68258
68258
  docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
68259
+ portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
68259
68260
  licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
68260
68261
  contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
68261
68262
  support: z.string().trim().url().optional().describe(
@@ -69761,6 +69762,7 @@ var getConfigEnv = () => {
69761
69762
  license: process.env[`${prefix}LICENSE`] || void 0,
69762
69763
  homepage: process.env[`${prefix}HOMEPAGE`] || void 0,
69763
69764
  docs: process.env[`${prefix}DOCS`] || void 0,
69765
+ portal: process.env[`${prefix}PORTAL`] || void 0,
69764
69766
  licensing: process.env[`${prefix}LICENSING`] || void 0,
69765
69767
  contact: process.env[`${prefix}CONTACT`] || void 0,
69766
69768
  support: process.env[`${prefix}SUPPORT`] || void 0,
@@ -69977,6 +69979,9 @@ var setConfigEnv = (config) => {
69977
69979
  if (config.docs) {
69978
69980
  process.env[`${prefix}DOCS`] = config.docs;
69979
69981
  }
69982
+ if (config.portal) {
69983
+ process.env[`${prefix}PORTAL`] = config.portal;
69984
+ }
69980
69985
  if (config.licensing) {
69981
69986
  process.env[`${prefix}LICENSING`] = config.licensing;
69982
69987
  }
@@ -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 _chunk4ZJTBQTZcjs = require('./chunk-4ZJTBQTZ.cjs');
3
+ var _chunkMUNX7NTMcjs = require('./chunk-MUNX7NTM.cjs');
4
4
 
5
5
 
6
- var _chunkZ632DVXEcjs = require('./chunk-Z632DVXE.cjs');
6
+ var _chunkVCAXXBYZcjs = require('./chunk-VCAXXBYZ.cjs');
7
7
 
8
8
 
9
- var _chunkIEH3CDGZcjs = require('./chunk-IEH3CDGZ.cjs');
9
+ var _chunkUMX2NXX3cjs = require('./chunk-UMX2NXX3.cjs');
10
10
 
11
11
 
12
12
 
13
13
 
14
- var _chunkVRWKDLYGcjs = require('./chunk-VRWKDLYG.cjs');
14
+ var _chunkPDFPVDVBcjs = require('./chunk-PDFPVDVB.cjs');
15
15
 
16
16
 
17
17
 
@@ -22,7 +22,7 @@ _chunkNA6KUMUGcjs.init_cjs_shims.call(void 0, );
22
22
  var _glob = require('glob');
23
23
  var _loader = require('untyped/loader');
24
24
  var getGenerateAction = (config) => async (options) => {
25
- _chunkVRWKDLYGcjs.writeTrace.call(void 0,
25
+ _chunkPDFPVDVBcjs.writeTrace.call(void 0,
26
26
  `Running Storm Untyped with options: ${JSON.stringify(options)}`,
27
27
  config
28
28
  );
@@ -41,7 +41,7 @@ var getGenerateAction = (config) => async (options) => {
41
41
  });
42
42
  await Promise.all(
43
43
  files.map(async (file) => {
44
- _chunkVRWKDLYGcjs.writeTrace.call(void 0,
44
+ _chunkPDFPVDVBcjs.writeTrace.call(void 0,
45
45
  `Generating files for schema file: ${_chunkNA6KUMUGcjs.joinPaths.call(void 0, file.parentPath, file.name)}`,
46
46
  config
47
47
  );
@@ -49,7 +49,7 @@ var getGenerateAction = (config) => async (options) => {
49
49
  try {
50
50
  schema = await _loader.loadSchema.call(void 0, _chunkNA6KUMUGcjs.joinPaths.call(void 0, file.parentPath, file.name), {
51
51
  jiti: {
52
- debug: _chunkVRWKDLYGcjs.isVerbose.call(void 0, config.logLevel),
52
+ debug: _chunkPDFPVDVBcjs.isVerbose.call(void 0, config.logLevel),
53
53
  fsCache: config.skipCache ? false : _chunkNA6KUMUGcjs.joinPaths.call(void 0,
54
54
  config.directories.cache || _chunkNA6KUMUGcjs.joinPaths.call(void 0,
55
55
  config.workspaceRoot,
@@ -61,7 +61,7 @@ var getGenerateAction = (config) => async (options) => {
61
61
  }
62
62
  });
63
63
  } catch (error) {
64
- _chunkVRWKDLYGcjs.writeError.call(void 0,
64
+ _chunkPDFPVDVBcjs.writeError.call(void 0,
65
65
  `Error while parsing schema file: ${_chunkNA6KUMUGcjs.joinPaths.call(void 0, file.parentPath, file.name)}
66
66
 
67
67
  Error:
@@ -76,9 +76,9 @@ ${JSON.stringify(schema)}
76
76
  throw error;
77
77
  }
78
78
  const promises = [];
79
- promises.push(_chunk4ZJTBQTZcjs.generateDeclarationFile.call(void 0, schema, file, config));
80
- promises.push(_chunkIEH3CDGZcjs.generateMarkdownFile.call(void 0, schema, file, config));
81
- promises.push(_chunkZ632DVXEcjs.generateJsonSchemaFile.call(void 0, schema, file, config));
79
+ promises.push(_chunkMUNX7NTMcjs.generateDeclarationFile.call(void 0, schema, file, config));
80
+ promises.push(_chunkUMX2NXX3cjs.generateMarkdownFile.call(void 0, schema, file, config));
81
+ promises.push(_chunkVCAXXBYZcjs.generateJsonSchemaFile.call(void 0, schema, file, config));
82
82
  return Promise.all(promises);
83
83
  })
84
84
  );
@@ -1,17 +1,17 @@
1
1
  import {
2
2
  generateDeclarationFile
3
- } from "./chunk-NTSAK3DX.js";
3
+ } from "./chunk-XDRZI3YS.js";
4
4
  import {
5
5
  generateJsonSchemaFile
6
- } from "./chunk-VLNJLZYF.js";
6
+ } from "./chunk-S6EIRR66.js";
7
7
  import {
8
8
  generateMarkdownFile
9
- } from "./chunk-LBXSEEM2.js";
9
+ } from "./chunk-UN4AZNMH.js";
10
10
  import {
11
11
  isVerbose,
12
12
  writeError,
13
13
  writeTrace
14
- } from "./chunk-2EHIWN2Y.js";
14
+ } from "./chunk-YME5OCSF.js";
15
15
  import {
16
16
  init_esm_shims,
17
17
  joinPaths
@@ -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 _chunkVRWKDLYGcjs = require('./chunk-VRWKDLYG.cjs');
4
+ var _chunkPDFPVDVBcjs = require('./chunk-PDFPVDVB.cjs');
5
5
 
6
6
 
7
7
 
@@ -27,10 +27,10 @@ ${_untyped.generateTypes.call(void 0, schema, {
27
27
  function generateDeclarationFile(schema, file, config) {
28
28
  try {
29
29
  const declarations = _chunkNA6KUMUGcjs.getOutputFile.call(void 0, file, "d.ts");
30
- _chunkVRWKDLYGcjs.writeTrace.call(void 0, `Writing type declaration file ${declarations}`, config);
30
+ _chunkPDFPVDVBcjs.writeTrace.call(void 0, `Writing type declaration file ${declarations}`, config);
31
31
  return _promises.writeFile.call(void 0, declarations, generateDeclaration(schema));
32
32
  } catch (error) {
33
- _chunkVRWKDLYGcjs.writeError.call(void 0,
33
+ _chunkPDFPVDVBcjs.writeError.call(void 0,
34
34
  `Error writing declaration file for ${file.name}
35
35
 
36
36
  Error:
@@ -5871,6 +5871,7 @@ var stormWorkspaceConfigSchema = z.object({
5871
5871
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
5872
5872
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
5873
5873
  docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
5874
+ portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
5874
5875
  licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
5875
5876
  contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
5876
5877
  support: z.string().trim().url().optional().describe(
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  writeError,
3
3
  writeTrace
4
- } from "./chunk-2EHIWN2Y.js";
4
+ } from "./chunk-YME5OCSF.js";
5
5
  import {
6
6
  getOutputFile,
7
7
  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 _chunkVRWKDLYGcjs = require('./chunk-VRWKDLYG.cjs');
4
+ var _chunkPDFPVDVBcjs = require('./chunk-PDFPVDVB.cjs');
5
5
 
6
6
 
7
7
 
@@ -47,10 +47,10 @@ function generateMarkdownLevel(schema, title, level) {
47
47
  function generateMarkdownFile(schema, file, config) {
48
48
  try {
49
49
  const declarations = _chunkNA6KUMUGcjs.getOutputFile.call(void 0, file, "md");
50
- _chunkVRWKDLYGcjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
50
+ _chunkPDFPVDVBcjs.writeTrace.call(void 0, `Writing type markdown file ${declarations}`, config);
51
51
  return _promises.writeFile.call(void 0, declarations, generateMarkdown(schema));
52
52
  } catch (error) {
53
- _chunkVRWKDLYGcjs.writeError.call(void 0,
53
+ _chunkPDFPVDVBcjs.writeError.call(void 0,
54
54
  `Error writing markdown file for ${file.name}
55
55
 
56
56
  Error:
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  writeError,
3
3
  writeTrace
4
- } from "./chunk-2EHIWN2Y.js";
4
+ } from "./chunk-YME5OCSF.js";
5
5
  import {
6
6
  getOutputFile,
7
7
  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 _chunkVRWKDLYGcjs = require('./chunk-VRWKDLYG.cjs');
4
+ var _chunkPDFPVDVBcjs = require('./chunk-PDFPVDVB.cjs');
5
5
 
6
6
 
7
7
 
@@ -13,10 +13,10 @@ var _promises = require('fs/promises');
13
13
  function generateJsonSchemaFile(schema, file, config) {
14
14
  try {
15
15
  const jsonSchema = _chunkNA6KUMUGcjs.getOutputFile.call(void 0, file, "json");
16
- _chunkVRWKDLYGcjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
16
+ _chunkPDFPVDVBcjs.writeTrace.call(void 0, `Writing JSON schema file ${jsonSchema}`, config);
17
17
  return _promises.writeFile.call(void 0, jsonSchema, JSON.stringify(schema, null, 2));
18
18
  } catch (error) {
19
- _chunkVRWKDLYGcjs.writeError.call(void 0,
19
+ _chunkPDFPVDVBcjs.writeError.call(void 0,
20
20
  `Error writing JSON schema file for ${file.name}
21
21
 
22
22
  Error:
@@ -1,7 +1,7 @@
1
1
  import {
2
2
  writeError,
3
3
  writeTrace
4
- } from "./chunk-2EHIWN2Y.js";
4
+ } from "./chunk-YME5OCSF.js";
5
5
  import {
6
6
  getOutputFile,
7
7
  init_esm_shims
@@ -5879,6 +5879,7 @@ var stormWorkspaceConfigSchema = z.object({
5879
5879
  license: z.string().trim().default("Apache-2.0").describe("The license type of the package"),
5880
5880
  homepage: z.string().trim().url().optional().describe("The homepage of the workspace"),
5881
5881
  docs: z.string().trim().url().optional().describe("The documentation site for the workspace"),
5882
+ portal: z.string().trim().url().optional().describe("The development portal site for the workspace"),
5882
5883
  licensing: z.string().trim().url().optional().describe("The licensing site for the workspace"),
5883
5884
  contact: z.string().trim().url().optional().describe("The contact site for the workspace"),
5884
5885
  support: z.string().trim().url().optional().describe(
package/dist/generate.cjs CHANGED
@@ -1,11 +1,11 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkX2CGOJUIcjs = require('./chunk-X2CGOJUI.cjs');
4
- require('./chunk-4ZJTBQTZ.cjs');
5
- require('./chunk-Z632DVXE.cjs');
6
- require('./chunk-IEH3CDGZ.cjs');
7
- require('./chunk-VRWKDLYG.cjs');
3
+ var _chunk4MLEGQ6Kcjs = require('./chunk-4MLEGQ6K.cjs');
4
+ require('./chunk-MUNX7NTM.cjs');
5
+ require('./chunk-VCAXXBYZ.cjs');
6
+ require('./chunk-UMX2NXX3.cjs');
7
+ require('./chunk-PDFPVDVB.cjs');
8
8
  require('./chunk-NA6KUMUG.cjs');
9
9
 
10
10
 
11
- exports.getGenerateAction = _chunkX2CGOJUIcjs.getGenerateAction;
11
+ exports.getGenerateAction = _chunk4MLEGQ6Kcjs.getGenerateAction;
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-BHig4IFV.cjs';
1
+ import { S as StormWorkspaceConfig } from './types-hD8tQ5TZ.cjs';
2
2
  import 'zod';
3
3
 
4
4
  declare const getGenerateAction: (config: StormWorkspaceConfig) => (options: {
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-BHig4IFV.js';
1
+ import { S as StormWorkspaceConfig } from './types-hD8tQ5TZ.js';
2
2
  import 'zod';
3
3
 
4
4
  declare const getGenerateAction: (config: StormWorkspaceConfig) => (options: {
package/dist/generate.js CHANGED
@@ -1,10 +1,10 @@
1
1
  import {
2
2
  getGenerateAction
3
- } from "./chunk-G3XF3RCB.js";
4
- import "./chunk-NTSAK3DX.js";
5
- import "./chunk-VLNJLZYF.js";
6
- import "./chunk-LBXSEEM2.js";
7
- import "./chunk-2EHIWN2Y.js";
3
+ } from "./chunk-IRQ3DRGY.js";
4
+ import "./chunk-XDRZI3YS.js";
5
+ import "./chunk-S6EIRR66.js";
6
+ import "./chunk-UN4AZNMH.js";
7
+ import "./chunk-YME5OCSF.js";
8
8
  import "./chunk-E6IEJD5Q.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 _chunkX2CGOJUIcjs = require('./chunk-X2CGOJUI.cjs');
3
+ var _chunk4MLEGQ6Kcjs = require('./chunk-4MLEGQ6K.cjs');
4
4
  require('./chunk-JOQWI4SE.cjs');
5
5
 
6
6
 
7
7
 
8
- var _chunk4ZJTBQTZcjs = require('./chunk-4ZJTBQTZ.cjs');
8
+ var _chunkMUNX7NTMcjs = require('./chunk-MUNX7NTM.cjs');
9
9
 
10
10
 
11
- var _chunkZ632DVXEcjs = require('./chunk-Z632DVXE.cjs');
11
+ var _chunkVCAXXBYZcjs = require('./chunk-VCAXXBYZ.cjs');
12
12
 
13
13
 
14
14
 
15
- var _chunkIEH3CDGZcjs = require('./chunk-IEH3CDGZ.cjs');
16
- require('./chunk-VRWKDLYG.cjs');
15
+ var _chunkUMX2NXX3cjs = require('./chunk-UMX2NXX3.cjs');
16
+ require('./chunk-PDFPVDVB.cjs');
17
17
 
18
18
 
19
19
 
@@ -29,4 +29,4 @@ _chunkNA6KUMUGcjs.init_cjs_shims.call(void 0, );
29
29
 
30
30
 
31
31
 
32
- exports.generateDeclaration = _chunk4ZJTBQTZcjs.generateDeclaration; exports.generateDeclarationFile = _chunk4ZJTBQTZcjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkZ632DVXEcjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkIEH3CDGZcjs.generateMarkdown; exports.generateMarkdownFile = _chunkIEH3CDGZcjs.generateMarkdownFile; exports.getGenerateAction = _chunkX2CGOJUIcjs.getGenerateAction; exports.getOutputFile = _chunkNA6KUMUGcjs.getOutputFile;
32
+ exports.generateDeclaration = _chunkMUNX7NTMcjs.generateDeclaration; exports.generateDeclarationFile = _chunkMUNX7NTMcjs.generateDeclarationFile; exports.generateJsonSchemaFile = _chunkVCAXXBYZcjs.generateJsonSchemaFile; exports.generateMarkdown = _chunkUMX2NXX3cjs.generateMarkdown; exports.generateMarkdownFile = _chunkUMX2NXX3cjs.generateMarkdownFile; exports.getGenerateAction = _chunk4MLEGQ6Kcjs.getGenerateAction; exports.getOutputFile = _chunkNA6KUMUGcjs.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-BHig4IFV.cjs';
6
+ import './types-hD8tQ5TZ.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-BHig4IFV.js';
6
+ import './types-hD8tQ5TZ.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-G3XF3RCB.js";
3
+ } from "./chunk-IRQ3DRGY.js";
4
4
  import "./chunk-CTVVSIBS.js";
5
5
  import {
6
6
  generateDeclaration,
7
7
  generateDeclarationFile
8
- } from "./chunk-NTSAK3DX.js";
8
+ } from "./chunk-XDRZI3YS.js";
9
9
  import {
10
10
  generateJsonSchemaFile
11
- } from "./chunk-VLNJLZYF.js";
11
+ } from "./chunk-S6EIRR66.js";
12
12
  import {
13
13
  generateMarkdown,
14
14
  generateMarkdownFile
15
- } from "./chunk-LBXSEEM2.js";
16
- import "./chunk-2EHIWN2Y.js";
15
+ } from "./chunk-UN4AZNMH.js";
16
+ import "./chunk-YME5OCSF.js";
17
17
  import {
18
18
  getOutputFile,
19
19
  init_esm_shims
@@ -13,6 +13,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
13
13
  license: z.ZodDefault<z.ZodString>;
14
14
  homepage: z.ZodOptional<z.ZodString>;
15
15
  docs: z.ZodOptional<z.ZodString>;
16
+ portal: z.ZodOptional<z.ZodString>;
16
17
  licensing: z.ZodOptional<z.ZodString>;
17
18
  contact: z.ZodOptional<z.ZodString>;
18
19
  support: z.ZodOptional<z.ZodString>;
@@ -1046,6 +1047,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1046
1047
  repository?: string | undefined;
1047
1048
  homepage?: string | undefined;
1048
1049
  docs?: string | undefined;
1050
+ portal?: string | undefined;
1049
1051
  licensing?: string | undefined;
1050
1052
  contact?: string | undefined;
1051
1053
  support?: string | undefined;
@@ -1238,6 +1240,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1238
1240
  license?: string | undefined;
1239
1241
  homepage?: string | undefined;
1240
1242
  docs?: string | undefined;
1243
+ portal?: string | undefined;
1241
1244
  licensing?: string | undefined;
1242
1245
  contact?: string | undefined;
1243
1246
  support?: string | undefined;
@@ -13,6 +13,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
13
13
  license: z.ZodDefault<z.ZodString>;
14
14
  homepage: z.ZodOptional<z.ZodString>;
15
15
  docs: z.ZodOptional<z.ZodString>;
16
+ portal: z.ZodOptional<z.ZodString>;
16
17
  licensing: z.ZodOptional<z.ZodString>;
17
18
  contact: z.ZodOptional<z.ZodString>;
18
19
  support: z.ZodOptional<z.ZodString>;
@@ -1046,6 +1047,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1046
1047
  repository?: string | undefined;
1047
1048
  homepage?: string | undefined;
1048
1049
  docs?: string | undefined;
1050
+ portal?: string | undefined;
1049
1051
  licensing?: string | undefined;
1050
1052
  contact?: string | undefined;
1051
1053
  support?: string | undefined;
@@ -1238,6 +1240,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1238
1240
  license?: string | undefined;
1239
1241
  homepage?: string | undefined;
1240
1242
  docs?: string | undefined;
1243
+ portal?: string | undefined;
1241
1244
  licensing?: string | undefined;
1242
1245
  contact?: string | undefined;
1243
1246
  support?: string | undefined;