Socket
Socket
Sign inDemoInstall

@availity/api-core

Package Overview
Dependencies
Maintainers
8
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 5.0.1-alpha.4 to 5.0.1

8

CHANGELOG.md

@@ -6,2 +6,10 @@ # Change Log

## [5.0.1](https://github.com/Availity/sdk-js/compare/@availity/api-core@5.0.0...@availity/api-core@5.0.1) (2019-04-17)
**Note:** Version bump only for package @availity/api-core
# [5.0.0](https://github.com/Availity/sdk-js/compare/@availity/api-core@4.0.1...@availity/api-core@5.0.0) (2019-03-18)

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

4

package.json
{
"name": "@availity/api-core",
"version": "5.0.1-alpha.4+15438ee",
"version": "5.0.1",
"description": "Base API definitions for the Availity REST API",

@@ -28,3 +28,3 @@ "keywords": [

},
"gitHead": "15438ee7eee793bbad92406ee722b9306505cb8b"
"gitHead": "fb94eef197f4f9be7a70eedf053d5550ef4e619b"
}
import AvApi from './api';
import AvMicroservice from './ms';
import AvLogMessages from './resources/logs';
import AvLogMessagesV2 from './resources/dma';
import AvNavigation from './resources/navigation';

@@ -27,3 +26,2 @@ import AvNotification from './resources/notifications';

AvLogMessages,
AvLogMessagesV2,
AvNavigation,

@@ -44,3 +42,3 @@ AvNotification,

AvSlotMachine,
AvDisclaimers,
AvDisclaimers
};

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

getUrl(config, id = '') {
const { path, version, name, id: configId } = this.config(config);
let parts = [path, version || '', name];
const { path, name, id: configId } = this.config(config);
let parts = [path, name];
if (id || configId) {
parts = [path, version || '', name, id || configId];
parts = [path, name, id || configId];
}

@@ -23,0 +23,0 @@ return parts

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