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

autopilot-sdk

Package Overview
Dependencies
Maintainers
1
Versions
16
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

autopilot-sdk - npm Package Compare versions

Comparing version 0.0.9 to 0.0.10

27

dist/methods.js

@@ -141,16 +141,17 @@ 'use strict';

var methods = exports.methods = function methods(thisArg) {
/** setup `this` with values:
* - id
* - parent
* - method
* - single
*/
console.log('....');
return {
save: save.bind(thisArg),
get: get.bind(thisArg),
delete: del.bind(thisArg),
unsubscribe: unsubscribe.bind(thisArg)
};
return (
/** setup `this` with values:
* - id
* - parent
* - method
* - single
*/
{
save: save.bind(thisArg),
get: get.bind(thisArg),
delete: del.bind(thisArg),
unsubscribe: unsubscribe.bind(thisArg)
}
);
};
//# sourceMappingURL=methods.js.map

@@ -105,3 +105,3 @@ import utils, { parse, getVariables } from './utils';

export const methods = (thisArg) => {
export const methods = thisArg => (
/** setup `this` with values:

@@ -113,4 +113,3 @@ * - id

*/
console.log('....');
return {
{
save: save.bind(thisArg),

@@ -120,3 +119,3 @@ get: get.bind(thisArg),

unsubscribe: unsubscribe.bind(thisArg),
};
};
}
);
{
"name": "autopilot-sdk",
"description": "Node SDK for Autopilot",
"version": "0.0.9",
"version": "0.0.10",
"author": "Samuel Amoah <sa.am@programmer.net>",

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

Sorry, the diff of this file is not supported yet

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