@autologix-engineering/shared 1.2.359 → 1.2.361
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.
- package/package.json +1 -1
- package/src/index.js +0 -4
- package/src/index.js.map +1 -1
- package/src/lib/data-transfer-objects/src/create.update.ba.contract.dto.d.ts +4 -4
- package/src/lib/data-transfer-objects/src/create.update.ba.contract.dto.js +13 -2
- package/src/lib/data-transfer-objects/src/create.update.ba.contract.dto.js.map +1 -1
- package/src/lib/data-transfer-objects/src/get.vehicle.status.dto.d.ts +4 -0
- package/src/lib/data-transfer-objects/src/get.vehicle.status.dto.js +14 -0
- package/src/lib/data-transfer-objects/src/get.vehicle.status.dto.js.map +1 -1
package/package.json
CHANGED
package/src/index.js
CHANGED
|
@@ -6,9 +6,5 @@ export * from './lib/enums/src/index';
|
|
|
6
6
|
export * from './lib/events/src/index';
|
|
7
7
|
export * from './lib/models/src/index';
|
|
8
8
|
export * from './lib/routes/src/index';
|
|
9
|
-
// Utilities are not exported wholesale — the folder is large and much of it is
|
|
10
|
-
// server-shaped. These four are the shared way to address an LTR payout row by
|
|
11
|
-
// its date-and-shift identity, and the web has to arrive at the same key the
|
|
12
|
-
// backend does or the two disagree about which row is which.
|
|
13
9
|
export * from './lib/utilities/src/ltr.payout.row.key';
|
|
14
10
|
//# sourceMappingURL=index.js.map
|
package/src/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/shared/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../../libs/shared/src/index.ts"],"names":[],"mappings":"AAAA,cAAc,0BAA0B,CAAC;AACzC,cAAc,gCAAgC,CAAC;AAC/C,cAAc,uCAAuC,CAAC;AACtD,cAAc,6BAA6B,CAAC;AAC5C,cAAc,uBAAuB,CAAC;AACtC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wBAAwB,CAAC;AACvC,cAAc,wCAAwC,CAAC"}
|
|
@@ -19,8 +19,8 @@ export declare class CreateBAContractDTO {
|
|
|
19
19
|
rvToBeCollectedTenureEnd?: number;
|
|
20
20
|
rvToBeRecoveredDuringTenure?: number;
|
|
21
21
|
rvStatus?: string;
|
|
22
|
-
rvAmount?: number;
|
|
23
|
-
rvRefundDate?: string;
|
|
22
|
+
rvAmount?: number | null;
|
|
23
|
+
rvRefundDate?: string | null;
|
|
24
24
|
rvRemarks?: string;
|
|
25
25
|
yourShare?: number;
|
|
26
26
|
depositAmount?: number;
|
|
@@ -29,8 +29,8 @@ export declare class CreateBAContractDTO {
|
|
|
29
29
|
bankName?: string;
|
|
30
30
|
transactionType?: string;
|
|
31
31
|
transactionId?: string;
|
|
32
|
-
refundAmount?: number;
|
|
33
|
-
refundDate?: string;
|
|
32
|
+
refundAmount?: number | null;
|
|
33
|
+
refundDate?: string | null;
|
|
34
34
|
refundRemarks?: string;
|
|
35
35
|
costPercentageType?: FixedCostType;
|
|
36
36
|
costPercentage?: number;
|
|
@@ -2,6 +2,17 @@ import { __decorate, __metadata } from "tslib";
|
|
|
2
2
|
import { IsUUID, IsEnum, IsDateString, IsNumber, IsString, IsOptional, Min, Max, IsArray, ValidateNested, } from 'class-validator';
|
|
3
3
|
import { Transform, Type } from 'class-transformer';
|
|
4
4
|
import { BAContractType, FixedCostType, BAContractStatus, } from '../../enums/src';
|
|
5
|
+
/**
|
|
6
|
+
* Number(), but null stays null.
|
|
7
|
+
*
|
|
8
|
+
* The refund amounts are cleared, not just filled in: when RM/SD Status goes
|
|
9
|
+
* back to Active the client sends the amount as null so the column empties
|
|
10
|
+
* alongside its refund date. Plain `@Transform(Number)` turns that null into
|
|
11
|
+
* 0, which writes a zero the form then redisplays as "0" — a value the user
|
|
12
|
+
* never typed and cannot tell apart from a genuine zero refund. class-validator
|
|
13
|
+
* lets null through @IsOptional() untouched, so preserving it is enough.
|
|
14
|
+
*/
|
|
15
|
+
const toNullableNumber = (value) => value === null || value === undefined || value === '' ? null : Number(value);
|
|
5
16
|
// ==================== CREATE DTO ====================
|
|
6
17
|
export class CreateBAContractDTO {
|
|
7
18
|
constructor(obj) {
|
|
@@ -115,7 +126,7 @@ __decorate([
|
|
|
115
126
|
__decorate([
|
|
116
127
|
IsOptional(),
|
|
117
128
|
IsNumber(),
|
|
118
|
-
Transform(
|
|
129
|
+
Transform(toNullableNumber),
|
|
119
130
|
__metadata("design:type", Number)
|
|
120
131
|
], CreateBAContractDTO.prototype, "rvAmount", void 0);
|
|
121
132
|
__decorate([
|
|
@@ -170,7 +181,7 @@ __decorate([
|
|
|
170
181
|
__decorate([
|
|
171
182
|
IsOptional(),
|
|
172
183
|
IsNumber({ maxDecimalPlaces: 2 }),
|
|
173
|
-
Transform(
|
|
184
|
+
Transform(toNullableNumber),
|
|
174
185
|
__metadata("design:type", Number)
|
|
175
186
|
], CreateBAContractDTO.prototype, "refundAmount", void 0);
|
|
176
187
|
__decorate([
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"create.update.ba.contract.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/create.update.ba.contract.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EACN,MAAM,EACN,MAAM,EACN,YAAY,EACZ,QAAQ,EACR,QAAQ,EACR,UAAU,EACV,GAAG,EACH,GAAG,EAEH,OAAO,EACP,cAAc,GACd,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AAEpD,OAAO,EACN,cAAc,EACd,aAAa,EACb,gBAAgB,GAChB,MAAM,iBAAiB,CAAC;AAEzB,uDAAuD;AACvD,MAAM,OAAO,mBAAmB;
|
|
1
|
+
{"version":3,"file":"create.update.ba.contract.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/create.update.ba.contract.dto.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,10 +1,14 @@
|
|
|
1
1
|
import { VehicleDutyStatus } from '../../enums/src/vehicle.duty.status.enum';
|
|
2
|
+
import { VehicleOwnershipType } from '../../enums/src/vehicle.business.type';
|
|
3
|
+
import { TermRentalType } from '../../enums/src/request.type.enum';
|
|
2
4
|
export declare class GetVehicleStatusDTO {
|
|
3
5
|
contextOwnerId: string;
|
|
4
6
|
ownerCity?: string[];
|
|
5
7
|
vehicleGroup?: string[];
|
|
6
8
|
dutyStatus?: VehicleDutyStatus[];
|
|
7
9
|
searchText?: string;
|
|
10
|
+
contractOwnerShip?: VehicleOwnershipType[];
|
|
11
|
+
rentalType?: TermRentalType[];
|
|
8
12
|
skip?: number;
|
|
9
13
|
limit?: number;
|
|
10
14
|
orderBy?: string;
|
|
@@ -2,6 +2,8 @@ import { __decorate, __metadata } from "tslib";
|
|
|
2
2
|
import { IsOptional, IsArray, IsString, IsNumber, IsEnum, IsUUID, IsBoolean, } from 'class-validator';
|
|
3
3
|
import { Transform, Type } from 'class-transformer';
|
|
4
4
|
import { VehicleDutyStatus } from '../../enums/src/vehicle.duty.status.enum';
|
|
5
|
+
import { VehicleOwnershipType } from '../../enums/src/vehicle.business.type';
|
|
6
|
+
import { TermRentalType } from '../../enums/src/request.type.enum';
|
|
5
7
|
export class GetVehicleStatusDTO {
|
|
6
8
|
constructor(obj) {
|
|
7
9
|
this.skip = 0;
|
|
@@ -36,6 +38,18 @@ __decorate([
|
|
|
36
38
|
IsString(),
|
|
37
39
|
__metadata("design:type", String)
|
|
38
40
|
], GetVehicleStatusDTO.prototype, "searchText", void 0);
|
|
41
|
+
__decorate([
|
|
42
|
+
IsOptional(),
|
|
43
|
+
IsArray(),
|
|
44
|
+
IsEnum(VehicleOwnershipType, { each: true }),
|
|
45
|
+
__metadata("design:type", Array)
|
|
46
|
+
], GetVehicleStatusDTO.prototype, "contractOwnerShip", void 0);
|
|
47
|
+
__decorate([
|
|
48
|
+
IsOptional(),
|
|
49
|
+
IsArray(),
|
|
50
|
+
IsEnum(TermRentalType, { each: true }),
|
|
51
|
+
__metadata("design:type", Array)
|
|
52
|
+
], GetVehicleStatusDTO.prototype, "rentalType", void 0);
|
|
39
53
|
__decorate([
|
|
40
54
|
IsOptional(),
|
|
41
55
|
Type(() => Number),
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.vehicle.status.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/get.vehicle.status.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EACN,UAAU,EACV,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,MAAM,EACN,MAAM,EACN,SAAS,GACT,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;
|
|
1
|
+
{"version":3,"file":"get.vehicle.status.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/get.vehicle.status.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EACN,UAAU,EACV,OAAO,EACP,QAAQ,EACR,QAAQ,EACR,MAAM,EACN,MAAM,EACN,SAAS,GACT,MAAM,iBAAiB,CAAC;AACzB,OAAO,EAAE,SAAS,EAAE,IAAI,EAAE,MAAM,mBAAmB,CAAC;AACpD,OAAO,EAAE,iBAAiB,EAAE,MAAM,0CAA0C,CAAC;AAC7E,OAAO,EAAE,oBAAoB,EAAE,MAAM,uCAAuC,CAAC;AAC7E,OAAO,EAAE,cAAc,EAAE,MAAM,mCAAmC,CAAC;AAEnE,MAAM,OAAO,mBAAmB;IA2D/B,YAAY,GAAkC;QApB9C,SAAI,GAAY,CAAC,CAAC;QAKlB,UAAK,GAAY,EAAE,CAAC;QAQpB,UAAK,GAAoB,MAAM,CAAC;QAQ/B,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AA5DA;IADC,MAAM,EAAE;;2DACc;AAKvB;IAHC,UAAU,EAAE;IACZ,OAAO,EAAE;IACT,QAAQ,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;sDACJ;AAKrB;IAHC,UAAU,EAAE;IACZ,OAAO,EAAE;IACT,QAAQ,CAAC,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;yDACD;AAIxB;IAFC,UAAU,EAAE;IACZ,MAAM,CAAC,iBAAiB,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;uDACT;AAIjC;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;uDACS;AAOpB;IAHC,UAAU,EAAE;IACZ,OAAO,EAAE;IACT,MAAM,CAAC,oBAAoB,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;8DACF;AAO3C;IAHC,UAAU,EAAE;IACZ,OAAO,EAAE;IACT,MAAM,CAAC,cAAc,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;uDACT;AAK9B;IAHC,UAAU,EAAE;IACZ,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,QAAQ,EAAE;;iDACO;AAKlB;IAHC,UAAU,EAAE;IACZ,IAAI,CAAC,GAAG,EAAE,CAAC,MAAM,CAAC;IAClB,QAAQ,EAAE;;kDACS;AAIpB;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;oDACM;AAIjB;IAFC,UAAU,EAAE;IACZ,QAAQ,EAAE;;kDACqB;AAKhC;IAHC,UAAU,EAAE;IACZ,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,CAAC,CAAC,KAAK,MAAM,CAAC;IACtC,SAAS,EAAE;;mDACK"}
|