Socket
Socket
Sign inDemoInstall

@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.4 to 1.0.0-alpha.5

6

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

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

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

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

@@ -5,3 +5,3 @@ import AvApi from '../resource';

constructor(http, promise, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -13,4 +13,4 @@ path: 'api/sdk/platform',

);
super(http, promise, thisConfig);
super(http, promise, options);
}
}

@@ -5,10 +5,10 @@ import AvApi from '../resource';

constructor(http, promise, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{
path: 'api',
name: 'notification',
name: 'notifications',
},
config
);
super(http, promise, thisConfig);
super(http, promise, options);
}

@@ -15,0 +15,0 @@

@@ -5,3 +5,3 @@ import AvApi from '../resource';

constructor(http, promise, avUsers, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -13,3 +13,3 @@ path: 'api/sdk/platform',

);
super(http, promise, thisConfig);
super(http, promise, options);

@@ -16,0 +16,0 @@ if (!avUsers) {

@@ -5,3 +5,3 @@ import AvApi from '../resource';

constructor(http, promise, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -13,3 +13,3 @@ path: 'api/sdk/platform',

);
super(http, promise, thisConfig);
super(http, promise, options);
}

@@ -16,0 +16,0 @@

@@ -5,3 +5,3 @@ import AvApi from '../resource';

constructor(http, promise, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -13,3 +13,3 @@ path: 'api/internal',

);
super(http, promise, thisConfig);
super(http, promise, options);
}

@@ -16,0 +16,0 @@

@@ -8,3 +8,3 @@ import AvApi from '../resource';

}
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -16,4 +16,4 @@ path: `api/v1/proxy/${config.tenant}`,

);
super(http, promise, thisConfig);
super(http, promise, options);
}
}

@@ -5,3 +5,3 @@ import AvApi from '../resource';

constructor(http, promise, AvUsers, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -15,3 +15,3 @@ path: 'api/sdk/platform',

);
super(http, promise, thisConfig);
super(http, promise, options);
this.AvUsers = AvUsers;

@@ -18,0 +18,0 @@ }

@@ -5,3 +5,3 @@ import AvApi from '../resource';

constructor(http, promise, config = {}) {
const thisConfig = Object.assign(
const options = Object.assign(
{

@@ -13,3 +13,3 @@ path: 'api/sdk/platform',

);
super(http, promise, thisConfig);
super(http, promise, options);
}

@@ -16,0 +16,0 @@

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