@colijnit/transactionapi 260.1.2 → 260.1.3

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.
@@ -3,5 +3,7 @@ export declare enum LayoutCode {
3
3
  DeliveryNote = "Afleverbon",
4
4
  Invoice = "Factuur",
5
5
  PurchaseOrder = "Bestelbon",
6
- Quotation = "Offerte"
6
+ Quotation = "Offerte",
7
+ ReserveSticker = "Reserveringssticker",
8
+ OrderingSticker = "Bestelsticker"
7
9
  }
@@ -8,4 +8,6 @@ var LayoutCode;
8
8
  LayoutCode["Invoice"] = "Factuur";
9
9
  LayoutCode["PurchaseOrder"] = "Bestelbon";
10
10
  LayoutCode["Quotation"] = "Offerte";
11
+ LayoutCode["ReserveSticker"] = "Reserveringssticker";
12
+ LayoutCode["OrderingSticker"] = "Bestelsticker";
11
13
  })(LayoutCode = exports.LayoutCode || (exports.LayoutCode = {}));
@@ -104,6 +104,8 @@ export declare class TransactionLineInfo extends BusinessObject {
104
104
  isFormFinal: boolean;
105
105
  formId: number;
106
106
  chosenPackageAmount: number;
107
+ chosenReservationAmount: number;
108
+ chosenOrderingAmount: number;
107
109
  get articleTextAsArray(): string[];
108
110
  get configuration(): string;
109
111
  set configuration(value: string);
@@ -124,6 +124,14 @@ __decorate([
124
124
  (0, no_db_field_decorator_1.NoDbField)(),
125
125
  __metadata("design:type", Number)
126
126
  ], TransactionLineInfo.prototype, "chosenPackageAmount", void 0);
127
+ __decorate([
128
+ (0, no_db_field_decorator_1.NoDbField)(),
129
+ __metadata("design:type", Number)
130
+ ], TransactionLineInfo.prototype, "chosenReservationAmount", void 0);
131
+ __decorate([
132
+ (0, no_db_field_decorator_1.NoDbField)(),
133
+ __metadata("design:type", Number)
134
+ ], TransactionLineInfo.prototype, "chosenOrderingAmount", void 0);
127
135
  __decorate([
128
136
  (0, no_db_field_decorator_1.NoDbField)(),
129
137
  __metadata("design:type", Array),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "260.1.2",
3
+ "version": "260.1.3",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",