@hpcc-js/comms
Version:
hpcc-js - Communications
22 lines • 804 B
JavaScript
import { __assign, __extends } from "tslib";
import { SMCServiceBase, WsSMC } from "./wsdl/WsSMC/v1.27/WsSMC";
export { WsSMC };
var SMCService = /** @class */ (function (_super) {
__extends(SMCService, _super);
function SMCService() {
return _super !== null && _super.apply(this, arguments) || this;
}
SMCService.prototype.connectionOptions = function () {
return this._connection.opts();
};
SMCService.prototype.Activity = function (request) {
return _super.prototype.Activity.call(this, request).then(function (response) {
return __assign({ Running: {
ActiveWorkunit: []
} }, response);
});
};
return SMCService;
}(SMCServiceBase));
export { SMCService };
//# sourceMappingURL=wsSMC.js.map