@availity/dl-axios 6.0.0 → 6.0.2
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 +16 -0
- package/dist/index.js +4 -5
- package/dist/index.mjs +4 -1
- package/package.json +4 -4
- package/src/index.js +4 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,22 @@
|
|
|
2
2
|
|
|
3
3
|
This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
|
|
4
4
|
|
|
5
|
+
## [6.0.2](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@6.0.1...@availity/dl-axios@6.0.2) (2024-10-04)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `@availity/dl-core` updated to version `6.0.1`
|
|
10
|
+
|
|
11
|
+
|
|
12
|
+
## [6.0.1](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@6.0.0...@availity/dl-axios@6.0.1) (2024-09-05)
|
|
13
|
+
|
|
14
|
+
|
|
15
|
+
### Bug Fixes
|
|
16
|
+
|
|
17
|
+
* **dl-axios:** revert back to default export to avoid a breaking change ([89a7564](https://github.com/Availity/sdk-js/commit/89a75644cfc5f5369cf972235722f19b1bff3962))
|
|
18
|
+
|
|
19
|
+
|
|
20
|
+
|
|
5
21
|
# [6.0.0](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@5.0.7...@availity/dl-axios@6.0.0) (2024-07-29)
|
|
6
22
|
|
|
7
23
|
### Dependency Updates
|
package/dist/index.js
CHANGED
|
@@ -30,7 +30,7 @@ var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: tru
|
|
|
30
30
|
// src/index.js
|
|
31
31
|
var src_exports = {};
|
|
32
32
|
__export(src_exports, {
|
|
33
|
-
|
|
33
|
+
default: () => src_default
|
|
34
34
|
});
|
|
35
35
|
module.exports = __toCommonJS(src_exports);
|
|
36
36
|
|
|
@@ -48,7 +48,6 @@ var AvDownloadApi = class extends import_dl_core.default {
|
|
|
48
48
|
});
|
|
49
49
|
}
|
|
50
50
|
};
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
});
|
|
51
|
+
|
|
52
|
+
// src/index.js
|
|
53
|
+
var src_default = AvDownloadApi;
|
package/dist/index.mjs
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/dl-axios",
|
|
3
|
-
"version": "6.0.
|
|
3
|
+
"version": "6.0.2",
|
|
4
4
|
"description": "Utility to download files from services",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"download",
|
|
@@ -34,16 +34,16 @@
|
|
|
34
34
|
"publish": "yarn npm publish --tolerate-republish --access public"
|
|
35
35
|
},
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@availity/dl-core": "5.0.
|
|
37
|
+
"@availity/dl-core": "5.0.1",
|
|
38
38
|
"lodash": "^4.17.21"
|
|
39
39
|
},
|
|
40
40
|
"devDependencies": {
|
|
41
|
-
"axios": "^1.7.
|
|
41
|
+
"axios": "^1.7.7",
|
|
42
42
|
"tsup": "^7.2.0",
|
|
43
43
|
"typescript": "^5.5.4"
|
|
44
44
|
},
|
|
45
45
|
"peerDependencies": {
|
|
46
|
-
"axios": "^1.4
|
|
46
|
+
"axios": "^1.7.4"
|
|
47
47
|
},
|
|
48
48
|
"publishConfig": {
|
|
49
49
|
"access": "public"
|
package/src/index.js
CHANGED