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

@devbookhq/extension

Package Overview
Dependencies
Maintainers
2
Versions
18
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@devbookhq/extension - npm Package Compare versions

Comparing version

to
0.0.6

lib/CallReturnHandler.d.ts

2

lib/call.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.CallError = exports.Call = void 0;
// Enum values here are the exact names of functions that should be exported from the extension code
// Enum values here are the exact names of functions that should be exported from the extension's code
var Call;

@@ -6,0 +6,0 @@ (function (Call) {

import { Call, CallInput, CallOutput } from './call';
export declare type ExtensionExports = {
export declare type ExtensionEventHandlers = {
[Call.Search]: (data: CallInput[Call.Search]) => (Promise<CallOutput[Call.Search]> | CallOutput[Call.Search]);

@@ -4,0 +4,0 @@ [Call.GetSources]: (data: CallInput[Call.GetSources]) => (Promise<CallOutput[Call.GetSources]> | CallOutput[Call.GetSources]);

@@ -6,3 +6,3 @@ "use strict";

function ExtensionModuleHandler(extensionModulePath) {
this.exports = require(extensionModulePath);
this.exports = require(extensionModulePath).default;
}

@@ -9,0 +9,0 @@ ExtensionModuleHandler.prototype.getCallHandler = function (callType) {

@@ -47,3 +47,3 @@ "use strict";

var status_1 = require("./status");
var OutputHandler_1 = __importDefault(require("./OutputHandler"));
var CallReturnHandler_1 = __importDefault(require("./CallReturnHandler"));
var ExtensionModuleHandler_1 = __importDefault(require("./ExtensionModuleHandler"));

@@ -73,3 +73,3 @@ var ExtensionProcess = /** @class */ (function () {

callHandler = this.extensionModule.getCallHandler(message.callType);
callReturnHandler = new OutputHandler_1.default(message);
callReturnHandler = new CallReturnHandler_1.default(message);
if (!callHandler) {

@@ -76,0 +76,0 @@ return [2 /*return*/, callReturnHandler.sendCallError(call_1.CallError.UnknownCall, { reason: "\"" + message.callType + "\" handler is not present in the extension." })];

@@ -6,5 +6,5 @@ import ExtensionProcess from './ExtensionProcess';

export * from './status';
export { ExtensionExports } from './ExtensionModuleHandler';
export { ExtensionEventHandlers } from './ExtensionModuleHandler';
declare const _default: false | ExtensionProcess;
export default _default;
//# sourceMappingURL=index.d.ts.map
{
"name": "@devbookhq/extension",
"version": "0.0.5",
"version": "0.0.6",
"description": "",

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

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is not supported yet