@storm-software/untyped 0.19.13 → 0.19.14

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.19.12-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.19.13-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
@@ -65866,6 +65866,13 @@ var workspaceDirectorySchema = object({
65866
65866
  schemaRegistry.add(workspaceDirectorySchema, {
65867
65867
  description: "Various directories used by the workspace to store data, cache, and configuration files"
65868
65868
  });
65869
+ var variantSchema = _default(
65870
+ _enum(["minimal", "monorepo"]),
65871
+ "monorepo"
65872
+ );
65873
+ schemaRegistry.add(variantSchema, {
65874
+ description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
65875
+ });
65869
65876
  var errorCodesFileSchema = _default(
65870
65877
  string2().check(_trim()),
65871
65878
  STORM_DEFAULT_ERROR_CODES_FILE
@@ -66063,6 +66070,7 @@ var workspaceConfigSchema = object({
66063
66070
  $schema: schemaNameSchema,
66064
66071
  extends: extendsSchema,
66065
66072
  name: nameSchema,
66073
+ variant: variantSchema,
66066
66074
  namespace: namespaceSchema,
66067
66075
  organization: orgSchema,
66068
66076
  repository: repositorySchema,
@@ -67532,6 +67540,7 @@ var getConfigEnv = () => {
67532
67540
  let config2 = {
67533
67541
  extends: process.env[`${prefix}EXTENDS`] || void 0,
67534
67542
  name: process.env[`${prefix}NAME`] || void 0,
67543
+ variant: process.env[`${prefix}VARIANT`] || void 0,
67535
67544
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
67536
67545
  owner: process.env[`${prefix}OWNER`] || void 0,
67537
67546
  bot: {
@@ -67757,6 +67766,9 @@ var setConfigEnv = (config2) => {
67757
67766
  if (config2.name) {
67758
67767
  process.env[`${prefix}NAME`] = config2.name;
67759
67768
  }
67769
+ if (config2.variant) {
67770
+ process.env[`${prefix}VARIANT`] = config2.variant;
67771
+ }
67760
67772
  if (config2.namespace) {
67761
67773
  process.env[`${prefix}NAMESPACE`] = config2.namespace;
67762
67774
  }
package/bin/untyped.js CHANGED
@@ -66064,6 +66064,13 @@ var workspaceDirectorySchema = object({
66064
66064
  schemaRegistry.add(workspaceDirectorySchema, {
66065
66065
  description: "Various directories used by the workspace to store data, cache, and configuration files"
66066
66066
  });
66067
+ var variantSchema = _default(
66068
+ _enum(["minimal", "monorepo"]),
66069
+ "monorepo"
66070
+ );
66071
+ schemaRegistry.add(variantSchema, {
66072
+ description: "The variant of the workspace. This can be used to enable or disable certain features or configurations."
66073
+ });
66067
66074
  var errorCodesFileSchema = _default(
66068
66075
  string2().check(_trim()),
66069
66076
  STORM_DEFAULT_ERROR_CODES_FILE
@@ -66261,6 +66268,7 @@ var workspaceConfigSchema = object({
66261
66268
  $schema: schemaNameSchema,
66262
66269
  extends: extendsSchema,
66263
66270
  name: nameSchema,
66271
+ variant: variantSchema,
66264
66272
  namespace: namespaceSchema,
66265
66273
  organization: orgSchema,
66266
66274
  repository: repositorySchema,
@@ -67727,6 +67735,7 @@ var getConfigEnv = () => {
67727
67735
  let config2 = {
67728
67736
  extends: process.env[`${prefix}EXTENDS`] || void 0,
67729
67737
  name: process.env[`${prefix}NAME`] || void 0,
67738
+ variant: process.env[`${prefix}VARIANT`] || void 0,
67730
67739
  namespace: process.env[`${prefix}NAMESPACE`] || void 0,
67731
67740
  owner: process.env[`${prefix}OWNER`] || void 0,
67732
67741
  bot: {
@@ -67952,6 +67961,9 @@ var setConfigEnv = (config2) => {
67952
67961
  if (config2.name) {
67953
67962
  process.env[`${prefix}NAME`] = config2.name;
67954
67963
  }
67964
+ if (config2.variant) {
67965
+ process.env[`${prefix}VARIANT`] = config2.variant;
67966
+ }
67955
67967
  if (config2.namespace) {
67956
67968
  process.env[`${prefix}NAMESPACE`] = config2.namespace;
67957
67969
  }
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-HghpYdGB.cjs';
1
+ import { S as StormWorkspaceConfig } from './types-5OQltn_C.cjs';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
@@ -1,4 +1,4 @@
1
- import { S as StormWorkspaceConfig } from './types-HghpYdGB.js';
1
+ import { S as StormWorkspaceConfig } from './types-5OQltn_C.js';
2
2
  import 'zod';
3
3
  import 'zod/mini';
4
4
 
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-HghpYdGB.cjs';
6
+ import './types-5OQltn_C.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-HghpYdGB.js';
6
+ import './types-5OQltn_C.js';
7
7
  import 'zod';
8
8
  import 'zod/mini';
9
9
  import 'glob';
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
8
8
  $schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
9
9
  extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
10
10
  name: z.ZodMiniString<string>;
11
+ variant: z.ZodMiniDefault<z.ZodMiniEnum<{
12
+ minimal: "minimal";
13
+ monorepo: "monorepo";
14
+ }>>;
11
15
  namespace: z.ZodMiniString<string>;
12
16
  organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
13
17
  name: z.ZodMiniOptional<z.ZodMiniString<string>>;
@@ -8,6 +8,10 @@ declare const workspaceConfigSchema: z.ZodMiniObject<{
8
8
  $schema: z.ZodMiniDefault<z.ZodMiniString<string>>;
9
9
  extends: z.ZodMiniOptional<z.ZodMiniUnion<readonly [z.ZodMiniString<string>, z.ZodMiniArray<z.ZodMiniString<string>>]>>;
10
10
  name: z.ZodMiniString<string>;
11
+ variant: z.ZodMiniDefault<z.ZodMiniEnum<{
12
+ minimal: "minimal";
13
+ monorepo: "monorepo";
14
+ }>>;
11
15
  namespace: z.ZodMiniString<string>;
12
16
  organization: z.ZodMiniUnion<readonly [z.ZodMiniObject<{
13
17
  name: z.ZodMiniOptional<z.ZodMiniString<string>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/untyped",
3
- "version": "0.19.13",
3
+ "version": "0.19.14",
4
4
  "type": "module",
5
5
  "description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -197,5 +197,5 @@
197
197
  },
198
198
  "publishConfig": { "access": "public" },
199
199
  "sideEffects": false,
200
- "gitHead": "ead820214c8c4cf25d5311c154819f2c2f8f7356"
200
+ "gitHead": "bd2cceced6f34cd309c7a8cf92fca76621c40470"
201
201
  }