@hpcc-js/comms 2.94.1 → 2.95.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/index.js CHANGED
@@ -648,8 +648,8 @@
648
648
  }
649
649
 
650
650
  var PKG_NAME = "@hpcc-js/comms";
651
- var PKG_VERSION = "2.94.1";
652
- var BUILD_VERSION = "2.106.2";
651
+ var PKG_VERSION = "2.95.0";
652
+ var BUILD_VERSION = "2.106.3";
653
653
 
654
654
  /******************************************************************************
655
655
  Copyright (c) Microsoft Corporation.
@@ -2564,6 +2564,44 @@
2564
2564
  return ResourcesService;
2565
2565
  }(ResourcesServiceBase));
2566
2566
 
2567
+ exports.WsSasha = void 0;
2568
+ (function (WsSasha) {
2569
+ (function (WUTypes) {
2570
+ WUTypes["ECL"] = "ECL";
2571
+ WUTypes["DFU"] = "DFU";
2572
+ })(WsSasha.WUTypes || (WsSasha.WUTypes = {}));
2573
+ })(exports.WsSasha || (exports.WsSasha = {}));
2574
+ var SashaServiceBase = /** @class */ (function (_super) {
2575
+ __extends(SashaServiceBase, _super);
2576
+ function SashaServiceBase(optsConnection) {
2577
+ return _super.call(this, optsConnection, "WSSasha", "1.01") || this;
2578
+ }
2579
+ SashaServiceBase.prototype.ArchiveWU = function (request) {
2580
+ return this._connection.send("ArchiveWU", request, "json", false, undefined, "ResultResponse");
2581
+ };
2582
+ SashaServiceBase.prototype.GetVersion = function (request) {
2583
+ return this._connection.send("GetVersion", request, "json", false, undefined, "ResultResponse");
2584
+ };
2585
+ SashaServiceBase.prototype.ListWU = function (request) {
2586
+ return this._connection.send("ListWU", request, "json", false, undefined, "ResultResponse");
2587
+ };
2588
+ SashaServiceBase.prototype.Ping = function (request) {
2589
+ return this._connection.send("Ping", request, "json", false, undefined, "WSSashaPingResponse");
2590
+ };
2591
+ SashaServiceBase.prototype.RestoreWU = function (request) {
2592
+ return this._connection.send("RestoreWU", request, "json", false, undefined, "ResultResponse");
2593
+ };
2594
+ return SashaServiceBase;
2595
+ }(Service));
2596
+
2597
+ var SashaService = /** @class */ (function (_super) {
2598
+ __extends(SashaService, _super);
2599
+ function SashaService() {
2600
+ return _super !== null && _super.apply(this, arguments) || this;
2601
+ }
2602
+ return SashaService;
2603
+ }(SashaServiceBase));
2604
+
2567
2605
  exports.WsSMC = void 0;
2568
2606
  (function (WsSMC) {
2569
2607
  (function (LockModes) {
@@ -10234,6 +10272,7 @@
10234
10272
  exports.Result = Result;
10235
10273
  exports.ResultCache = ResultCache;
10236
10274
  exports.SMCService = SMCService;
10275
+ exports.SashaService = SashaService;
10237
10276
  exports.Scope = Scope;
10238
10277
  exports.ScopeEdge = ScopeEdge;
10239
10278
  exports.ScopeGraph = ScopeGraph;