@availity/dl-axios 4.0.3 → 5.0.1

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
@@ -2,6 +2,52 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [5.0.1](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@5.0.0...@availity/dl-axios@5.0.1) (2023-08-23)
6
+
7
+
8
+
9
+ # 1.0.0 (2023-08-23)
10
+
11
+
12
+ ### Bug Fixes
13
+
14
+ * add browser field for output ([0ce7170](https://github.com/Availity/sdk-js/commit/0ce717075a82675b8707e4db0cc07cd4af370f3d))
15
+ * add lerna ignore for package-locks ([3217d96](https://github.com/Availity/sdk-js/commit/3217d96c1ad7b3b9b752d9376b88d9b91daabca6))
16
+ * **dl-axios:** fix export class ([9d470e0](https://github.com/Availity/sdk-js/commit/9d470e07732ceba643bc59e19345bd70ddda8d53))
17
+ * **dl-axios:** fix import ([d42db46](https://github.com/Availity/sdk-js/commit/d42db46f1daf3348125d6e6caac17a7f5c6179ed))
18
+ * fixed package-lock issues boiling down to this repo ([8c896f4](https://github.com/Availity/sdk-js/commit/8c896f486e49eb969320edfbfab422d47abe4ab1))
19
+
20
+
21
+ ### chore
22
+
23
+ * **dl-axios:** bump axios to v1 ([0ffdaa8](https://github.com/Availity/sdk-js/commit/0ffdaa88d82724de0a36e3639cec4358a724e72b))
24
+
25
+
26
+ * build!: switch from lerna to nx and compile to esm with tsup ([c586085](https://github.com/Availity/sdk-js/commit/c5860856ca96b743a0653d335ea00f0889132f7f))
27
+
28
+
29
+ ### BREAKING CHANGES
30
+
31
+ * **dl-axios:** axios v1.4.0 or greater is now required
32
+ * Drop Internet Explorer support
33
+ * upgrades other packages that are using old package-locks
34
+
35
+
36
+
37
+ # [5.0.0](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@4.0.3...@availity/dl-axios@5.0.0) (2023-06-14)
38
+
39
+
40
+ ### chore
41
+
42
+ * **dl-axios:** bump axios to v1 ([0ffdaa8](https://github.com/Availity/sdk-js/commit/0ffdaa88d82724de0a36e3639cec4358a724e72b))
43
+
44
+
45
+ ### BREAKING CHANGES
46
+
47
+ * **dl-axios:** axios v1.4.0 or greater is now required
48
+
49
+
50
+
5
51
  ## [4.0.3](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@4.0.2...@availity/dl-axios@4.0.3) (2022-06-15)
6
52
 
7
53
 
@@ -0,0 +1,5 @@
1
+ import DownloadCore from '@availity/dl-core';
2
+
3
+ declare class AvDownloadApi extends DownloadCore {}
4
+
5
+ export { AvDownloadApi as default };
package/dist/index.js CHANGED
@@ -1,3 +1,4 @@
1
+ "use strict";
1
2
  var __create = Object.create;
2
3
  var __defProp = Object.defineProperty;
3
4
  var __getOwnPropDesc = Object.getOwnPropertyDescriptor;
@@ -16,7 +17,14 @@ var __copyProps = (to, from, except, desc) => {
16
17
  }
17
18
  return to;
18
19
  };
19
- var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target, mod));
20
+ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__getProtoOf(mod)) : {}, __copyProps(
21
+ // If the importer is in node compatibility mode or this is not an ESM
22
+ // file that has been converted to a CommonJS file using a Babel-
23
+ // compatible transform (i.e. "__esModule" has not been set), then set
24
+ // "default" to the CommonJS "module.exports" for node compatibility.
25
+ isNodeMode || !mod || !mod.__esModule ? __defProp(target, "default", { value: mod, enumerable: true }) : target,
26
+ mod
27
+ ));
20
28
  var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
21
29
 
22
30
  // src/index.js
@@ -44,5 +52,3 @@ var AvDownloadApi = class extends import_dl_core.default {
44
52
 
45
53
  // src/index.js
46
54
  var src_default = AvDownloadApi;
47
- // Annotate the CommonJS export names for ESM import in node:
48
- 0 && (module.exports = {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/dl-axios",
3
- "version": "4.0.3",
3
+ "version": "5.0.1",
4
4
  "description": "Utility to download files from services",
5
5
  "keywords": [
6
6
  "download",
@@ -32,12 +32,12 @@
32
32
  "publish": "yarn npm publish --tolerate-republish --access public"
33
33
  },
34
34
  "dependencies": {
35
- "@availity/dl-core": "4.0.3"
35
+ "@availity/dl-core": "4.0.4"
36
36
  },
37
37
  "devDependencies": {
38
- "axios": "^0.21.1",
39
- "tsup": "^5.12.8",
40
- "typescript": "^4.6.4"
38
+ "axios": "^1.4.0",
39
+ "tsup": "^7.2.0",
40
+ "typescript": "^5.1.6"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "axios": "^0.21.1"
package/project.json CHANGED
@@ -3,7 +3,7 @@
3
3
  "projectType": "library",
4
4
  "targets": {
5
5
  "test": {
6
- "executor": "@nrwl/jest:jest",
6
+ "executor": "@nx/jest:jest",
7
7
  "outputs": ["coverage/dl-axios"],
8
8
  "options": {
9
9
  "jestConfig": "packages/dl-axios/jest.config.js",
@@ -14,13 +14,13 @@
14
14
  "executor": "@jscutlery/semver:version",
15
15
  "options": {
16
16
  "preset": "angular",
17
- "commitMessageFormat": "chore(${projectName}): release version ${version} [skip ci]",
18
- "tagPrefix": "@availity/${projectName}@",
17
+ "commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
18
+ "tagPrefix": "@availity/{projectName}@",
19
19
  "baseBranch": "master"
20
20
  }
21
21
  },
22
22
  "lint": {
23
- "executor": "@nrwl/linter:eslint",
23
+ "executor": "@nx/linter:eslint",
24
24
  "options": {
25
25
  "eslintConfig": ".eslintrc.yaml",
26
26
  "lintFilePatterns": ["packages/dl-axios/**/*.{js,ts}"],