New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@leisurelink/authentic-client

Package Overview
Dependencies
Maintainers
23
Versions
11
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@leisurelink/authentic-client - npm Package Compare versions

Comparing version 1.0.0 to 1.1.0

.idea/.name

19

index.js

@@ -19,2 +19,3 @@ 'use strict';

'endpoint-key-post': "authentic/v1/{lang}/endpoints/{principalId}/keys",
'endpoint-key-delete': "authentic/v1/{lang}/endpoints/{principalId}/keys/{keyId}",
'endpoint-claims-get': "authentic/v1/{lang}/endpoints/{principalId}/claims",

@@ -416,2 +417,20 @@

api.deleteEndpointKey = function(lang, principalId, keyId, callback) {
assert.string(lang, 'lang');
assert.string(principalId, 'principalId');
assert.string('key', key);
var options = {
method: 'DELETE'
};
this.request(
this.route('endpoint-key-delete', {
lang: lang,
principalId: principalId,
keyId: keyId
}),
options,
callback
);
};
api.getEndpointClaims = function(lang, principalId, callback) {

@@ -418,0 +437,0 @@ assert.string(lang, 'lang');

2

package.json
{
"name": "@leisurelink/authentic-client",
"version": "1.0.0",
"version": "1.1.0",
"description": "LeisureLink client library to the authentic-api",

@@ -5,0 +5,0 @@ "main": "index.js",

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