eservices-core 1.0.549 → 1.0.550

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 +2 -2
package/dist/index.js CHANGED
@@ -1,5 +1,5 @@
1
1
  /*!
2
- * eservices-core v1.0.549
2
+ * eservices-core v1.0.550
3
3
  * (c) 2023 ESERVICES
4
4
  */
5
5
  'use strict';
@@ -2453,7 +2453,7 @@ function valuesToUpperCase(values) {
2453
2453
  let value = values[key];
2454
2454
  const newKey = key.charAt(0).toUpperCase() + key.slice(1); // upper
2455
2455
  // If current value is not primitive value, continue recursive parse
2456
- if (typeof value === 'object' && !(value === undefined || value === null))
2456
+ if (typeof value === 'object' && !(value === undefined || value === null || Array.isArray(value)))
2457
2457
  value = valuesToUpperCase(value);
2458
2458
  acc[newKey] = value;
2459
2459
  return acc;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eservices-core",
3
- "version": "1.0.549",
3
+ "version": "1.0.550",
4
4
  "description": "Core library",
5
5
  "author": "",
6
6
  "scripts": {
@@ -46,7 +46,7 @@
46
46
  },
47
47
  "peerDependencies": {
48
48
  "date-and-time": "^2.0.1",
49
- "jenesius-vue-form": "^2.3.3",
49
+ "jenesius-vue-form": "^2.3.6",
50
50
  "jenesius-vue-modal": "^1.5.0",
51
51
  "socket.io-client": "^4.5.2",
52
52
  "vue": "3.2.45",