@powerlines/plugin-hey-api 0.1.45 → 0.1.47
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.
|
@@ -18,7 +18,7 @@ type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
|
18
18
|
* The {@link StormWorkspaceConfig | configuration} object for an entire Powerlines workspace
|
|
19
19
|
*/
|
|
20
20
|
type WorkspaceConfig = Partial<StormWorkspaceConfig> & Required<Pick<StormWorkspaceConfig, "workspaceRoot">>;
|
|
21
|
-
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext
|
|
21
|
+
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext> | Plugin<TContext>[]>;
|
|
22
22
|
/**
|
|
23
23
|
* A configuration tuple for a Powerlines plugin.
|
|
24
24
|
*/
|
|
@@ -36,7 +36,7 @@ type PluginConfigObject<TContext extends PluginContext = PluginContext, TOptions
|
|
|
36
36
|
/**
|
|
37
37
|
* A configuration tuple for a Powerlines plugin.
|
|
38
38
|
*/
|
|
39
|
-
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Promise<Plugin<TContext
|
|
39
|
+
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Plugin<TContext>[] | Promise<Plugin<TContext> | Plugin<TContext>[]> | PluginConfigTuple<TContext> | PluginConfigObject<TContext>;
|
|
40
40
|
type ProjectType = "application" | "library";
|
|
41
41
|
interface DeployConfig {
|
|
42
42
|
/**
|
|
@@ -18,7 +18,7 @@ type LogFn = (type: LogLevelLabel, ...args: string[]) => void;
|
|
|
18
18
|
* The {@link StormWorkspaceConfig | configuration} object for an entire Powerlines workspace
|
|
19
19
|
*/
|
|
20
20
|
type WorkspaceConfig = Partial<StormWorkspaceConfig> & Required<Pick<StormWorkspaceConfig, "workspaceRoot">>;
|
|
21
|
-
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext
|
|
21
|
+
type PluginFactory<in out TContext extends PluginContext = PluginContext, TOptions = any> = (options: TOptions) => MaybePromise<Plugin<TContext> | Plugin<TContext>[]>;
|
|
22
22
|
/**
|
|
23
23
|
* A configuration tuple for a Powerlines plugin.
|
|
24
24
|
*/
|
|
@@ -36,7 +36,7 @@ type PluginConfigObject<TContext extends PluginContext = PluginContext, TOptions
|
|
|
36
36
|
/**
|
|
37
37
|
* A configuration tuple for a Powerlines plugin.
|
|
38
38
|
*/
|
|
39
|
-
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Promise<Plugin<TContext
|
|
39
|
+
type PluginConfig<TContext extends PluginContext = PluginContext> = string | PluginFactory<TContext, void> | Plugin<TContext> | Plugin<TContext>[] | Promise<Plugin<TContext> | Plugin<TContext>[]> | PluginConfigTuple<TContext> | PluginConfigObject<TContext>;
|
|
40
40
|
type ProjectType = "application" | "library";
|
|
41
41
|
interface DeployConfig {
|
|
42
42
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@powerlines/plugin-hey-api",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.47",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "A Powerlines plugin to generate project code using Hey API.",
|
|
6
6
|
"repository": {
|
|
@@ -152,13 +152,13 @@
|
|
|
152
152
|
"@stryke/types": "^0.10.28",
|
|
153
153
|
"defu": "^6.1.4",
|
|
154
154
|
"jiti": "^2.6.1",
|
|
155
|
-
"powerlines": "^0.35.
|
|
155
|
+
"powerlines": "^0.35.2"
|
|
156
156
|
},
|
|
157
157
|
"devDependencies": {
|
|
158
|
-
"@powerlines/nx": "^0.11.
|
|
159
|
-
"@powerlines/plugin-plugin": "^0.12.
|
|
158
|
+
"@powerlines/nx": "^0.11.25",
|
|
159
|
+
"@powerlines/plugin-plugin": "^0.12.46",
|
|
160
160
|
"@types/node": "^24.10.4"
|
|
161
161
|
},
|
|
162
162
|
"publishConfig": { "access": "public" },
|
|
163
|
-
"gitHead": "
|
|
163
|
+
"gitHead": "8d5595f73e85e6d3171f73c91dff3e967080c80b"
|
|
164
164
|
}
|