@hey-api/openapi-ts 0.87.5 → 0.88.1

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.
Files changed (39) hide show
  1. package/README.md +19 -2
  2. package/bin/run.js +2 -2
  3. package/dist/{config-CK1EGY2d.d.cts → config-C5xWXzTz.d.cts} +2479 -1966
  4. package/dist/{config-DHUTNwtw.d.ts → config-eqVtXEeO.d.mts} +2405 -1892
  5. package/dist/index.cjs +1 -1
  6. package/dist/index.d.cts +2 -1622
  7. package/dist/index.d.mts +101 -0
  8. package/dist/index.mjs +1 -0
  9. package/dist/internal.cjs +1 -1
  10. package/dist/internal.d.cts +1 -1
  11. package/dist/{internal.d.ts → internal.d.mts} +2 -2
  12. package/dist/internal.mjs +1 -0
  13. package/dist/openApi-DlyxIg9f.mjs +17 -0
  14. package/dist/openApi-DlyxIg9f.mjs.map +1 -0
  15. package/dist/openApi-DszQAwQH.cjs +17 -0
  16. package/dist/openApi-DszQAwQH.cjs.map +1 -0
  17. package/dist/run.cjs +1 -1
  18. package/dist/run.cjs.map +1 -1
  19. package/dist/run.mjs +3 -0
  20. package/dist/run.mjs.map +1 -0
  21. package/dist/src-9qIIwEzI.cjs +19 -0
  22. package/dist/{src-DmdEIcct.cjs.map → src-9qIIwEzI.cjs.map} +1 -1
  23. package/dist/src-BNSjnWaN.mjs +11 -0
  24. package/dist/src-BNSjnWaN.mjs.map +1 -0
  25. package/package.json +11 -11
  26. package/dist/chunk-C-EqMg7d.js +0 -1
  27. package/dist/index.d.ts +0 -1719
  28. package/dist/index.js +0 -1
  29. package/dist/internal.js +0 -1
  30. package/dist/openApi-BKUOqJVi.cjs +0 -19
  31. package/dist/openApi-BKUOqJVi.cjs.map +0 -1
  32. package/dist/openApi-QNcKaSPP.js +0 -19
  33. package/dist/openApi-QNcKaSPP.js.map +0 -1
  34. package/dist/run.js +0 -3
  35. package/dist/run.js.map +0 -1
  36. package/dist/src-D4L_i8zt.js +0 -11
  37. package/dist/src-D4L_i8zt.js.map +0 -1
  38. package/dist/src-DmdEIcct.cjs +0 -19
  39. /package/dist/{run.d.ts → run.d.mts} +0 -0
package/README.md CHANGED
@@ -1,5 +1,5 @@
1
1
  <div align="center">
2
- <img alt="Two people looking at the blueprint" height="214" src="https://heyapi.dev/images/blueprint-640w.png" width="320">
2
+ <img alt="Hey API presents openapi-ts" height="214" src="https://heyapi.dev/images/openapi-ts-hero-640w.png" width="438">
3
3
  <h1><b>OpenAPI TypeScript</b></h1>
4
4
  <p><em>“OpenAPI codegen that just works.”</em><br/><sub>— Guillermo Rauch, CEO of Vercel</sub></p>
5
5
  </div>
@@ -64,7 +64,7 @@ Help Hey API stay around for the long haul by becoming a [sponsor](https://githu
64
64
  </picture>
65
65
  </a>
66
66
  <br/>
67
- Best-in-class SDKs and MCP for your API.
67
+ Best-in-class developer interfaces for your API.
68
68
  <br/>
69
69
  <a href="https://kutt.it/pkEZyc" style="text-decoration:none;" target="_blank">
70
70
  stainless.com
@@ -72,6 +72,23 @@ Help Hey API stay around for the long haul by becoming a [sponsor](https://githu
72
72
  </p>
73
73
  <p></p>
74
74
  </td>
75
+ <td align="center">
76
+ <p></p>
77
+ <p>
78
+ <a href="https://kutt.it/QM9Q2N" target="_blank">
79
+ <picture height="50px">
80
+ <img alt="Opencode logo" height="50px" src="https://heyapi.dev/opencode-logo-wordmark.svg">
81
+ </picture>
82
+ </a>
83
+ <br/>
84
+ The open source coding agent.
85
+ <br/>
86
+ <a href="https://kutt.it/QM9Q2N" style="text-decoration:none;" target="_blank">
87
+ opencode.ai
88
+ </a>
89
+ </p>
90
+ <p></p>
91
+ </td>
75
92
  </tr>
76
93
  </tbody>
77
94
  </table>
package/bin/run.js CHANGED
@@ -5,10 +5,10 @@ import path from 'node:path';
5
5
  import { fileURLToPath } from 'node:url';
6
6
 
7
7
  const __dirname = path.dirname(fileURLToPath(import.meta.url));
8
- const target = path.join(__dirname, '..', 'dist', 'run.js');
8
+ const target = path.join(__dirname, '..', 'dist', 'run.mjs');
9
9
 
10
10
  if (!fs.existsSync(target)) {
11
- console.error('openapi-ts not built (expect dist/run.js)');
11
+ console.error('openapi-ts not built (expect dist/run.mjs)');
12
12
  process.exit(1);
13
13
  }
14
14