@inflector/optima 1.0.15 → 1.0.16

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 (2) hide show
  1. package/dist/index.js +2 -2
  2. package/package.json +1 -1
package/dist/index.js CHANGED
@@ -727,7 +727,7 @@ ${valuesBlock}${isReturning ? "\nRETURNING *" : ""};`;
727
727
  if (data.returning) {
728
728
  this.notifyChange({
729
729
  event: "Update",
730
- data: Result,
730
+ data: this.FormatOut(Result),
731
731
  time: /* @__PURE__ */ new Date()
732
732
  });
733
733
  } else {
@@ -761,7 +761,7 @@ ${valuesBlock}${isReturning ? "\nRETURNING *" : ""};`;
761
761
  if (data.returning) {
762
762
  this.notifyChange({
763
763
  event: "Delete",
764
- data: Result,
764
+ data: this.FormatOut(Result),
765
765
  time: /* @__PURE__ */ new Date()
766
766
  });
767
767
  } else {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@inflector/optima",
3
- "version": "1.0.15",
3
+ "version": "1.0.16",
4
4
  "type": "module",
5
5
  "author": "Inflector",
6
6
  "main": "./dist/index.js",