@uniorganization/uni-lib 1.1.36 → 1.1.38

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,11 +1,10 @@
1
1
  export declare class ActiveLoad {
2
- id: number;
2
+ orderNumber: string;
3
3
  targetDeliveryRange: string;
4
4
  customerRepresentative: string;
5
5
  raNumber: number;
6
6
  originCity: string;
7
7
  status: string;
8
- orderNumber: string;
9
8
  destinationName: string;
10
9
  destinationAddressOne: string;
11
10
  destinationCity: string;
@@ -14,9 +14,9 @@ const typeorm_1 = require("typeorm");
14
14
  let ActiveLoad = class ActiveLoad {
15
15
  };
16
16
  __decorate([
17
- (0, typeorm_1.Column)({ name: 'id' }),
18
- __metadata("design:type", Number)
19
- ], ActiveLoad.prototype, "id", void 0);
17
+ (0, typeorm_1.PrimaryColumn)({ name: 'order_number' }),
18
+ __metadata("design:type", String)
19
+ ], ActiveLoad.prototype, "orderNumber", void 0);
20
20
  __decorate([
21
21
  (0, typeorm_1.Column)({ name: 'target_delivery_range' }),
22
22
  __metadata("design:type", String)
@@ -37,10 +37,6 @@ __decorate([
37
37
  (0, typeorm_1.Column)(),
38
38
  __metadata("design:type", String)
39
39
  ], ActiveLoad.prototype, "status", void 0);
40
- __decorate([
41
- (0, typeorm_1.PrimaryColumn)({ name: 'order_number' }),
42
- __metadata("design:type", String)
43
- ], ActiveLoad.prototype, "orderNumber", void 0);
44
40
  __decorate([
45
41
  (0, typeorm_1.Column)({ name: 'dest_name' }),
46
42
  __metadata("design:type", String)
@@ -1,5 +1,4 @@
1
1
  export declare class DailyPaymentStatus {
2
- id: number;
3
2
  paymentReference: string;
4
3
  paymentType: string;
5
4
  amount: string;
@@ -13,10 +13,6 @@ exports.DailyPaymentStatus = void 0;
13
13
  const typeorm_1 = require("typeorm");
14
14
  let DailyPaymentStatus = class DailyPaymentStatus {
15
15
  };
16
- __decorate([
17
- (0, typeorm_1.Column)({ name: 'id' }),
18
- __metadata("design:type", Number)
19
- ], DailyPaymentStatus.prototype, "id", void 0);
20
16
  __decorate([
21
17
  (0, typeorm_1.PrimaryColumn)({ name: 'payment_reference' }),
22
18
  __metadata("design:type", String)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniorganization/uni-lib",
3
- "version": "1.1.36",
3
+ "version": "1.1.38",
4
4
  "description": "UNI Library",
5
5
  "author": "Jhomiguel",
6
6
  "main": "dist/index.js",