@autologix-engineering/shared 1.0.541 → 1.0.543

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@autologix-engineering/shared",
3
- "version": "1.0.541",
3
+ "version": "1.0.543",
4
4
  "dependencies": {
5
5
  "tslib": "^2.3.0"
6
6
  },
@@ -3,5 +3,9 @@ export declare class AssignDriverAndVehicleToRequestDTO {
3
3
  driverPersonaId: string;
4
4
  vehicleAssociationId: string;
5
5
  byPersonaId: string;
6
+ pickupDateTime?: Date;
7
+ dropDateTime?: Date;
8
+ garageStartDateTime?: Date;
9
+ garageEndDateTime?: Date;
6
10
  constructor(_obj?: Partial<AssignDriverAndVehicleToRequestDTO>);
7
11
  }
@@ -1,5 +1,5 @@
1
1
  import { __decorate, __metadata } from "tslib";
2
- import { IsUUID } from 'class-validator';
2
+ import { IsOptional, IsUUID } from 'class-validator';
3
3
  export class AssignDriverAndVehicleToRequestDTO {
4
4
  constructor(_obj) {
5
5
  Object.assign(this, _obj);
@@ -21,4 +21,20 @@ __decorate([
21
21
  IsUUID(),
22
22
  __metadata("design:type", String)
23
23
  ], AssignDriverAndVehicleToRequestDTO.prototype, "byPersonaId", void 0);
24
+ __decorate([
25
+ IsOptional(),
26
+ __metadata("design:type", Date)
27
+ ], AssignDriverAndVehicleToRequestDTO.prototype, "pickupDateTime", void 0);
28
+ __decorate([
29
+ IsOptional(),
30
+ __metadata("design:type", Date)
31
+ ], AssignDriverAndVehicleToRequestDTO.prototype, "dropDateTime", void 0);
32
+ __decorate([
33
+ IsOptional(),
34
+ __metadata("design:type", Date)
35
+ ], AssignDriverAndVehicleToRequestDTO.prototype, "garageStartDateTime", void 0);
36
+ __decorate([
37
+ IsOptional(),
38
+ __metadata("design:type", Date)
39
+ ], AssignDriverAndVehicleToRequestDTO.prototype, "garageEndDateTime", void 0);
24
40
  //# sourceMappingURL=assign.driver.and.vehicle.to.request.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"assign.driver.and.vehicle.to.request.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/assign.driver.and.vehicle.to.request.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEzC,MAAM,OAAO,kCAAkC;IAa9C,YAAY,IAAkD;QAC7D,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC3B,CAAC;CACD;AAdA;IADC,MAAM,EAAE;;qEACS;AAGlB;IADC,MAAM,EAAE;;2EACe;AAGxB;IADC,MAAM,EAAE;;gFACoB;AAG7B;IADC,MAAM,EAAE;;uEACW"}
1
+ {"version":3,"file":"assign.driver.and.vehicle.to.request.dto.js","sourceRoot":"","sources":["../../../../../../../../libs/shared/src/lib/data-transfer-objects/src/command/assign.driver.and.vehicle.to.request.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAErD,MAAM,OAAO,kCAAkC;IAyB9C,YAAY,IAAkD;QAC7D,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;IAC3B,CAAC;CACD;AA1BA;IADC,MAAM,EAAE;;qEACS;AAGlB;IADC,MAAM,EAAE;;2EACe;AAGxB;IADC,MAAM,EAAE;;gFACoB;AAG7B;IADC,MAAM,EAAE;;uEACW;AAGpB;IADC,UAAU,EAAE;8BACI,IAAI;0EAAC;AAGtB;IADC,UAAU,EAAE;8BACE,IAAI;wEAAC;AAGpB;IADC,UAAU,EAAE;8BACS,IAAI;+EAAC;AAG3B;IADC,UAAU,EAAE;8BACO,IAAI;6EAAC"}
@@ -1,7 +1,7 @@
1
1
  import { ComplianceVerificationFor } from '../../enums/src/index';
2
2
  export declare class UpdateComplianceDetailsDTO {
3
3
  clientPersonaId: string;
4
- backgroundVerificationFor: ComplianceVerificationFor;
5
- policeVerificationFor: ComplianceVerificationFor;
4
+ backgroundVerificationFor?: ComplianceVerificationFor[];
5
+ policeVerificationFor?: ComplianceVerificationFor[];
6
6
  constructor(obj?: Partial<UpdateComplianceDetailsDTO>);
7
7
  }
@@ -1,6 +1,6 @@
1
1
  import { __decorate, __metadata } from "tslib";
2
2
  import { ComplianceVerificationFor } from '../../enums/src/index';
3
- import { IsEnum, IsOptional, IsUUID } from 'class-validator';
3
+ import { IsArray, IsEnum, IsOptional, IsUUID } from 'class-validator';
4
4
  export class UpdateComplianceDetailsDTO {
5
5
  constructor(obj) {
6
6
  Object.assign(this, obj);
@@ -12,12 +12,14 @@ __decorate([
12
12
  ], UpdateComplianceDetailsDTO.prototype, "clientPersonaId", void 0);
13
13
  __decorate([
14
14
  IsOptional(),
15
- IsEnum(ComplianceVerificationFor),
16
- __metadata("design:type", String)
15
+ IsArray(),
16
+ IsEnum(ComplianceVerificationFor, { each: true }),
17
+ __metadata("design:type", Array)
17
18
  ], UpdateComplianceDetailsDTO.prototype, "backgroundVerificationFor", void 0);
18
19
  __decorate([
19
20
  IsOptional(),
20
- IsEnum(ComplianceVerificationFor),
21
- __metadata("design:type", String)
21
+ IsArray(),
22
+ IsEnum(ComplianceVerificationFor, { each: true }),
23
+ __metadata("design:type", Array)
22
24
  ], UpdateComplianceDetailsDTO.prototype, "policeVerificationFor", void 0);
23
25
  //# sourceMappingURL=update.compliance.details.dto.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"update.compliance.details.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/update.compliance.details.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAE7D,MAAM,OAAO,0BAA0B;IAYtC,YAAY,GAAyC;QACpD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AAbA;IADC,MAAM,EAAE;;mEACe;AAIxB;IAFC,UAAU,EAAE;IACZ,MAAM,CAAC,yBAAyB,CAAC;;6EACmB;AAIrD;IAFC,UAAU,EAAE;IACZ,MAAM,CAAC,yBAAyB,CAAC;;yEACe"}
1
+ {"version":3,"file":"update.compliance.details.dto.js","sourceRoot":"","sources":["../../../../../../../libs/shared/src/lib/data-transfer-objects/src/update.compliance.details.dto.ts"],"names":[],"mappings":";AAAA,OAAO,EAAE,yBAAyB,EAAE,MAAM,uBAAuB,CAAC;AAClE,OAAO,EAAE,OAAO,EAAE,MAAM,EAAE,UAAU,EAAE,MAAM,EAAE,MAAM,iBAAiB,CAAC;AAEtE,MAAM,OAAO,0BAA0B;IActC,YAAY,GAAyC;QACpD,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE,GAAG,CAAC,CAAC;IAC1B,CAAC;CACD;AAfA;IADC,MAAM,EAAE;;mEACe;AAKxB;IAHC,UAAU,EAAE;IACZ,OAAO,EAAE;IACT,MAAM,CAAC,yBAAyB,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;6EACM;AAKxD;IAHC,UAAU,EAAE;IACZ,OAAO,EAAE;IACT,MAAM,CAAC,yBAAyB,EAAE,EAAE,IAAI,EAAE,IAAI,EAAE,CAAC;;yEACE"}
@@ -4,6 +4,6 @@ export declare enum ComplianceVerificationField {
4
4
  PoliceVerifiedFor = "polVerfFor"
5
5
  }
6
6
  export interface ComplianceVerification {
7
- [ComplianceVerificationField.BackgroundVerifiedFor]?: ComplianceVerificationFor;
8
- [ComplianceVerificationField.PoliceVerifiedFor]?: ComplianceVerificationFor;
7
+ [ComplianceVerificationField.BackgroundVerifiedFor]?: ComplianceVerificationFor[];
8
+ [ComplianceVerificationField.PoliceVerifiedFor]?: ComplianceVerificationFor[];
9
9
  }