breeze-bindgen 1.1.2 → 1.1.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/dist/cli.mjs CHANGED
@@ -344,7 +344,7 @@ template<> struct js_bind<${fullName}> {
344
344
  }
345
345
  for (const field of fields) {
346
346
  binding += `
347
- .property<&${fullName}::${field.name}>("${field.name}")`;
347
+ .fun<&${fullName}::${field.name}>("${field.name}")`;
348
348
  }
349
349
  binding += `
350
350
  ;
package/dist/core.cjs CHANGED
@@ -555,7 +555,7 @@ template<> struct js_bind<${fullName}> {
555
555
  }
556
556
  for (const field of fields) {
557
557
  binding += `
558
- .property<&${fullName}::${field.name}>("${field.name}")`;
558
+ .fun<&${fullName}::${field.name}>("${field.name}")`;
559
559
  }
560
560
  binding += `
561
561
  ;
package/dist/core.mjs CHANGED
@@ -550,7 +550,7 @@ template<> struct js_bind<${fullName}> {
550
550
  }
551
551
  for (const field of fields) {
552
552
  binding += `
553
- .property<&${fullName}::${field.name}>("${field.name}")`;
553
+ .fun<&${fullName}::${field.name}>("${field.name}")`;
554
554
  }
555
555
  binding += `
556
556
  ;
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
3
3
  "name": "breeze-bindgen",
4
- "version": "1.1.2",
4
+ "version": "1.1.3",
5
5
  "main": "dist/index.cjs",
6
6
  "module": "dist/index.mjs",
7
7
  "types": "dist/index.d.ts",