@colijnit/transactionapi 256.1.14 → 256.1.15

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.
@@ -121,6 +121,7 @@ export declare class TransactionLineInfo extends BusinessObject {
121
121
  quantityToBePicked: number;
122
122
  purchasePortalLine: PurchasePortalLine;
123
123
  refTransactions: TransactionRefTransaction[];
124
+ refServiceTransactions: TransactionRefTransaction[];
124
125
  deliveryCostLine: boolean;
125
126
  linkedAnalysisResultId: number;
126
127
  set visible(value: boolean);
@@ -34,6 +34,7 @@ class TransactionLineInfo extends business_object_1.BusinessObject {
34
34
  this.selected = false;
35
35
  this.purchasePortalLine = new purchase_portal_line_bo_1.PurchasePortalLine();
36
36
  this.refTransactions = [];
37
+ this.refServiceTransactions = [];
37
38
  this.deliveryCostLine = false;
38
39
  this.visibilityChange = new rxjs_1.Subject();
39
40
  this._visible = false;
@@ -223,6 +224,10 @@ __decorate([
223
224
  (0, no_db_field_decorator_1.NoDbField)(),
224
225
  __metadata("design:type", Array)
225
226
  ], TransactionLineInfo.prototype, "refTransactions", void 0);
227
+ __decorate([
228
+ (0, no_db_field_decorator_1.NoDbField)(),
229
+ __metadata("design:type", Array)
230
+ ], TransactionLineInfo.prototype, "refServiceTransactions", void 0);
226
231
  __decorate([
227
232
  (0, no_db_field_decorator_1.NoDbField)(),
228
233
  __metadata("design:type", Boolean)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "256.1.14",
3
+ "version": "256.1.15",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",