@colijnit/transactionapi 256.1.8 → 256.1.9

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.
@@ -7,6 +7,12 @@ export declare class ResolveLinePendingReasonRequest {
7
7
  warehouseNr: number;
8
8
  commissionCode: string;
9
9
  quantity: number;
10
+ isDirectSell: boolean;
11
+ supplierId: number;
12
+ purchaseOrderNumber: string;
13
+ stockForecastDeliveryDate: Date;
14
+ interBranchSourceWarehouseNr: number;
15
+ interBranchCommissionCode: string;
10
16
  textualUserInput: string;
11
17
  constructor(uuid: string, reason: string, reasonType: PendingReasonType, confirmation?: boolean, warehouseNr?: number, commissionCode?: string, textualUserInput?: string);
12
18
  }
@@ -55,12 +55,14 @@ export declare class TransactionLineInfo extends BusinessObject {
55
55
  priceDeclaration: string;
56
56
  netto: boolean;
57
57
  dropShipment: boolean;
58
+ directSell: boolean;
58
59
  warehouseNumber: number;
59
60
  warehouseDescription: string;
60
61
  commissionCode: string;
61
62
  commissionDescription: string;
62
63
  deliveryMethodCode: string;
63
64
  deliveryMethodDescription: string;
65
+ expectedDeliveryDate: Date;
64
66
  deliveryDate: Date;
65
67
  assemblyTime: number;
66
68
  editTime: number;
@@ -96,6 +96,10 @@ __decorate([
96
96
  (0, no_db_field_decorator_1.NoDbField)(),
97
97
  __metadata("design:type", String)
98
98
  ], TransactionLineInfo.prototype, "deliveryMethodDescription", void 0);
99
+ __decorate([
100
+ (0, date_field_decorator_1.DateField)(),
101
+ __metadata("design:type", Date)
102
+ ], TransactionLineInfo.prototype, "expectedDeliveryDate", void 0);
99
103
  __decorate([
100
104
  (0, date_field_decorator_1.DateField)(),
101
105
  __metadata("design:type", Date)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "256.1.8",
3
+ "version": "256.1.9",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",
@@ -14,7 +14,7 @@
14
14
  "integration": "jest int",
15
15
  "fix-and-start": "npm i && npm run start-np"
16
16
  },
17
- "description": "public api for ione backend specific for transactions and version 2.5.4.",
17
+ "description": "public api for ione backend specific for transactions and version 2.5.6.",
18
18
  "repository": "npm/npm",
19
19
  "author": "Colijn IT",
20
20
  "license": "ISC",
@@ -28,7 +28,7 @@
28
28
  },
29
29
  "peerDependencies": {
30
30
  "@colijnit/ioneconnector": ">=256.1.0",
31
- "@colijnit/mainapi": ">=256.1.1",
31
+ "@colijnit/mainapi": ">=256.1.0",
32
32
  "@colijnit/relationapi": ">=256.1.0"
33
33
  },
34
34
  "devDependencies": {