@colijnit/transaction 12.1.141 → 12.1.142

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.
@@ -32,8 +32,8 @@
32
32
  function Version() {
33
33
  this.name = "@colijnit/transaction";
34
34
  this.description = "Colijn IT transaction package";
35
- this.symVer = "12.1.141";
36
- this.publishDate = "5-9-2023 18:11:13";
35
+ this.symVer = "12.1.142";
36
+ this.publishDate = "6-9-2023 09:31:37";
37
37
  }
38
38
  return Version;
39
39
  }());
@@ -1736,7 +1736,6 @@
1736
1736
  this._errorService = _errorService;
1737
1737
  this.controllerInitialized = new rxjs.BehaviorSubject(false);
1738
1738
  this._boFactory = new businessObjectFactory.BusinessObjectFactory();
1739
- this._internalParameterCache = new Map();
1740
1739
  }
1741
1740
  TransactionConnectorAdapterService.prototype.connect = function () {
1742
1741
  return __awaiter(this, void 0, void 0, function () {
@@ -1755,6 +1754,18 @@
1755
1754
  });
1756
1755
  });
1757
1756
  };
1757
+ TransactionConnectorAdapterService.prototype.logOut = function () {
1758
+ return __awaiter(this, void 0, void 0, function () {
1759
+ return __generator(this, function (_a) {
1760
+ switch (_a.label) {
1761
+ case 0: return [4 /*yield*/, this.connector.logOut()];
1762
+ case 1:
1763
+ _a.sent();
1764
+ return [2 /*return*/];
1765
+ }
1766
+ });
1767
+ });
1768
+ };
1758
1769
  TransactionConnectorAdapterService.prototype.getArticleFullObject = function (goodId) {
1759
1770
  return __awaiter(this, void 0, void 0, function () {
1760
1771
  var result;
@@ -6151,6 +6162,18 @@
6151
6162
  });
6152
6163
  });
6153
6164
  };
6165
+ TransactionConnectorService.prototype.logOut = function () {
6166
+ return __awaiter(this, void 0, void 0, function () {
6167
+ return __generator(this, function (_a) {
6168
+ switch (_a.label) {
6169
+ case 0: return [4 /*yield*/, this._adapterService.logOut()];
6170
+ case 1:
6171
+ _a.sent();
6172
+ return [2 /*return*/];
6173
+ }
6174
+ });
6175
+ });
6176
+ };
6154
6177
  TransactionConnectorService.prototype.getArticleFullObject = function (goodId) {
6155
6178
  return __awaiter(this, void 0, void 0, function () {
6156
6179
  var _this = this;
@@ -10153,6 +10176,18 @@
10153
10176
  _this.internalParameterReceiveGoodsWithDataTerminal = false;
10154
10177
  return _this;
10155
10178
  }
10179
+ TransactionService.prototype.logOut = function () {
10180
+ return __awaiter(this, void 0, void 0, function () {
10181
+ return __generator(this, function (_a) {
10182
+ switch (_a.label) {
10183
+ case 0: return [4 /*yield*/, this.connector.logOut()];
10184
+ case 1:
10185
+ _a.sent();
10186
+ return [2 /*return*/];
10187
+ }
10188
+ });
10189
+ });
10190
+ };
10156
10191
  TransactionService.prototype.prepareDropShipmentInternalParam = function () {
10157
10192
  var _this = this;
10158
10193
  this.getInternalParameter(internalParam_enum.InternalParam.DropShipment).then(function (value) { return _this.internalParameterAllowsDropShipment = value; });