@storm-software/untyped 0.8.8 → 0.8.9
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/dist/generate.d.cts +1 -1
- package/dist/generate.d.ts +1 -1
- package/dist/index.d.cts +1 -1
- package/dist/index.d.ts +1 -1
- package/dist/{types-pVnZG27e.d.cts → types-BG7WXEyf.d.cts} +2 -2
- package/dist/{types-pVnZG27e.d.ts → types-BG7WXEyf.d.ts} +2 -2
- 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/dist/generate.d.cts
CHANGED
package/dist/generate.d.ts
CHANGED
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-BG7WXEyf.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-BG7WXEyf.js';
|
|
7
7
|
import 'zod';
|
|
8
8
|
import 'glob';
|
|
9
9
|
import 'untyped';
|
|
@@ -1177,9 +1177,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1177
1177
|
|
|
1178
1178
|
type TStormConfig = z.infer<typeof StormConfigSchema>;
|
|
1179
1179
|
type StormConfig<TExtensionName extends keyof TStormConfig["extensions"] = keyof TStormConfig["extensions"], TExtensionConfig extends TStormConfig["extensions"][TExtensionName] = TStormConfig["extensions"][TExtensionName]> = TStormConfig & {
|
|
1180
|
-
extensions
|
|
1180
|
+
extensions: (TStormConfig["extensions"] & {
|
|
1181
1181
|
[extensionName in TExtensionName]: TExtensionConfig;
|
|
1182
|
-
}) | Record<string, any
|
|
1182
|
+
}) | NonNullable<Record<string, any>>;
|
|
1183
1183
|
};
|
|
1184
1184
|
|
|
1185
1185
|
export type { StormConfig as S };
|
|
@@ -1177,9 +1177,9 @@ declare const StormConfigSchema: z.ZodObject<{
|
|
|
1177
1177
|
|
|
1178
1178
|
type TStormConfig = z.infer<typeof StormConfigSchema>;
|
|
1179
1179
|
type StormConfig<TExtensionName extends keyof TStormConfig["extensions"] = keyof TStormConfig["extensions"], TExtensionConfig extends TStormConfig["extensions"][TExtensionName] = TStormConfig["extensions"][TExtensionName]> = TStormConfig & {
|
|
1180
|
-
extensions
|
|
1180
|
+
extensions: (TStormConfig["extensions"] & {
|
|
1181
1181
|
[extensionName in TExtensionName]: TExtensionConfig;
|
|
1182
|
-
}) | Record<string, any
|
|
1182
|
+
}) | NonNullable<Record<string, any>>;
|
|
1183
1183
|
};
|
|
1184
1184
|
|
|
1185
1185
|
export type { StormConfig as S };
|