@devbookhq/extension
Advanced tools
Comparing version
"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
34198
11.56%42
10.53%504
10.77%