@feasibleone/blong-gogo 1.14.2 → 1.14.3

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,12 @@
1
1
  # Changelog
2
2
 
3
+ ## [1.14.3](https://github.com/feasibleone/blong/compare/blong-gogo-v1.14.2...blong-gogo-v1.14.3) (2026-03-24)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * type generation ([425c3ca](https://github.com/feasibleone/blong/commit/425c3cac5863253c39138a3245be876f0e0a74dd))
9
+
3
10
  ## [1.14.2](https://github.com/feasibleone/blong/compare/blong-gogo-v1.14.1...blong-gogo-v1.14.2) (2026-03-23)
4
11
 
5
12
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@feasibleone/blong-gogo",
3
- "version": "1.14.2",
3
+ "version": "1.14.3",
4
4
  "repository": {
5
5
  "url": "git+https://github.com/feasibleone/blong.git"
6
6
  },
package/src/Watch.ts CHANGED
@@ -151,11 +151,11 @@ export default class Watch extends Internal implements IWatch {
151
151
  });
152
152
 
153
153
  declare module '@feasibleone/blong' {
154
- interface IRemoteHandler {
154
+ interface ISchema {
155
155
  ${names
156
156
  .map(
157
157
  name =>
158
- `${name}<T=ReturnType<${name}>>(params: Parameters<${name}>[0], $meta: IMeta): T;`,
158
+ `${name}(params: Parameters<${name}>[0], $meta: IMeta): ReturnType<${name}>;`,
159
159
  )
160
160
  .join('\n')}
161
161
  }