@connectedxm/admin 3.3.3 → 3.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/index.cjs CHANGED
@@ -21708,8 +21708,6 @@ var TransformPrice = (value, currency) => {
21708
21708
  maximumFractionDigits: 2
21709
21709
  });
21710
21710
  if (value === 0) return "--.--";
21711
- if (value < 0)
21712
- return formatter.format(-value / 100).replace(currency, `-${currency}`);
21713
21711
  return formatter.format(value / 100);
21714
21712
  };
21715
21713
 
package/dist/index.js CHANGED
@@ -18586,8 +18586,6 @@ var TransformPrice = (value, currency) => {
18586
18586
  maximumFractionDigits: 2
18587
18587
  });
18588
18588
  if (value === 0) return "--.--";
18589
- if (value < 0)
18590
- return formatter.format(-value / 100).replace(currency, `-${currency}`);
18591
18589
  return formatter.format(value / 100);
18592
18590
  };
18593
18591
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@connectedxm/admin",
3
- "version": "3.3.3",
3
+ "version": "3.3.4",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",