@integromat/proto
Version:
Integromat Proto-Classes
64 lines • 2.42 kB
JavaScript
;
var __extends = (this && this.__extends) || (function () {
var extendStatics = function (d, b) {
extendStatics = Object.setPrototypeOf ||
({ __proto__: [] } instanceof Array && function (d, b) { d.__proto__ = b; }) ||
function (d, b) { for (var p in b) if (Object.prototype.hasOwnProperty.call(b, p)) d[p] = b[p]; };
return extendStatics(d, b);
};
return function (d, b) {
if (typeof b !== "function" && b !== null)
throw new TypeError("Class extends value " + String(b) + " is not a constructor or null");
extendStatics(d, b);
function __() { this.constructor = d; }
d.prototype = b === null ? Object.create(b) : (__.prototype = b.prototype, new __());
};
})();
Object.defineProperty(exports, "__esModule", { value: true });
exports.IMTGatewayResponder = exports.IMTGatewayAction = exports.IMTAction = void 0;
var base_1 = require("./base");
var IMTAction = /** @class */ (function (_super) {
__extends(IMTAction, _super);
function IMTAction() {
var _this = _super !== null && _super.apply(this, arguments) || this;
_this.type = base_1.ModuleType.ACTION;
return _this;
}
/**
* Writes data.
*
* @param {Object} bundle Collection of data to process.
* @callback done Callback to call when operations are done.
* @param {Error} err Error on error, otherwise null.
*/
IMTAction.prototype.write = function (bundle, done) {
void bundle;
void done;
throw new Error("Must override a superclass method 'write'.");
};
return IMTAction;
}(base_1.IMTBase));
exports.IMTAction = IMTAction;
/**
* Base Gateway Action.
*/
var IMTGatewayAction = /** @class */ (function (_super) {
__extends(IMTGatewayAction, _super);
function IMTGatewayAction() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IMTGatewayAction;
}(IMTAction));
exports.IMTGatewayAction = IMTGatewayAction;
/**
* Base Gateway Responder.
*/
var IMTGatewayResponder = /** @class */ (function (_super) {
__extends(IMTGatewayResponder, _super);
function IMTGatewayResponder() {
return _super !== null && _super.apply(this, arguments) || this;
}
return IMTGatewayResponder;
}(IMTAction));
exports.IMTGatewayResponder = IMTGatewayResponder;
//# sourceMappingURL=action.js.map