@availity/dl-axios 3.0.59 → 3.0.63
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 +32 -0
- package/README.md +3 -1
- package/package.json +27 -16
package/CHANGELOG.md
CHANGED
|
@@ -3,6 +3,38 @@
|
|
|
3
3
|
All notable changes to this project will be documented in this file.
|
|
4
4
|
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
5
|
|
|
6
|
+
## 3.0.63 (2021-12-21)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @availity/dl-axios
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
## [3.0.62](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@3.0.61...@availity/dl-axios@3.0.62) (2021-10-29)
|
|
15
|
+
|
|
16
|
+
**Note:** Version bump only for package @availity/dl-axios
|
|
17
|
+
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
## 3.0.61 (2021-10-22)
|
|
23
|
+
|
|
24
|
+
**Note:** Version bump only for package @availity/dl-axios
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
|
|
30
|
+
## 3.0.60 (2021-09-30)
|
|
31
|
+
|
|
32
|
+
**Note:** Version bump only for package @availity/dl-axios
|
|
33
|
+
|
|
34
|
+
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
|
|
6
38
|
## 3.0.59 (2021-09-16)
|
|
7
39
|
|
|
8
40
|
**Note:** Version bump only for package @availity/dl-axios
|
package/README.md
CHANGED
|
@@ -1,8 +1,10 @@
|
|
|
1
|
-
# dl-axios
|
|
1
|
+
# @availity/dl-axios
|
|
2
2
|
|
|
3
3
|
> Utility to download files from services
|
|
4
4
|
|
|
5
5
|
[](https://www.npmjs.com/package/@availity/dl-axios)
|
|
6
|
+
[](https://www.npmjs.com/package/@availity/dl-axios)
|
|
7
|
+
[](https://github.com/Availity/sdk-js/blob/master/packages/dl-axios/package.json)
|
|
6
8
|
|
|
7
9
|
## Install
|
|
8
10
|
|
package/package.json
CHANGED
|
@@ -1,33 +1,44 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/dl-axios",
|
|
3
|
-
"version": "3.0.
|
|
3
|
+
"version": "3.0.63",
|
|
4
4
|
"description": "Utility to download files from services",
|
|
5
|
-
"main": "lib/index.js",
|
|
6
|
-
"module": "src/index.js",
|
|
7
|
-
"scripts": {
|
|
8
|
-
"test": "echo \"Error: no test specified\" && exit 1"
|
|
9
|
-
},
|
|
10
5
|
"keywords": [
|
|
11
6
|
"download",
|
|
12
7
|
"file",
|
|
13
8
|
"availity"
|
|
14
9
|
],
|
|
15
|
-
"
|
|
10
|
+
"homepage": "https://availity.github.io/sdk-js/api/downloads",
|
|
11
|
+
"bugs": {
|
|
12
|
+
"url": "https://github.com/availity/sdk-js/issues"
|
|
13
|
+
},
|
|
14
|
+
"repository": {
|
|
15
|
+
"type": "git",
|
|
16
|
+
"url": "git+https://github.com/availity/sdk-js.git",
|
|
17
|
+
"directory": "packages/dl-axios"
|
|
18
|
+
},
|
|
16
19
|
"license": "MIT",
|
|
17
|
-
"
|
|
18
|
-
|
|
19
|
-
|
|
20
|
+
"author": "Robert McGuinness",
|
|
21
|
+
"main": "lib/index.js",
|
|
22
|
+
"module": "src/index.js",
|
|
23
|
+
"scripts": {
|
|
24
|
+
"build": "yarn clean && yarn transpile",
|
|
25
|
+
"clean": "rimraf ./lib",
|
|
26
|
+
"transpile": "babel --root-mode upward src -d lib --ignore **/*.test.js"
|
|
27
|
+
},
|
|
28
|
+
"dependencies": {
|
|
29
|
+
"@babel/runtime": "^7.16.5",
|
|
30
|
+
"core-js": "^3.12.1"
|
|
20
31
|
},
|
|
21
32
|
"devDependencies": {
|
|
22
|
-
"@availity/dl-core": "^3.0.
|
|
33
|
+
"@availity/dl-core": "^3.0.63",
|
|
23
34
|
"axios": "^0.21.1"
|
|
24
35
|
},
|
|
36
|
+
"peerDependencies": {
|
|
37
|
+
"@availity/dl-core": "^2.3.3",
|
|
38
|
+
"axios": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0"
|
|
39
|
+
},
|
|
25
40
|
"publishConfig": {
|
|
26
41
|
"access": "public"
|
|
27
42
|
},
|
|
28
|
-
"gitHead": "
|
|
29
|
-
"dependencies": {
|
|
30
|
-
"@babel/runtime": "^7.14.0",
|
|
31
|
-
"core-js": "^3.12.1"
|
|
32
|
-
}
|
|
43
|
+
"gitHead": "1c3e8c8045b16fc5111f941d863600f0a97cdbff"
|
|
33
44
|
}
|