@townco/fly 0.1.2 → 0.1.4

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 (54) hide show
  1. package/dist/client/client.gen.d.ts +2 -0
  2. package/dist/client/client.gen.js +228 -0
  3. package/dist/client/index.d.ts +8 -0
  4. package/dist/client/index.js +6 -0
  5. package/dist/client/types.gen.d.ts +117 -0
  6. package/dist/client/types.gen.js +2 -0
  7. package/dist/client/utils.gen.d.ts +33 -0
  8. package/dist/client/utils.gen.js +231 -0
  9. package/{src/client.gen.ts → dist/client.gen.d.ts} +3 -16
  10. package/dist/client.gen.js +3 -0
  11. package/dist/core/auth.gen.d.ts +18 -0
  12. package/dist/core/auth.gen.js +14 -0
  13. package/dist/core/bodySerializer.gen.d.ts +25 -0
  14. package/dist/core/bodySerializer.gen.js +57 -0
  15. package/dist/core/params.gen.d.ts +43 -0
  16. package/dist/core/params.gen.js +100 -0
  17. package/dist/core/pathSerializer.gen.d.ts +33 -0
  18. package/dist/core/pathSerializer.gen.js +114 -0
  19. package/dist/core/queryKeySerializer.gen.d.ts +18 -0
  20. package/dist/core/queryKeySerializer.gen.js +99 -0
  21. package/dist/core/serverSentEvents.gen.d.ts +71 -0
  22. package/dist/core/serverSentEvents.gen.js +135 -0
  23. package/dist/core/types.gen.d.ts +78 -0
  24. package/dist/core/types.gen.js +2 -0
  25. package/dist/core/utils.gen.d.ts +19 -0
  26. package/dist/core/utils.gen.js +87 -0
  27. package/dist/hey-api.d.ts +2 -0
  28. package/dist/hey-api.js +6 -0
  29. package/dist/index.d.ts +2 -0
  30. package/{src/index.ts → dist/index.js} +0 -2
  31. package/dist/sdk.gen.d.ts +379 -0
  32. package/dist/sdk.gen.js +557 -0
  33. package/dist/types.gen.d.ts +2592 -0
  34. package/dist/types.gen.js +2 -0
  35. package/package.json +6 -3
  36. package/.envrc +0 -11
  37. package/openapi-ts.config.ts +0 -7
  38. package/spec.json +0 -5072
  39. package/src/client/client.gen.ts +0 -301
  40. package/src/client/index.ts +0 -25
  41. package/src/client/types.gen.ts +0 -241
  42. package/src/client/utils.gen.ts +0 -337
  43. package/src/core/auth.gen.ts +0 -42
  44. package/src/core/bodySerializer.gen.ts +0 -100
  45. package/src/core/params.gen.ts +0 -176
  46. package/src/core/pathSerializer.gen.ts +0 -181
  47. package/src/core/queryKeySerializer.gen.ts +0 -136
  48. package/src/core/serverSentEvents.gen.ts +0 -264
  49. package/src/core/types.gen.ts +0 -118
  50. package/src/core/utils.gen.ts +0 -143
  51. package/src/hey-api.ts +0 -8
  52. package/src/sdk.gen.ts +0 -1163
  53. package/src/types.gen.ts +0 -2974
  54. package/tsconfig.json +0 -11
@@ -0,0 +1,2 @@
1
+ // This file is auto-generated by @hey-api/openapi-ts
2
+ export {};
package/package.json CHANGED
@@ -1,12 +1,15 @@
1
1
  {
2
2
  "name": "@townco/fly",
3
3
  "type": "module",
4
- "version": "0.1.2",
4
+ "version": "0.1.4",
5
5
  "description": "flyapi",
6
6
  "license": "UNLICENSED",
7
7
  "main": "./dist/index.js",
8
8
  "types": "./dist/index.d.ts",
9
9
  "repository": "github:townco/town",
10
+ "files": [
11
+ "dist"
12
+ ],
10
13
  "exports": {
11
14
  ".": {
12
15
  "import": "./dist/index.js",
@@ -16,7 +19,7 @@
16
19
  "devDependencies": {
17
20
  "@hey-api/client-fetch": "^0.13.1",
18
21
  "@hey-api/openapi-ts": "^0.88.0",
19
- "@townco/tsconfig": "0.1.49",
22
+ "@townco/tsconfig": "0.1.51",
20
23
  "typescript": "^5.9.3"
21
24
  },
22
25
  "scripts": {
@@ -25,6 +28,6 @@
25
28
  "check": "tsc --noEmit"
26
29
  },
27
30
  "dependencies": {
28
- "@townco/env": "0.1.2"
31
+ "@townco/env": "0.1.4"
29
32
  }
30
33
  }
package/.envrc DELETED
@@ -1,11 +0,0 @@
1
- # vi: ft=bash
2
- # shellcheck shell=bash source=/dev/null
3
-
4
- # Load parent configuration
5
- source_up
6
-
7
- # Expose node_modules executables on $PATH
8
- [[ -d "${PWD}/node_modules/.bin" ]] && export PATH="${PWD}/node_modules/.bin:${PATH}"
9
-
10
- # Activate local (user) configuration if present
11
- source_env_if_exists "${PWD}/.envrc.local"
@@ -1,7 +0,0 @@
1
- import { defineConfig } from "@hey-api/openapi-ts";
2
-
3
- export default defineConfig({
4
- input: "./spec.json",
5
- output: { path: "./src/api", format: "biome", lint: "biome" },
6
- plugins: [{ name: "@hey-api/client-fetch", runtimeConfigPath: "../hey-api" }],
7
- });