@autologix-engineering/shared 1.2.326 → 1.2.328
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 +3 -3
- package/src/lib/data-transfer-objects/src/get.pool.ltr.monthly.data.dto.d.ts +6 -0
- package/src/lib/data-transfer-objects/src/get.pool.ltr.monthly.data.dto.js +6 -1
- package/src/lib/data-transfer-objects/src/get.pool.ltr.monthly.data.dto.js.map +1 -1
- /package/{README.md → dist/libs/shared/libs/shared/README.md} +0 -0
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@autologix-engineering/shared",
|
|
3
|
-
"version": "1.2.
|
|
3
|
+
"version": "1.2.328",
|
|
4
4
|
"dependencies": {
|
|
5
5
|
"tslib": "^2.3.0"
|
|
6
6
|
},
|
|
@@ -12,6 +12,6 @@
|
|
|
12
12
|
"test": "echo \"Error: no test specified\" && exit 1"
|
|
13
13
|
},
|
|
14
14
|
"author": "autologix-engineering",
|
|
15
|
-
"types": "
|
|
16
|
-
"module": "
|
|
15
|
+
"types": "./../../dist/libs/shared/libs/shared/src/index.d.ts",
|
|
16
|
+
"module": "./../../dist/libs/shared/libs/shared/src/index.js"
|
|
17
17
|
}
|
|
@@ -1,5 +1,11 @@
|
|
|
1
1
|
export declare class GetPoolLTRMonthlyData {
|
|
2
2
|
contextId: string;
|
|
3
3
|
ltrBookingID?: string;
|
|
4
|
+
/**
|
|
5
|
+
* Optional LTR end (same ISO as validate `dropTime`).
|
|
6
|
+
* When set, aggregates only Completed sub-bookings with PickupTime <= dropTime.
|
|
7
|
+
* Preview only — does not cancel or cascade.
|
|
8
|
+
*/
|
|
9
|
+
dropTime?: string;
|
|
4
10
|
constructor(obj?: Partial<GetPoolLTRMonthlyData>);
|
|
5
11
|
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { __decorate, __metadata } from "tslib";
|
|
2
|
-
import { IsOptional, IsUUID } from 'class-validator';
|
|
2
|
+
import { IsDateString, IsOptional, IsUUID } from 'class-validator';
|
|
3
3
|
export class GetPoolLTRMonthlyData {
|
|
4
4
|
constructor(obj) {
|
|
5
5
|
Object.assign(this, obj);
|
|
@@ -14,4 +14,9 @@ __decorate([
|
|
|
14
14
|
IsUUID(),
|
|
15
15
|
__metadata("design:type", String)
|
|
16
16
|
], GetPoolLTRMonthlyData.prototype, "ltrBookingID", void 0);
|
|
17
|
+
__decorate([
|
|
18
|
+
IsOptional(),
|
|
19
|
+
IsDateString(),
|
|
20
|
+
__metadata("design:type", String)
|
|
21
|
+
], GetPoolLTRMonthlyData.prototype, "dropTime", void 0);
|
|
17
22
|
//# sourceMappingURL=get.pool.ltr.monthly.data.dto.js.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"get.pool.ltr.monthly.data.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/get.pool.ltr.monthly.data.dto.ts"],"names":[],"mappings":";AAAA,OAAO,
|
|
1
|
+
{"version":3,"file":"get.pool.ltr.monthly.data.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/get.pool.ltr.monthly.data.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,YAAY,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEnE,MAAM,OAAO,qBAAqB;IAiBjC,YAAY,GAAoC;QAC/C,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AAlBA;IADC,MAAM,EAAE;;wDACS;AAIlB;IAFC,UAAU,EAAE;IACZ,MAAM,EAAE;;2DACa;AAStB;IAFC,UAAU,EAAE;IACZ,YAAY,EAAE;;uDACG"}
|
|
File without changes
|