@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.
@@ -25,9 +25,9 @@ interface UntypedPluginUserConfig extends UserConfig {
25
25
  interface UntypedPluginResolvedConfig extends ResolvedConfig {
26
26
  untyped: UntypedPluginOptions;
27
27
  }
28
- type UntypedPluginContext<TResolvedConfig extends UntypedPluginResolvedConfig = UntypedPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
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[];
@@ -25,9 +25,9 @@ interface UntypedPluginUserConfig extends UserConfig {
25
25
  interface UntypedPluginResolvedConfig extends ResolvedConfig {
26
26
  untyped: UntypedPluginOptions;
27
27
  }
28
- type UntypedPluginContext<TResolvedConfig extends UntypedPluginResolvedConfig = UntypedPluginResolvedConfig> = PluginContext<TResolvedConfig> & {
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.18",
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": "af415fb5bd386772fdae0f748f1b9365889ebcc0"
133
+ "gitHead": "76cadafd65f99178c46aaa01c8cfe0adeae23a09"
134
134
  }