@colijnit/transactionapi 1.1.36 → 1.1.37

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.
@@ -1,5 +1,5 @@
1
1
  import { GoodsReceiptStatus } from "./goods-receipt-status.bo";
2
- import { GoodsReceiptHistory } from "./goods-receipt-history.bo";
2
+ import { LogisticalStateDetail } from "./logistical-state-detail.bo";
3
3
  export declare class GoodsReceiptStatusWithHistory extends GoodsReceiptStatus {
4
- goodsReceiptHistory: GoodsReceiptHistory[];
4
+ goodsReceiptHistory: LogisticalStateDetail[];
5
5
  }
@@ -1,11 +1,11 @@
1
1
  import { BusinessObject } from './business-object';
2
- export declare class GoodsReceiptHistory extends BusinessObject {
2
+ export declare class LogisticalStateDetail extends BusinessObject {
3
3
  documentId: number;
4
4
  lineNumber: number;
5
5
  refDocumentId: number;
6
6
  refDocumentLineNumber: number;
7
7
  status: string;
8
- receiptDate: Date;
8
+ date: Date;
9
9
  quantity: number;
10
10
  warehouseNumber: number;
11
11
  locationNumber: string;
@@ -13,6 +13,6 @@ export declare class GoodsReceiptHistory extends BusinessObject {
13
13
  serialNr: string;
14
14
  username: string;
15
15
  reference: string;
16
- corrections: GoodsReceiptHistory[];
16
+ corrections: LogisticalStateDetail[];
17
17
  type: string;
18
18
  }
@@ -22,15 +22,15 @@ var __metadata = (this && this.__metadata) || function (k, v) {
22
22
  };
23
23
  import { BusinessObject } from './business-object';
24
24
  import { DateField } from "../factory/decorators/date-field.decorator";
25
- var GoodsReceiptHistory = (function (_super) {
26
- __extends(GoodsReceiptHistory, _super);
27
- function GoodsReceiptHistory() {
25
+ var LogisticalStateDetail = (function (_super) {
26
+ __extends(LogisticalStateDetail, _super);
27
+ function LogisticalStateDetail() {
28
28
  return _super !== null && _super.apply(this, arguments) || this;
29
29
  }
30
30
  __decorate([
31
31
  DateField(),
32
32
  __metadata("design:type", Date)
33
- ], GoodsReceiptHistory.prototype, "receiptDate", void 0);
34
- return GoodsReceiptHistory;
33
+ ], LogisticalStateDetail.prototype, "date", void 0);
34
+ return LogisticalStateDetail;
35
35
  }(BusinessObject));
36
- export { GoodsReceiptHistory };
36
+ export { LogisticalStateDetail };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@colijnit/transactionapi",
3
- "version": "1.1.36",
3
+ "version": "1.1.37",
4
4
  "scripts": {
5
5
  "build": "grunt clean && tsc",
6
6
  "browserify": "browserify build/connector.js --s colijn -o dist/out-tsc/bundle.js",