Socket
Socket
Sign inDemoInstall

@availity/api-core

Package Overview
Dependencies
Maintainers
5
Versions
120
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.8 to 1.0.0-alpha.9

6

package.json
{
"name": "@availity/api-core",
"version": "1.0.0-alpha.8",
"version": "1.0.0-alpha.9",
"description": "Base API definitions for the Availity REST API",

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

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

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

@@ -15,6 +15,12 @@ import AvApi from '../api';

getProviders(customerId, config) {
const params = Object.assign({}, { customerId }, config.params || {});
return this.query(Object.assign({}, { params }, config));
getProviders(customerId, config = {}) {
let queryConfig = {
params: {
customerId,
},
};
queryConfig = Object.assign({}, queryConfig, config);
return this.query(queryConfig);
}
}
SocketSocket SOC 2 Logo

Product

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

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc