@feasibleone/blong-openapi 1.1.4 → 1.2.0

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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,18 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.2.0](https://github.com/feasibleone/blong/compare/blong-openapi-v1.1.4...blong-openapi-v1.2.0) (2026-05-19)
4
+
5
+
6
+ ### Features
7
+
8
+ * blong-dev ([8eb1aa4](https://github.com/feasibleone/blong/commit/8eb1aa4a8acb6a3dcdd52fb51582e0403efa4064))
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * lint ([e566423](https://github.com/feasibleone/blong/commit/e5664233dee91b8f66eef8fc8ae1f40a33d6c59f))
14
+ * linting ([46d7549](https://github.com/feasibleone/blong/commit/46d7549477c6b863e09972e8c6903a38b5836a8e))
15
+
3
16
  ## [1.1.4](https://github.com/feasibleone/blong/compare/blong-openapi-v1.1.3...blong-openapi-v1.1.4) (2026-04-26)
4
17
 
5
18
 
package/README.md CHANGED
@@ -212,7 +212,7 @@ Generated handlers follow the pattern: `{namespace}{operationId}`
212
212
  | ----------- | ------------- | -------------- |
213
213
  | weather | GetForecast | `weatherGetForecast` |
214
214
  | payment | CreateTransaction | `paymentCreateTransaction` |
215
- | k8s | listNamespaces | `k8slistNamespaces` |
215
+ | k8s | listNamespaces | `k8sListNamespaces` |
216
216
 
217
217
  Names are case-sensitive and trimmed of whitespace.
218
218
 
@@ -1,5 +1,7 @@
1
1
  declare const _default: import("@feasibleone/blong").IAdapterFactory<{
2
2
  logLevel: "info";
3
- }, import("@feasibleone/blong").AdapterContext>;
3
+ }, import("@feasibleone/blong").AdapterContext> & {
4
+ [x: symbol]: "orchestrator";
5
+ };
4
6
  export default _default;
5
7
  //# sourceMappingURL=openapi.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"openapi.d.ts","sourceRoot":"","sources":["../../orchestrator/openapi.ts"],"names":[],"mappings":";;;AAEA,wBAOI"}
1
+ {"version":3,"file":"openapi.d.ts","sourceRoot":"","sources":["../../orchestrator/openapi.ts"],"names":[],"mappings":";;;;;AAEA,wBAOI"}
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feasibleone/blong-openapi",
3
- "version": "1.1.4",
3
+ "version": "1.2.0",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/feasibleone/blong.git"
6
6
  },
@@ -17,12 +17,14 @@
17
17
  },
18
18
  "scripts": {
19
19
  "build": "heft build --clean",
20
+ "ci-lint": "blong-dev lint",
20
21
  "ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance"
21
22
  },
22
23
  "dependencies": {
23
24
  "@feasibleone/blong": "workspace:^1.0.0"
24
25
  },
25
26
  "devDependencies": {
27
+ "@feasibleone/blong-dev": "workspace:*",
26
28
  "@rushstack/heft": "^1.2.6",
27
29
  "@rushstack/heft-lint-plugin": "^1.2.6",
28
30
  "@rushstack/heft-typescript-plugin": "^1.3.1",
package/dist/server.d.ts CHANGED
@@ -1,5 +1,7 @@
1
1
  declare const _default: import("@feasibleone/blong").SolutionFactory<import("typebox").TObject<{
2
2
  openapi: import("typebox").TObject<{}>;
3
- }>>;
3
+ }>> & {
4
+ [x: symbol]: "solution";
5
+ };
4
6
  export default _default;
5
7
  //# sourceMappingURL=server.d.ts.map
@@ -1 +1 @@
1
- {"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../server.ts"],"names":[],"mappings":";;;AAEA,wBAiBI"}
1
+ {"version":3,"file":"server.d.ts","sourceRoot":"","sources":["../server.ts"],"names":[],"mappings":";;;;;AAEA,wBAiBI"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feasibleone/blong-openapi",
3
- "version": "1.1.4",
3
+ "version": "1.2.0",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/feasibleone/blong.git"
6
6
  },
@@ -22,10 +22,12 @@
22
22
  "@rushstack/heft": "^1.2.6",
23
23
  "@rushstack/heft-lint-plugin": "^1.2.6",
24
24
  "@rushstack/heft-typescript-plugin": "^1.3.1",
25
- "typescript": "^5.9.3"
25
+ "typescript": "^5.9.3",
26
+ "@feasibleone/blong-dev": "1.0.0"
26
27
  },
27
28
  "scripts": {
28
29
  "build": "heft build --clean",
30
+ "ci-lint": "blong-dev lint",
29
31
  "ci-publish": "node ../../common/scripts/install-run-rush-pnpm.js publish --access public --provenance"
30
32
  }
31
33
  }