@availity/dl-axios 5.0.6 → 5.0.7

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,13 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [5.0.7](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@5.0.6...@availity/dl-axios@5.0.7) (2024-07-29)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `@availity/dl-core` updated to version `5.0.6`
10
+
11
+
5
12
  ## [5.0.6](https://github.com/Availity/sdk-js/compare/@availity/dl-axios@5.0.5...@availity/dl-axios@5.0.6) (2024-05-30)
6
13
 
7
14
  ### 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
- default: () => src_default
33
+ AvDownloadApi: () => AvDownloadApi
34
34
  });
35
35
  module.exports = __toCommonJS(src_exports);
36
36
 
@@ -48,6 +48,7 @@ var AvDownloadApi = class extends import_dl_core.default {
48
48
  });
49
49
  }
50
50
  };
51
-
52
- // src/index.js
53
- var src_default = AvDownloadApi;
51
+ // Annotate the CommonJS export names for ESM import in node:
52
+ 0 && (module.exports = {
53
+ AvDownloadApi
54
+ });
package/dist/index.mjs CHANGED
@@ -12,9 +12,6 @@ var AvDownloadApi = class extends DownloadMicroservice {
12
12
  });
13
13
  }
14
14
  };
15
-
16
- // src/index.js
17
- var src_default = AvDownloadApi;
18
15
  export {
19
- src_default as default
16
+ AvDownloadApi
20
17
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/dl-axios",
3
- "version": "5.0.6",
3
+ "version": "5.0.7",
4
4
  "description": "Utility to download files from services",
5
5
  "keywords": [
6
6
  "download",
@@ -31,13 +31,13 @@
31
31
  "publish": "yarn npm publish --tolerate-republish --access public"
32
32
  },
33
33
  "dependencies": {
34
- "@availity/dl-core": "4.0.6",
34
+ "@availity/dl-core": "4.0.7",
35
35
  "lodash": "^4.17.21"
36
36
  },
37
37
  "devDependencies": {
38
- "axios": "^1.6.7",
38
+ "axios": "^1.7.2",
39
39
  "tsup": "^7.2.0",
40
- "typescript": "^5.1.6"
40
+ "typescript": "^5.5.4"
41
41
  },
42
42
  "peerDependencies": {
43
43
  "axios": "^1.4.0"
package/project.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
- "root": "packages/dl-axios",
2
+ "name": "@availity/dl-axios",
3
+ "$schema": "../../node_modules/nx/schemas/project-schema.json",
3
4
  "projectType": "library",
4
5
  "targets": {
5
6
  "test": {
6
7
  "executor": "@nx/jest:jest",
7
- "outputs": ["coverage/dl-axios"],
8
+ "outputs": ["{workspaceRoot}/coverage/dl-axios"],
8
9
  "options": {
9
- "jestConfig": "packages/dl-axios/jest.config.js",
10
- "passWithNoTests": true
10
+ "jestConfig": "packages/dl-axios/jest.config.js"
11
11
  }
12
12
  },
13
13
  "version": {
@@ -15,16 +15,15 @@
15
15
  "options": {
16
16
  "preset": "angular",
17
17
  "commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
18
- "tagPrefix": "@availity/{projectName}@",
18
+ "tagPrefix": "{projectName}@",
19
19
  "baseBranch": "master",
20
20
  "trackDeps": true
21
21
  }
22
22
  },
23
23
  "lint": {
24
- "executor": "@nx/linter:eslint",
24
+ "executor": "@nx/eslint:lint",
25
25
  "options": {
26
26
  "eslintConfig": ".eslintrc.yaml",
27
- "lintFilePatterns": ["packages/dl-axios/**/*.{js,ts}"],
28
27
  "silent": false,
29
28
  "fix": false,
30
29
  "cache": true,
package/src/index.js CHANGED
@@ -1,3 +1 @@
1
- import AvDownloadApi from './download';
2
-
3
- export default AvDownloadApi;
1
+ export {default as AvDownloadApi} from './download';