investira.sdk 2.2.7 → 2.2.8

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/CHANGELOG.md CHANGED
@@ -416,3 +416,7 @@ O contrutor para a criação das mensagem foi alterado.
416
416
  # 2.2.7
417
417
 
418
418
  - [BasicMessages] <code>BasicMessage</code> verifica se mensagem recebida já é uma basicMessage
419
+
420
+ # 2.2.8
421
+
422
+ - [axios] Atualização da versão "0.21.4" versão para "0.25.0"
@@ -49,7 +49,7 @@ const numbers = {
49
49
  if (isNull(pString)) {
50
50
  return null;
51
51
  }
52
- return pString.replace(/[^\d]/g, '');
52
+ return String(pString).replace(/[^\d]/g, '');
53
53
  },
54
54
 
55
55
  /**
package/package.json CHANGED
@@ -1,16 +1,16 @@
1
1
  {
2
2
  "name": "investira.sdk",
3
- "version": "2.2.7",
3
+ "version": "2.2.8",
4
4
  "author": "Investira",
5
5
  "description": "Investira SDK",
6
6
  "main": "index.js",
7
7
  "type": "commonjs",
8
8
  "registry": true,
9
- "raw": "investira.sdk@2.2.7",
9
+ "raw": "investira.sdk@2.2.8",
10
10
  "escapedName": "investira.sdk",
11
- "rawSpec": "2.2.7",
11
+ "rawSpec": "2.2.8",
12
12
  "saveSpec": null,
13
- "fetchSpec": "2.2.7",
13
+ "fetchSpec": "2.2.8",
14
14
  "homepage": "https://investira.com.br/",
15
15
  "engines": {
16
16
  "node": ">=11.11.0 <=14.17.5",
@@ -34,14 +34,14 @@
34
34
  "_test": "nodemon ./_tests/test"
35
35
  },
36
36
  "dependencies": {
37
- "axios": "0.21.4",
37
+ "axios": "0.25.0",
38
38
  "deep-diff": "1.0.2",
39
39
  "flatted": "3.2.2",
40
40
  "investira.data": "^1.1.13",
41
41
  "moment": "2.24.0"
42
42
  },
43
43
  "devDependencies": {
44
- "tape": "^4.14.0"
44
+ "tape": "^4.15.0"
45
45
  },
46
46
  "jshintConfig": {
47
47
  "curly": true,