pipedrive 13.3.1 → 13.3.2
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +7 -0
- package/package.json +4 -4
package/CHANGELOG.md
CHANGED
@@ -8,6 +8,13 @@ For public Changelog covering all changes done to Pipedrive’s API, webhooks an
|
|
8
8
|
|
9
9
|
## [Unreleased]
|
10
10
|
|
11
|
+
## 13.3.2
|
12
|
+
### Changed
|
13
|
+
- Moved the following dependencies to devDependencies:
|
14
|
+
- `@babel/cli`
|
15
|
+
- `@babel/runtime`
|
16
|
+
- `jest-environment-node`
|
17
|
+
|
11
18
|
## 13.3.1
|
12
19
|
### Fixed
|
13
20
|
- Date formatting in responses in the following entities and their respective fields:
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "pipedrive",
|
3
|
-
"version": "13.3.
|
3
|
+
"version": "13.3.2",
|
4
4
|
"description": "Pipedrive REST client for NodeJS",
|
5
5
|
"license": "MIT",
|
6
6
|
"main": "dist/index.js",
|
@@ -18,13 +18,11 @@
|
|
18
18
|
"fs": false
|
19
19
|
},
|
20
20
|
"dependencies": {
|
21
|
-
"@babel/cli": "^7.0.0",
|
22
|
-
"@babel/runtime": "^7.14.0",
|
23
|
-
"jest-environment-node": "^27.4.4",
|
24
21
|
"superagent": "^5.3.0",
|
25
22
|
"lodash": "^4.17.21"
|
26
23
|
},
|
27
24
|
"devDependencies": {
|
25
|
+
"@babel/cli": "^7.0.0",
|
28
26
|
"@babel/core": "^7.0.0",
|
29
27
|
"@babel/plugin-proposal-class-properties": "^7.0.0",
|
30
28
|
"@babel/plugin-proposal-decorators": "^7.0.0",
|
@@ -45,11 +43,13 @@
|
|
45
43
|
"@babel/plugin-transform-runtime": "^7.12.1",
|
46
44
|
"@babel/preset-env": "^7.0.0",
|
47
45
|
"@babel/register": "^7.0.0",
|
46
|
+
"@babel/runtime": "^7.14.0",
|
48
47
|
"@pipedrive/sonar-scanner": "^3.3.1",
|
49
48
|
"axios": "^0.21.0",
|
50
49
|
"expect.js": "^0.3.1",
|
51
50
|
"get-port": "^5.1.1",
|
52
51
|
"jest": "^26.6.3",
|
52
|
+
"jest-environment-node": "^27.4.4",
|
53
53
|
"minimist": "^1.2.5",
|
54
54
|
"mocha": "^8.0.1",
|
55
55
|
"mockserver-client": "^5.11.2",
|