@availity/exceptions-axios 4.0.3 → 4.0.4

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,36 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [4.0.4](https://github.com/Availity/sdk-js/compare/@availity/exceptions-axios@4.0.3...@availity/exceptions-axios@4.0.4) (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
+ * **api-axios:** use merge-options-es5 instead of merge-options ([993ccc6](https://github.com/Availity/sdk-js/commit/993ccc6ff8db97b6e1d66454c93e7a33dfe95aee))
16
+ * fixed package-lock issues boiling down to this repo ([8c896f4](https://github.com/Availity/sdk-js/commit/8c896f486e49eb969320edfbfab422d47abe4ab1))
17
+ * update babel and jest configs, rename tests ([c80e194](https://github.com/Availity/sdk-js/commit/c80e1947f0c3cb28c3c7db842c82f381622d72e7))
18
+
19
+
20
+ * build!: switch from lerna to nx and compile to esm with tsup ([c586085](https://github.com/Availity/sdk-js/commit/c5860856ca96b743a0653d335ea00f0889132f7f))
21
+
22
+
23
+ ### Features
24
+
25
+ * **expections-axios:** add basic axios wrapper for execptions ([61803a9](https://github.com/Availity/sdk-js/commit/61803a910e5cf83db1a086af3d9c19656f7d75cb))
26
+
27
+
28
+ ### BREAKING CHANGES
29
+
30
+ * Drop Internet Explorer support
31
+ * upgrades other packages that are using old package-locks
32
+
33
+
34
+
5
35
  ## [4.0.3](https://github.com/Availity/sdk-js/compare/@availity/exceptions-axios@4.0.2...@availity/exceptions-axios@4.0.3) (2022-06-15)
6
36
 
7
37
 
@@ -0,0 +1,5 @@
1
+ import AvExceptionsCore from '@availity/exceptions-core';
2
+
3
+ declare const avExceptionsAxios: AvExceptionsCore;
4
+
5
+ export { avExceptionsAxios 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
@@ -29,5 +37,3 @@ var import_api_axios = require("@availity/api-axios");
29
37
  var import_exceptions_core = __toESM(require("@availity/exceptions-core"));
30
38
  var avExceptionsAxios = new import_exceptions_core.default(import_api_axios.avLogMessagesApi.error);
31
39
  var src_default = avExceptionsAxios;
32
- // Annotate the CommonJS export names for ESM import in node:
33
- 0 && (module.exports = {});
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/exceptions-axios",
3
- "version": "4.0.3",
3
+ "version": "4.0.4",
4
4
  "description": "Availity class to log exceptions via axios",
5
5
  "license": "MIT",
6
6
  "author": "Evan Sharp <evan.sharp@availity.com>",
@@ -18,12 +18,12 @@
18
18
  "publish": "yarn npm publish --tolerate-republish --access public"
19
19
  },
20
20
  "dependencies": {
21
- "@availity/api-axios": "7.0.3",
22
- "@availity/exceptions-core": "4.0.3"
21
+ "@availity/api-axios": "8.0.3",
22
+ "@availity/exceptions-core": "4.1.1"
23
23
  },
24
24
  "devDependencies": {
25
- "tsup": "^5.12.8",
26
- "typescript": "^4.6.4"
25
+ "tsup": "^7.2.0",
26
+ "typescript": "^5.1.6"
27
27
  },
28
28
  "publishConfig": {
29
29
  "access": "public"
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/exceptions-axios"],
8
8
  "options": {
9
9
  "jestConfig": "packages/exceptions-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/exceptions-axios/**/*.{js,ts}"],