@powerlines/plugin-untyped 0.2.18 → 0.2.19
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/dist/types/plugin.d.cts
CHANGED
|
@@ -25,9 +25,9 @@ interface UntypedPluginUserConfig extends UserConfig {
|
|
|
25
25
|
interface UntypedPluginResolvedConfig extends ResolvedConfig {
|
|
26
26
|
untyped: UntypedPluginOptions;
|
|
27
27
|
}
|
|
28
|
-
|
|
28
|
+
interface UntypedPluginContext<TResolvedConfig extends UntypedPluginResolvedConfig = UntypedPluginResolvedConfig> extends PluginContext<TResolvedConfig> {
|
|
29
29
|
untyped: ReturnType<typeof getGenerateAction>;
|
|
30
|
-
}
|
|
30
|
+
}
|
|
31
31
|
declare type __ΩUntypedPluginOptions = any[];
|
|
32
32
|
declare type __ΩUntypedPluginUserConfig = any[];
|
|
33
33
|
declare type __ΩUntypedPluginResolvedConfig = any[];
|
package/dist/types/plugin.d.mts
CHANGED
|
@@ -25,9 +25,9 @@ interface UntypedPluginUserConfig extends UserConfig {
|
|
|
25
25
|
interface UntypedPluginResolvedConfig extends ResolvedConfig {
|
|
26
26
|
untyped: UntypedPluginOptions;
|
|
27
27
|
}
|
|
28
|
-
|
|
28
|
+
interface UntypedPluginContext<TResolvedConfig extends UntypedPluginResolvedConfig = UntypedPluginResolvedConfig> extends PluginContext<TResolvedConfig> {
|
|
29
29
|
untyped: ReturnType<typeof getGenerateAction>;
|
|
30
|
-
}
|
|
30
|
+
}
|
|
31
31
|
declare type __ΩUntypedPluginOptions = any[];
|
|
32
32
|
declare type __ΩUntypedPluginUserConfig = any[];
|
|
33
33
|
declare type __ΩUntypedPluginResolvedConfig = any[];
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-untyped",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.19",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to use Untyped for code generation based on user-defined schemas.",
|
|
6
6
|
"repository": {
|
|
@@ -130,5 +130,5 @@
|
|
|
130
130
|
"@types/node": "^24.10.4"
|
|
131
131
|
},
|
|
132
132
|
"publishConfig": { "access": "public" },
|
|
133
|
-
"gitHead": "
|
|
133
|
+
"gitHead": "76cadafd65f99178c46aaa01c8cfe0adeae23a09"
|
|
134
134
|
}
|