Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@availity/api-core

Package Overview
Dependencies
Maintainers
5
Versions
121
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@availity/api-core - npm Package Compare versions

Comparing version 1.0.0-alpha.5 to 1.0.0-alpha.6

6

package.json
{
"name": "@availity/api-core",
"version": "1.0.0-alpha.5",
"version": "1.0.0-alpha.6",
"description": "Base definitions for Availity API",

@@ -17,6 +17,6 @@ "keywords": [

"peerDependencies": {
"@availity/localstorage-core": "^1.0.0-alpha.5"
"@availity/localstorage-core": "^1.0.0-alpha.6"
},
"devDependencies": {
"@availity/localstorage-core": "^1.0.0-alpha.5"
"@availity/localstorage-core": "^1.0.0-alpha.6"
},

@@ -23,0 +23,0 @@ "publishConfig": {

@@ -17,4 +17,4 @@ import AvApi from '../resource';

const params = Object.assign({}, { topicId: topic });
return this.query(Object.assign({}, { params }));
return this.remove(Object.assign({}, { params }));
}
}

@@ -20,3 +20,3 @@ import AvNotification from '../notification';

api = new AvNotification(mockHttp, Promise, {});
api.query = jest.fn();
api.remove = jest.fn();

@@ -27,4 +27,4 @@ const topic = 'test delete topic';

api.deleteByTopic(topic);
expect(api.query).toHaveBeenLastCalledWith(expectedConfig);
expect(api.remove).toHaveBeenLastCalledWith(expectedConfig);
});
});
SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc