@availity/authorizations-axios 10.0.1 → 10.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 CHANGED
@@ -2,6 +2,14 @@
2
2
 
3
3
  This file was generated using [@jscutlery/semver](https://github.com/jscutlery/semver).
4
4
 
5
+ ## [10.0.2](https://github.com/availity/sdk-js/compare/@availity/authorizations-axios@10.0.1...@availity/authorizations-axios@10.0.2) (2026-06-09)
6
+
7
+ ### Dependency Updates
8
+
9
+ * `api-axios` updated to version `10.0.1`
10
+ * `authorizations-core` updated to version `10.0.1`
11
+
12
+
5
13
  ## [10.0.1](https://github.com/availity/sdk-js/compare/@availity/authorizations-axios@10.0.0...@availity/authorizations-axios@10.0.1) (2026-06-09)
6
14
 
7
15
  ### Dependency Updates
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@availity/authorizations-axios",
3
- "version": "10.0.1",
3
+ "version": "10.0.2",
4
4
  "description": "Availity authorizations react logic",
5
5
  "homepage": "https://availity.github.io/sdk-js/api/authorizations",
6
6
  "bugs": {
@@ -31,12 +31,13 @@
31
31
  "dev": "tsup src/index.js --format esm --watch --dts",
32
32
  "lint": "eslint src",
33
33
  "lint:fix": "eslint src --fix",
34
- "clean": "rm -rf node_modules && rm -rf dist",
35
- "publish": "yarn npm publish --tolerate-republish --access public"
34
+ "clean": "rm -rf dist",
35
+ "publish": "yarn npm publish --tolerate-republish --access public",
36
+ "test": "vitest run"
36
37
  },
37
38
  "dependencies": {
38
- "@availity/api-axios": "13.0.1",
39
- "@availity/authorizations-core": "6.0.1"
39
+ "@availity/api-axios": "13.0.2",
40
+ "@availity/authorizations-core": "6.0.2"
40
41
  },
41
42
  "devDependencies": {
42
43
  "axios": "^1.17.0",
package/project.json CHANGED
@@ -4,10 +4,15 @@
4
4
  "projectType": "library",
5
5
  "targets": {
6
6
  "test": {
7
- "executor": "@nx/jest:jest",
8
- "outputs": ["{workspaceRoot}/coverage/authorizations-axios"],
7
+ "executor": "nx:run-commands",
9
8
  "options": {
10
- "jestConfig": "packages/authorizations-axios/jest.config.cjs"
9
+ "command": "vitest run --project=authorizations-axios",
10
+ "cwd": "."
11
+ },
12
+ "configurations": {
13
+ "ci": {
14
+ "command": "vitest run --project=authorizations-axios --coverage"
15
+ }
11
16
  }
12
17
  },
13
18
  "version": {
@@ -0,0 +1,12 @@
1
+ import { defineProject } from 'vitest/config';
2
+ import { alias } from '../../vitest.aliases.ts';
3
+
4
+ export default defineProject({
5
+ resolve: { alias },
6
+ test: {
7
+ name: 'authorizations-axios',
8
+ globals: true,
9
+ environment: 'jsdom',
10
+ include: ['src/**/*.test.{ts,js}'],
11
+ },
12
+ });
package/jest.config.cjs DELETED
@@ -1,7 +0,0 @@
1
- const global = require('../../jest.config.cjs');
2
-
3
- module.exports = {
4
- ...global,
5
- displayName: 'authorizations-axios',
6
- coverageDirectory: '../../coverage/authorizations-axios',
7
- };
@@ -1,10 +0,0 @@
1
- {
2
- "extends": "./tsconfig.json",
3
- "compilerOptions": {
4
- "outDir": "../../dist/out-tsc",
5
- "module": "commonjs",
6
- "types": ["jest", "node"],
7
- "allowJs": true
8
- },
9
- "include": ["**/*.test.ts", "**/*.spec.ts", "**/*.d.ts"]
10
- }