@connectedxm/admin 3.3.3 → 3.3.5

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
@@ -19754,7 +19754,7 @@ var GetSearchListConnectedQuestions = async ({
19754
19754
  cursor,
19755
19755
  pageSize,
19756
19756
  orderBy,
19757
- search
19757
+ search: search || void 0
19758
19758
  }
19759
19759
  }
19760
19760
  );
@@ -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
@@ -16632,7 +16632,7 @@ var GetSearchListConnectedQuestions = async ({
16632
16632
  cursor,
16633
16633
  pageSize,
16634
16634
  orderBy,
16635
- search
16635
+ search: search || void 0
16636
16636
  }
16637
16637
  }
16638
16638
  );
@@ -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.5",
4
4
  "description": "Admin API javascript SDK",
5
5
  "author": "ConnectedXM Inc.",
6
6
  "type": "module",