windmill-ts 0.3.3 → 0.3.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.
package/dist/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-ts",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Type-safe client for Windmill",
5
5
  "main": "dist/src/index.js",
6
6
  "bin": "dist/src/index.js",
@@ -13,7 +13,7 @@ const preamble = dedent `
13
13
  instance = fn();
14
14
  }
15
15
 
16
- let value = (instance as never)[prop];
16
+ let value = (instance as any)[prop];
17
17
  if (value instanceof Function) {
18
18
  value = value.bind(instance);
19
19
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "windmill-ts",
3
- "version": "0.3.3",
3
+ "version": "0.3.4",
4
4
  "description": "Type-safe client for Windmill",
5
5
  "main": "dist/src/index.js",
6
6
  "bin": "dist/src/index.js",