@availity/authorizations-axios 8.0.8 → 8.0.10
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 +5 -5
- package/dist/index.mjs +2 -2
- package/package.json +13 -5
- package/project.json +2 -2
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
|
+
## [8.0.10](https://github.com/Availity/sdk-js/compare/@availity/authorizations-axios@8.0.9...@availity/authorizations-axios@8.0.10) (2025-03-14)
|
|
6
|
+
|
|
7
|
+
### Dependency Updates
|
|
8
|
+
|
|
9
|
+
* `api-axios` updated to version `8.0.9`
|
|
10
|
+
* `authorizations-core` updated to version `8.0.9`
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
## [8.0.9](https://github.com/Availity/sdk-js/compare/@availity/authorizations-axios@8.0.8...@availity/authorizations-axios@8.0.9) (2025-03-10)
|
|
14
|
+
|
|
15
|
+
### Dependency Updates
|
|
16
|
+
|
|
17
|
+
* `@availity/api-axios` updated to version `8.0.8`
|
|
18
|
+
* `@availity/authorizations-core` updated to version `8.0.8`
|
|
19
|
+
|
|
20
|
+
|
|
5
21
|
## [8.0.8](https://github.com/Availity/sdk-js/compare/@availity/authorizations-axios@8.0.7...@availity/authorizations-axios@8.0.8) (2025-02-10)
|
|
6
22
|
|
|
7
23
|
### Dependency Updates
|
package/dist/index.js
CHANGED
|
@@ -28,11 +28,11 @@ var __toESM = (mod, isNodeMode, target) => (target = mod != null ? __create(__ge
|
|
|
28
28
|
var __toCommonJS = (mod) => __copyProps(__defProp({}, "__esModule", { value: true }), mod);
|
|
29
29
|
|
|
30
30
|
// src/index.js
|
|
31
|
-
var
|
|
32
|
-
__export(
|
|
33
|
-
default: () =>
|
|
31
|
+
var index_exports = {};
|
|
32
|
+
__export(index_exports, {
|
|
33
|
+
default: () => index_default
|
|
34
34
|
});
|
|
35
|
-
module.exports = __toCommonJS(
|
|
35
|
+
module.exports = __toCommonJS(index_exports);
|
|
36
36
|
var import_authorizations_core = __toESM(require("@availity/authorizations-core"));
|
|
37
37
|
var import_api_axios = require("@availity/api-axios");
|
|
38
38
|
var AvAuthorizationsReact = class extends import_authorizations_core.default {
|
|
@@ -40,4 +40,4 @@ var AvAuthorizationsReact = class extends import_authorizations_core.default {
|
|
|
40
40
|
super(import_api_axios.avUserPermissionsApi, import_api_axios.avRegionsApi, Promise);
|
|
41
41
|
}
|
|
42
42
|
};
|
|
43
|
-
var
|
|
43
|
+
var index_default = new AvAuthorizationsReact();
|
package/dist/index.mjs
CHANGED
|
@@ -6,7 +6,7 @@ var AvAuthorizationsReact = class extends AvAuthorizations {
|
|
|
6
6
|
super(avUserPermissionsApi, avRegionsApi, Promise);
|
|
7
7
|
}
|
|
8
8
|
};
|
|
9
|
-
var
|
|
9
|
+
var index_default = new AvAuthorizationsReact();
|
|
10
10
|
export {
|
|
11
|
-
|
|
11
|
+
index_default as default
|
|
12
12
|
};
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@availity/authorizations-axios",
|
|
3
|
-
"version": "8.0.
|
|
3
|
+
"version": "8.0.10",
|
|
4
4
|
"description": "Availity authorizations react logic",
|
|
5
5
|
"homepage": "https://availity.github.io/sdk-js/api/authorizations",
|
|
6
6
|
"bugs": {
|
|
@@ -17,6 +17,14 @@
|
|
|
17
17
|
"main": "./dist/index.js",
|
|
18
18
|
"module": "./dist/index.mjs",
|
|
19
19
|
"types": "./dist/index.d.ts",
|
|
20
|
+
"exports": {
|
|
21
|
+
"./package.json": "./package.json",
|
|
22
|
+
".": {
|
|
23
|
+
"types": "./dist/index.d.ts",
|
|
24
|
+
"import": "./dist/index.mjs",
|
|
25
|
+
"require": "./dist/index.js"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
20
28
|
"engines": {
|
|
21
29
|
"node": "^18.0.0 || ^20.0.0"
|
|
22
30
|
},
|
|
@@ -29,12 +37,12 @@
|
|
|
29
37
|
"publish": "yarn npm publish --tolerate-republish --access public"
|
|
30
38
|
},
|
|
31
39
|
"dependencies": {
|
|
32
|
-
"@availity/api-axios": "10.0.
|
|
33
|
-
"@availity/authorizations-core": "4.0.
|
|
40
|
+
"@availity/api-axios": "10.0.2",
|
|
41
|
+
"@availity/authorizations-core": "4.0.2"
|
|
34
42
|
},
|
|
35
43
|
"devDependencies": {
|
|
36
|
-
"axios": "^1.
|
|
37
|
-
"tsup": "^
|
|
44
|
+
"axios": "^1.8.2",
|
|
45
|
+
"tsup": "^8.4.0",
|
|
38
46
|
"typescript": "^5.5.4"
|
|
39
47
|
},
|
|
40
48
|
"peerDependencies": {
|
package/project.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"name": "
|
|
2
|
+
"name": "authorizations-axios",
|
|
3
3
|
"$schema": "../../node_modules/nx/schemas/project-schema.json",
|
|
4
4
|
"projectType": "library",
|
|
5
5
|
"targets": {
|
|
@@ -15,7 +15,7 @@
|
|
|
15
15
|
"options": {
|
|
16
16
|
"preset": "angular",
|
|
17
17
|
"commitMessageFormat": "chore({projectName}): release version ${version} [skip ci]",
|
|
18
|
-
"tagPrefix": "{projectName}@",
|
|
18
|
+
"tagPrefix": "@availity/{projectName}@",
|
|
19
19
|
"baseBranch": "master",
|
|
20
20
|
"trackDeps": true
|
|
21
21
|
}
|