@powerlines/plugin-hey-api 0.1.291 → 0.1.293

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.
@@ -0,0 +1,11 @@
1
+ //#region src/helpers/create-operation-id.d.ts
2
+ /**
3
+ * Create an Operation Id from a summary string
4
+ *
5
+ * @param summary - The summary string from the specification
6
+ * @returns The generated operation ID
7
+ */
8
+ declare function createOperationId(summary: string): string;
9
+ //#endregion
10
+ export { createOperationId };
11
+ //# sourceMappingURL=create-operation-id.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-operation-id.d.cts","names":[],"sources":["../../src/helpers/create-operation-id.ts"],"sourcesContent":[],"mappings":";;AA0BA;;;;;iBAAgB,iBAAA"}
@@ -0,0 +1,11 @@
1
+ //#region src/helpers/create-operation-id.d.ts
2
+ /**
3
+ * Create an Operation Id from a summary string
4
+ *
5
+ * @param summary - The summary string from the specification
6
+ * @returns The generated operation ID
7
+ */
8
+ declare function createOperationId(summary: string): string;
9
+ //#endregion
10
+ export { createOperationId };
11
+ //# sourceMappingURL=create-operation-id.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-operation-id.d.mts","names":[],"sources":["../../src/helpers/create-operation-id.ts"],"sourcesContent":[],"mappings":";;AA0BA;;;;;iBAAgB,iBAAA"}
@@ -12,4 +12,5 @@ function createOperationId(summary) {
12
12
  }
13
13
 
14
14
  //#endregion
15
- export { createOperationId };
15
+ export { createOperationId };
16
+ //# sourceMappingURL=create-operation-id.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"create-operation-id.mjs","names":[],"sources":["../../src/helpers/create-operation-id.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport { camelCase } from \"@stryke/string-format/camel-case\";\n\n/**\n * Create an Operation Id from a summary string\n *\n * @param summary - The summary string from the specification\n * @returns The generated operation ID\n */\nexport function createOperationId(summary: string) {\n return camelCase(\n summary\n .replace(/\\b(?:a|from|to|the|given|of|an)\\b/gi, \"\")\n .replace(\"Get list\", \"list\")\n );\n}\n"],"mappings":";;;;;;;;;AA0BA,SAAgB,kBAAkB,SAAiB;AACjD,QAAO,UACL,QACG,QAAQ,uCAAuC,GAAG,CAClD,QAAQ,YAAY,OAAO,CAC/B"}
@@ -0,0 +1,2 @@
1
+ import { createOperationId } from "./create-operation-id.cjs";
2
+ export { createOperationId };
@@ -0,0 +1,2 @@
1
+ import { createOperationId } from "./create-operation-id.mjs";
2
+ export { createOperationId };
@@ -0,0 +1,23 @@
1
+ import { createOperationId } from "./helpers/create-operation-id.cjs";
2
+ import { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig } from "./types/plugin.cjs";
3
+ import "./types/index.cjs";
4
+ import { Plugin } from "powerlines";
5
+
6
+ //#region src/index.d.ts
7
+ declare module "powerlines" {
8
+ interface Config {
9
+ heyApi?: HeyAPIPluginOptions;
10
+ }
11
+ }
12
+ /**
13
+ * A Powerlines plugin to integrate Hey API for code generation.
14
+ *
15
+ * @see https://heyapi.dev/
16
+ *
17
+ * @param options - The plugin options.
18
+ * @returns A Powerlines plugin instance.
19
+ */
20
+ declare const plugin: <TContext extends HeyAPIPluginContext = HeyAPIPluginContext>(options?: HeyAPIPluginOptions) => Plugin<TContext>;
21
+ //#endregion
22
+ export { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig, createOperationId, plugin as default, plugin };
23
+ //# sourceMappingURL=index.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.cts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;IAmCwB,MAAA,CAAA,EAIX,mBAJW;EAAA;;;;AAgBxB;;;;;;AAIS,cAJI,MAIJ,EAAA,CAAA,iBAHU,mBAGV,GAHgC,mBAGhC,CAAA,CAAA,OAAA,CAAA,EADE,mBACF,EAAA,GAAN,MAAM,CAAC,QAAD,CAAA"}
@@ -0,0 +1,23 @@
1
+ import { createOperationId } from "./helpers/create-operation-id.mjs";
2
+ import { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig } from "./types/plugin.mjs";
3
+ import "./types/index.mjs";
4
+ import { Plugin } from "powerlines";
5
+
6
+ //#region src/index.d.ts
7
+ declare module "powerlines" {
8
+ interface Config {
9
+ heyApi?: HeyAPIPluginOptions;
10
+ }
11
+ }
12
+ /**
13
+ * A Powerlines plugin to integrate Hey API for code generation.
14
+ *
15
+ * @see https://heyapi.dev/
16
+ *
17
+ * @param options - The plugin options.
18
+ * @returns A Powerlines plugin instance.
19
+ */
20
+ declare const plugin: <TContext extends HeyAPIPluginContext = HeyAPIPluginContext>(options?: HeyAPIPluginOptions) => Plugin<TContext>;
21
+ //#endregion
22
+ export { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig, createOperationId, plugin as default, plugin };
23
+ //# sourceMappingURL=index.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.d.mts","names":[],"sources":["../src/index.ts"],"sourcesContent":[],"mappings":";;;;;;;;IAmCwB,MAAA,CAAA,EAIX,mBAJW;EAAA;;;;AAgBxB;;;;;;AAIS,cAJI,MAIJ,EAAA,CAAA,iBAHU,mBAGV,GAHgC,mBAGhC,CAAA,CAAA,OAAA,CAAA,EADE,mBACF,EAAA,GAAN,MAAM,CAAC,QAAD,CAAA"}
package/dist/index.mjs CHANGED
@@ -84,4 +84,5 @@ const plugin = (options = {}) => {
84
84
  var src_default = plugin;
85
85
 
86
86
  //#endregion
87
- export { createOperationId, src_default as default, plugin };
87
+ export { createOperationId, src_default as default, plugin };
88
+ //# sourceMappingURL=index.mjs.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"index.mjs","names":[],"sources":["../src/index.ts"],"sourcesContent":["/* -------------------------------------------------------------------\n\n ⚡ Storm Software - Powerlines\n\n This code was released as part of the Powerlines project. Powerlines\n is maintained by Storm Software under the Apache-2.0 license, and is\n free for commercial and private use. For more information, please visit\n our licensing page at https://stormsoftware.com/licenses/projects/powerlines.\n\n Website: https://stormsoftware.com\n Repository: https://github.com/storm-software/powerlines\n Documentation: https://docs.stormsoftware.com/projects/powerlines\n Contact: https://stormsoftware.com/contact\n\n SPDX-License-Identifier: Apache-2.0\n\n ------------------------------------------------------------------- */\n\nimport type { UserConfig } from \"@hey-api/openapi-ts\";\nimport { createClient, OpenApi } from \"@hey-api/openapi-ts\";\nimport { joinPaths } from \"@stryke/path/join-paths\";\nimport { isSetObject } from \"@stryke/type-checks/is-set-object\";\nimport { isSetString } from \"@stryke/type-checks/is-set-string\";\nimport defu from \"defu\";\nimport { Plugin } from \"powerlines\";\nimport { replacePathTokens } from \"powerlines/plugin-utils\";\nimport { createOperationId } from \"./helpers/create-operation-id\";\nimport {\n HeyAPIPluginContext,\n HeyAPIPluginOptions,\n HeyAPIPluginOutputOptions,\n HeyAPIPluginUserConfig\n} from \"./types/plugin\";\n\nexport * from \"./helpers\";\nexport * from \"./types\";\n\ndeclare module \"powerlines\" {\n interface Config {\n heyApi?: HeyAPIPluginOptions;\n }\n}\n\n/**\n * A Powerlines plugin to integrate Hey API for code generation.\n *\n * @see https://heyapi.dev/\n *\n * @param options - The plugin options.\n * @returns A Powerlines plugin instance.\n */\nexport const plugin = <\n TContext extends HeyAPIPluginContext = HeyAPIPluginContext\n>(\n options: HeyAPIPluginOptions = {}\n): Plugin<TContext> => {\n return {\n name: \"hey-api\",\n config() {\n return {\n heyApi: {\n plugins: [\n {\n name: \"@hey-api/typescript\",\n exportFromIndex: false\n },\n {\n name: \"@hey-api/sdk\",\n instance: \"PrismaClient\",\n exportFromIndex: false,\n auth: false\n },\n {\n name: \"@hey-api/client-fetch\",\n throwOnError: true\n }\n ],\n ...defu(options, {\n schema: joinPaths(\n this.workspaceConfig.workspaceRoot,\n this.config.root,\n \"schema.yaml\"\n ),\n output: {\n path: joinPaths(\"{builtinPath}\", \"api\")\n },\n logs: this.envPaths.log\n })\n }\n } as Partial<HeyAPIPluginUserConfig>;\n },\n async configResolved() {\n this.config.heyApi.output ??= {} as HeyAPIPluginOutputOptions;\n this.config.heyApi.output.path = replacePathTokens(\n this,\n this.config.heyApi.output.path\n );\n\n if (!this.config.heyApi.schema) {\n throw new Error(\n \"The `schema` option is required by the Hey API plugin.\"\n );\n }\n\n if (isSetString(this.config.heyApi.schema)) {\n const result = await this.fetch(this.config.heyApi.schema);\n this.config.heyApi.schema =\n (await result.json()) as HeyAPIPluginOptions[\"schema\"];\n }\n\n if (\n isSetObject(this.config.heyApi.schema) &&\n (this.config.heyApi.schema as OpenApi.V3_0_X).paths\n ) {\n const schema = this.config.heyApi.schema as OpenApi.V3_0_X;\n for (const pathItem of Object.values(schema.paths)) {\n if (!pathItem || \"$ref\" in pathItem) {\n continue;\n }\n\n for (const method of [\n \"get\",\n \"put\",\n \"post\",\n \"delete\",\n \"options\",\n \"head\",\n \"patch\",\n \"trace\"\n ] as const) {\n const operation = pathItem[method];\n if (!isSetString(operation?.summary)) {\n continue;\n }\n\n operation.operationId = createOperationId(operation.summary);\n }\n }\n }\n },\n async prepare() {\n await createClient({\n ...this.config.heyApi,\n input: this.config.heyApi.schema!\n } as UserConfig);\n }\n };\n};\n\nexport default plugin;\n"],"mappings":";;;;;;;;;;;;;;;;;;AAmDA,MAAa,UAGX,UAA+B,EAAE,KACZ;AACrB,QAAO;EACL,MAAM;EACN,SAAS;AACP,UAAO,EACL,QAAQ;IACN,SAAS;KACP;MACE,MAAM;MACN,iBAAiB;MAClB;KACD;MACE,MAAM;MACN,UAAU;MACV,iBAAiB;MACjB,MAAM;MACP;KACD;MACE,MAAM;MACN,cAAc;MACf;KACF;IACD,GAAG,KAAK,SAAS;KACf,QAAQ,UACN,KAAK,gBAAgB,eACrB,KAAK,OAAO,MACZ,cACD;KACD,QAAQ,EACN,MAAM,UAAU,iBAAiB,MAAM,EACxC;KACD,MAAM,KAAK,SAAS;KACrB,CAAC;IACH,EACF;;EAEH,MAAM,iBAAiB;AACrB,QAAK,OAAO,OAAO,WAAW,EAAE;AAChC,QAAK,OAAO,OAAO,OAAO,OAAO,kBAC/B,MACA,KAAK,OAAO,OAAO,OAAO,KAC3B;AAED,OAAI,CAAC,KAAK,OAAO,OAAO,OACtB,OAAM,IAAI,MACR,yDACD;AAGH,OAAI,YAAY,KAAK,OAAO,OAAO,OAAO,EAAE;IAC1C,MAAM,SAAS,MAAM,KAAK,MAAM,KAAK,OAAO,OAAO,OAAO;AAC1D,SAAK,OAAO,OAAO,SAChB,MAAM,OAAO,MAAM;;AAGxB,OACE,YAAY,KAAK,OAAO,OAAO,OAAO,IACrC,KAAK,OAAO,OAAO,OAA0B,OAC9C;IACA,MAAM,SAAS,KAAK,OAAO,OAAO;AAClC,SAAK,MAAM,YAAY,OAAO,OAAO,OAAO,MAAM,EAAE;AAClD,SAAI,CAAC,YAAY,UAAU,SACzB;AAGF,UAAK,MAAM,UAAU;MACnB;MACA;MACA;MACA;MACA;MACA;MACA;MACA;MACD,EAAW;MACV,MAAM,YAAY,SAAS;AAC3B,UAAI,CAAC,YAAY,WAAW,QAAQ,CAClC;AAGF,gBAAU,cAAc,kBAAkB,UAAU,QAAQ;;;;;EAKpE,MAAM,UAAU;AACd,SAAM,aAAa;IACjB,GAAG,KAAK,OAAO;IACf,OAAO,KAAK,OAAO,OAAO;IAC3B,CAAe;;EAEnB;;AAGH,kBAAe"}
@@ -0,0 +1,2 @@
1
+ import { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig } from "./plugin.cjs";
2
+ export { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig };
@@ -0,0 +1,2 @@
1
+ import { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig } from "./plugin.mjs";
2
+ export { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig };
@@ -0,0 +1,47 @@
1
+ import { PluginContext, ResolvedConfig, UserConfig } from "powerlines";
2
+ import { OpenApi, UserConfig as UserConfig$1 } from "@hey-api/openapi-ts";
3
+
4
+ //#region src/types/plugin.d.ts
5
+ type HeyAPIPluginOutputOptions = UserConfig$1["output"] & {
6
+ /**
7
+ * The path to the output file generated by the plugin.
8
+ *
9
+ * @remarks
10
+ * If using the default value, the file can be imported from "powerlines:api". This field allows the use of the "\{builtinPath\}" token to refer to the built-in Powerlines plugins directory - the value will be replaced with the correct file path by the plugin.
11
+ *
12
+ * @defaultValue "\{builtinPath\}/api"
13
+ */
14
+ path?: string;
15
+ };
16
+ type HeyAPIPluginOptions = Omit<UserConfig$1, "input" | "output" | "schema"> & {
17
+ /**
18
+ * The path to the Hey API schema file.
19
+ *
20
+ * @remarks
21
+ * This can be a string path, URL, HeyAPI3 object, Buffer, or Readable stream.
22
+ *
23
+ * @defaultValue "\{root\}/schema.yaml"
24
+ */
25
+ schema?: UserConfig$1["input"];
26
+ /**
27
+ * The output details of the Hey API generation
28
+ */
29
+ output?: HeyAPIPluginOutputOptions;
30
+ };
31
+ type HeyAPIPluginUserConfig = UserConfig & {
32
+ heyApi?: HeyAPIPluginOptions;
33
+ };
34
+ type HeyAPIPluginResolvedConfig = ResolvedConfig & {
35
+ heyApi: Omit<HeyAPIPluginOptions, "schema"> & {
36
+ schema: HeyAPIPluginOptions["schema"] | OpenApi.V3_0_X;
37
+ };
38
+ };
39
+ type HeyAPIPluginContext<TResolvedConfig extends HeyAPIPluginResolvedConfig = HeyAPIPluginResolvedConfig> = PluginContext<TResolvedConfig>;
40
+ declare type __ΩHeyAPIPluginOutputOptions = any[];
41
+ declare type __ΩHeyAPIPluginOptions = any[];
42
+ declare type __ΩHeyAPIPluginUserConfig = any[];
43
+ declare type __ΩHeyAPIPluginResolvedConfig = any[];
44
+ declare type __ΩHeyAPIPluginContext = any[];
45
+ //#endregion
46
+ export { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig };
47
+ //# sourceMappingURL=plugin.d.cts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.cts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;KAsBY,yBAAA,GAA4B;EAA5B;AAYZ;;;;;;AAoBA;EAIY,IAAA,CAAA,EAAA,MAAA;CAA6B;AAC1B,KAzBH,mBAAA,GAAsB,IAyBnB,CAxBb,YAwBa,EAAA,OAAA,GAAA,QAAA,GAAA,QAAA,CAAA,GAAA;EAAL;;;;AAKV;;;;EAGI,MAAA,CAAA,EArBO,YAqBP,CAAA,OAAA,CAAA;EAAa;;;WAhBN;;KAGC,sBAAA,GAAyB;WAC1B;;KAGC,0BAAA,GAA6B;UAC/B,KAAK;YACH,gCAAgC,OAAA,CAAQ;;;KAIxC,4CACc,6BACtB,8BACA,cAAc"}
@@ -0,0 +1,47 @@
1
+ import { OpenApi, UserConfig } from "@hey-api/openapi-ts";
2
+ import { PluginContext, ResolvedConfig, UserConfig as UserConfig$1 } from "powerlines";
3
+
4
+ //#region src/types/plugin.d.ts
5
+ type HeyAPIPluginOutputOptions = UserConfig["output"] & {
6
+ /**
7
+ * The path to the output file generated by the plugin.
8
+ *
9
+ * @remarks
10
+ * If using the default value, the file can be imported from "powerlines:api". This field allows the use of the "\{builtinPath\}" token to refer to the built-in Powerlines plugins directory - the value will be replaced with the correct file path by the plugin.
11
+ *
12
+ * @defaultValue "\{builtinPath\}/api"
13
+ */
14
+ path?: string;
15
+ };
16
+ type HeyAPIPluginOptions = Omit<UserConfig, "input" | "output" | "schema"> & {
17
+ /**
18
+ * The path to the Hey API schema file.
19
+ *
20
+ * @remarks
21
+ * This can be a string path, URL, HeyAPI3 object, Buffer, or Readable stream.
22
+ *
23
+ * @defaultValue "\{root\}/schema.yaml"
24
+ */
25
+ schema?: UserConfig["input"];
26
+ /**
27
+ * The output details of the Hey API generation
28
+ */
29
+ output?: HeyAPIPluginOutputOptions;
30
+ };
31
+ type HeyAPIPluginUserConfig = UserConfig$1 & {
32
+ heyApi?: HeyAPIPluginOptions;
33
+ };
34
+ type HeyAPIPluginResolvedConfig = ResolvedConfig & {
35
+ heyApi: Omit<HeyAPIPluginOptions, "schema"> & {
36
+ schema: HeyAPIPluginOptions["schema"] | OpenApi.V3_0_X;
37
+ };
38
+ };
39
+ type HeyAPIPluginContext<TResolvedConfig extends HeyAPIPluginResolvedConfig = HeyAPIPluginResolvedConfig> = PluginContext<TResolvedConfig>;
40
+ declare type __ΩHeyAPIPluginOutputOptions = any[];
41
+ declare type __ΩHeyAPIPluginOptions = any[];
42
+ declare type __ΩHeyAPIPluginUserConfig = any[];
43
+ declare type __ΩHeyAPIPluginResolvedConfig = any[];
44
+ declare type __ΩHeyAPIPluginContext = any[];
45
+ //#endregion
46
+ export { HeyAPIPluginContext, HeyAPIPluginOptions, HeyAPIPluginOutputOptions, HeyAPIPluginResolvedConfig, HeyAPIPluginUserConfig, __ΩHeyAPIPluginContext, __ΩHeyAPIPluginOptions, __ΩHeyAPIPluginOutputOptions, __ΩHeyAPIPluginResolvedConfig, __ΩHeyAPIPluginUserConfig };
47
+ //# sourceMappingURL=plugin.d.mts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"plugin.d.mts","names":[],"sources":["../../src/types/plugin.ts"],"sourcesContent":[],"mappings":";;;;KAsBY,yBAAA,GAA4B;EAA5B;AAYZ;;;;;;AAoBA;EAIY,IAAA,CAAA,EAAA,MAAA;CAA6B;AAC1B,KAzBH,mBAAA,GAAsB,IAyBnB,CAxBb,UAwBa,EAAA,OAAA,GAAA,QAAA,GAAA,QAAA,CAAA,GAAA;EAAL;;;;AAKV;;;;EAGI,MAAA,CAAA,EArBO,UAqBP,CAAA,OAAA,CAAA;EAAa;;;WAhBN;;KAGC,sBAAA,GAAyB;WAC1B;;KAGC,0BAAA,GAA6B;UAC/B,KAAK;YACH,gCAAgC,OAAA,CAAQ;;;KAIxC,4CACc,6BACtB,8BACA,cAAc"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@powerlines/plugin-hey-api",
3
- "version": "0.1.291",
3
+ "version": "0.1.293",
4
4
  "type": "module",
5
5
  "description": "A Powerlines plugin to generate project code using Hey API.",
6
6
  "repository": {
@@ -124,13 +124,13 @@
124
124
  "@stryke/types": "^0.10.52",
125
125
  "defu": "^6.1.4",
126
126
  "jiti": "^2.6.1",
127
- "powerlines": "^0.41.2"
127
+ "powerlines": "^0.41.4"
128
128
  },
129
129
  "devDependencies": {
130
- "@powerlines/plugin-plugin": "^0.12.288",
130
+ "@powerlines/plugin-plugin": "^0.12.290",
131
131
  "@types/node": "^25.4.0"
132
132
  },
133
133
  "publishConfig": { "access": "public" },
134
134
  "types": "./dist/index.d.cts",
135
- "gitHead": "f53c211d745492a562800e7beec598d860ac2092"
135
+ "gitHead": "387dd4f3e14b4e5a2580ffcf2951d7727aae15a3"
136
136
  }