@storm-software/untyped 0.17.7 → 0.17.8

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.
Files changed (33) hide show
  1. package/README.md +1 -1
  2. package/bin/untyped.cjs +61 -19
  3. package/bin/untyped.js +61 -19
  4. package/dist/{chunk-N7OLMAZK.js → chunk-5SCGJXLE.js} +2 -2
  5. package/dist/{chunk-4GFXPGEQ.js → chunk-BDOMSMNF.js} +2 -2
  6. package/dist/{chunk-3VWRQEOF.cjs → chunk-CL5DUGIH.cjs} +6 -6
  7. package/dist/{chunk-WDYNO3M5.cjs → chunk-DZZDTX3L.cjs} +2 -2
  8. package/dist/chunk-JW4TDYDJ.cjs +6 -0
  9. package/dist/{chunk-HEWQ5KRS.cjs → chunk-LRMBRHN4.cjs} +6 -6
  10. package/dist/{chunk-OECQNTQ7.cjs → chunk-RR2H3NMV.cjs} +6 -6
  11. package/dist/{chunk-VJVLAVPV.js → chunk-TZ2NH3HZ.js} +8 -8
  12. package/dist/{chunk-K62G4BHH.js → chunk-U32PDV36.js} +2 -2
  13. package/dist/{chunk-QLZGAZC5.cjs → chunk-WBOGRNYV.cjs} +45 -45
  14. package/dist/{chunk-HHABLJEL.cjs → chunk-WM2POW42.cjs} +18 -18
  15. package/dist/{chunk-HNBDIWVI.js → chunk-XS7YTBLG.js} +2 -2
  16. package/dist/{chunk-T2FRLVP5.js → chunk-Y6U5MLYQ.js} +1 -1
  17. package/dist/{chunk-PVXOLNDJ.js → chunk-YHWFDGRO.js} +5 -5
  18. package/dist/generate.cjs +7 -7
  19. package/dist/generate.d.cts +1 -1
  20. package/dist/generate.d.ts +1 -1
  21. package/dist/generate.js +6 -6
  22. package/dist/index.cjs +9 -9
  23. package/dist/index.d.cts +1 -1
  24. package/dist/index.d.ts +1 -1
  25. package/dist/index.js +7 -7
  26. package/dist/{types-B4jbZA4j.d.cts → types-BHig4IFV.d.cts} +11 -8
  27. package/dist/{types-B4jbZA4j.d.ts → types-BHig4IFV.d.ts} +11 -8
  28. package/dist/{types-D-xLCTdY.d.cts → types-BhUX0YVA.d.cts} +11 -8
  29. package/dist/{types-D-xLCTdY.d.ts → types-BhUX0YVA.d.ts} +11 -8
  30. package/dist/utilities.cjs +2 -2
  31. package/dist/utilities.js +1 -1
  32. package/package.json +1 -1
  33. package/dist/chunk-Y6P2DSX6.cjs +0 -6
@@ -11,10 +11,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
11
11
  organization: z.ZodDefault<z.ZodString>;
12
12
  repository: z.ZodOptional<z.ZodString>;
13
13
  license: z.ZodDefault<z.ZodString>;
14
- homepage: z.ZodDefault<z.ZodString>;
15
- docs: z.ZodDefault<z.ZodString>;
16
- licensing: z.ZodDefault<z.ZodString>;
17
- contact: z.ZodDefault<z.ZodString>;
14
+ homepage: z.ZodOptional<z.ZodString>;
15
+ docs: z.ZodOptional<z.ZodString>;
16
+ licensing: z.ZodOptional<z.ZodString>;
17
+ contact: z.ZodOptional<z.ZodString>;
18
+ support: z.ZodOptional<z.ZodString>;
18
19
  branch: z.ZodDefault<z.ZodString>;
19
20
  preid: z.ZodOptional<z.ZodString>;
20
21
  owner: z.ZodDefault<z.ZodString>;
@@ -843,10 +844,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
843
844
  }, "strip", z.ZodTypeAny, {
844
845
  organization: string;
845
846
  license: string;
846
- homepage: string;
847
- docs: string;
848
- licensing: string;
849
- contact: string;
850
847
  branch: string;
851
848
  owner: string;
852
849
  bot: {
@@ -1047,6 +1044,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1047
1044
  extends?: string | string[] | undefined;
1048
1045
  namespace?: string | undefined;
1049
1046
  repository?: string | undefined;
1047
+ homepage?: string | undefined;
1048
+ docs?: string | undefined;
1049
+ licensing?: string | undefined;
1050
+ contact?: string | undefined;
1051
+ support?: string | undefined;
1050
1052
  preid?: string | undefined;
1051
1053
  skipConfigLogging?: boolean | undefined;
1052
1054
  }, {
@@ -1238,6 +1240,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1238
1240
  docs?: string | undefined;
1239
1241
  licensing?: string | undefined;
1240
1242
  contact?: string | undefined;
1243
+ support?: string | undefined;
1241
1244
  branch?: string | undefined;
1242
1245
  preid?: string | undefined;
1243
1246
  owner?: string | undefined;
@@ -11,10 +11,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
11
11
  organization: z.ZodDefault<z.ZodString>;
12
12
  repository: z.ZodOptional<z.ZodString>;
13
13
  license: z.ZodDefault<z.ZodString>;
14
- homepage: z.ZodDefault<z.ZodString>;
15
- docs: z.ZodDefault<z.ZodString>;
16
- licensing: z.ZodDefault<z.ZodString>;
17
- contact: z.ZodDefault<z.ZodString>;
14
+ homepage: z.ZodOptional<z.ZodString>;
15
+ docs: z.ZodOptional<z.ZodString>;
16
+ licensing: z.ZodOptional<z.ZodString>;
17
+ contact: z.ZodOptional<z.ZodString>;
18
+ support: z.ZodOptional<z.ZodString>;
18
19
  branch: z.ZodDefault<z.ZodString>;
19
20
  preid: z.ZodOptional<z.ZodString>;
20
21
  owner: z.ZodDefault<z.ZodString>;
@@ -843,10 +844,6 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
843
844
  }, "strip", z.ZodTypeAny, {
844
845
  organization: string;
845
846
  license: string;
846
- homepage: string;
847
- docs: string;
848
- licensing: string;
849
- contact: string;
850
847
  branch: string;
851
848
  owner: string;
852
849
  bot: {
@@ -1047,6 +1044,11 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1047
1044
  extends?: string | string[] | undefined;
1048
1045
  namespace?: string | undefined;
1049
1046
  repository?: string | undefined;
1047
+ homepage?: string | undefined;
1048
+ docs?: string | undefined;
1049
+ licensing?: string | undefined;
1050
+ contact?: string | undefined;
1051
+ support?: string | undefined;
1050
1052
  preid?: string | undefined;
1051
1053
  skipConfigLogging?: boolean | undefined;
1052
1054
  }, {
@@ -1238,6 +1240,7 @@ declare const stormWorkspaceConfigSchema: z.ZodObject<{
1238
1240
  docs?: string | undefined;
1239
1241
  licensing?: string | undefined;
1240
1242
  contact?: string | undefined;
1243
+ support?: string | undefined;
1241
1244
  branch?: string | undefined;
1242
1245
  preid?: string | undefined;
1243
1246
  owner?: string | undefined;
@@ -1,6 +1,6 @@
1
1
  "use strict";Object.defineProperty(exports, "__esModule", {value: true});
2
2
 
3
- var _chunkWDYNO3M5cjs = require('./chunk-WDYNO3M5.cjs');
3
+ var _chunkDZZDTX3Lcjs = require('./chunk-DZZDTX3L.cjs');
4
4
 
5
5
 
6
- exports.getOutputFile = _chunkWDYNO3M5cjs.getOutputFile;
6
+ exports.getOutputFile = _chunkDZZDTX3Lcjs.getOutputFile;
package/dist/utilities.js CHANGED
@@ -1,6 +1,6 @@
1
1
  import {
2
2
  getOutputFile
3
- } from "./chunk-4GFXPGEQ.js";
3
+ } from "./chunk-BDOMSMNF.js";
4
4
  export {
5
5
  getOutputFile
6
6
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@storm-software/untyped",
3
- "version": "0.17.7",
3
+ "version": "0.17.8",
4
4
  "type": "module",
5
5
  "description": "A package containing `untyped` utilities for building Storm Software libraries and applications",
6
6
  "repository": {
@@ -1,6 +0,0 @@
1
- "use strict";
2
-
3
- var _chunkWDYNO3M5cjs = require('./chunk-WDYNO3M5.cjs');
4
-
5
- // src/generators/index.ts
6
- _chunkWDYNO3M5cjs.init_cjs_shims.call(void 0, );