grm-shared-library 1.0.229 → 1.0.231

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.
Files changed (189) hide show
  1. package/dist/decorators/case-decorators.js +7 -12
  2. package/dist/exceptions/custom-exception/custom-rpc.exception.js +5 -9
  3. package/dist/exceptions/enums/error-codes.enum.js +1 -4
  4. package/dist/exceptions/error-logger/error-logger.js +2 -6
  5. package/dist/exceptions/filters/all-exceptions.filter.js +17 -20
  6. package/dist/exceptions/filters/http-exceptions.filter.js +10 -13
  7. package/dist/exceptions/index.js +7 -23
  8. package/dist/exceptions/interfaces/error-context.js +1 -2
  9. package/dist/exceptions/interfaces/error-response.js +1 -2
  10. package/dist/index.js +18 -34
  11. package/dist/interfaces/i-request-with-user.js +1 -2
  12. package/dist/interfaces/jwt-payload.js +1 -2
  13. package/dist/interfaces/server-message.js +1 -2
  14. package/dist/interfaces/validated-user.js +1 -2
  15. package/dist/kafka/dtos/otp/create-otp-payload.dto.js +25 -29
  16. package/dist/kafka/dtos/otp/otp-payload.dto.js +10 -14
  17. package/dist/kafka/dtos/password/password-reset-payload.dto.js +13 -17
  18. package/dist/kafka/dtos/user/create-user-created-payload.dto.js +27 -31
  19. package/dist/kafka/dtos/user/create-user-registered-payload.dto.js +14 -18
  20. package/dist/kafka/dtos/user/user-created-payload.dto.js +10 -14
  21. package/dist/kafka/dtos/user/user-registered-payload.dto.js +6 -10
  22. package/dist/kafka/index.js +8 -24
  23. package/dist/kafka/topics.js +1 -4
  24. package/dist/modules/auth/dtos/change-password.dto.js +17 -21
  25. package/dist/modules/auth/dtos/forgot-password.dto.js +4 -8
  26. package/dist/modules/auth/dtos/login.dto.js +9 -13
  27. package/dist/modules/auth/dtos/refresh-token.dto.js +4 -8
  28. package/dist/modules/auth/dtos/register.dto.js +43 -47
  29. package/dist/modules/auth/dtos/resend-otp.dto.js +7 -11
  30. package/dist/modules/auth/dtos/reset-password.dto.js +15 -19
  31. package/dist/modules/auth/dtos/verify-otp.dto.js +6 -10
  32. package/dist/modules/auth/enums/otp-action.js +2 -5
  33. package/dist/modules/auth/index.d.ts +1 -0
  34. package/dist/modules/auth/index.js +12 -26
  35. package/dist/modules/auth/interfaces/login-response.js +1 -2
  36. package/dist/modules/auth/interfaces/register-response.js +1 -2
  37. package/dist/modules/auth/validators/match.decorator.js +3 -6
  38. package/dist/modules/common/constants/password-regex.const.js +1 -5
  39. package/dist/modules/common/constants/service.const.js +1 -4
  40. package/dist/modules/common/dtos/contact-person.dto.js +12 -16
  41. package/dist/modules/common/dtos/map-address.dto.js +20 -24
  42. package/dist/modules/common/dtos/map-location.dto.js +10 -14
  43. package/dist/modules/common/index.js +7 -23
  44. package/dist/modules/common/interfaces/contact-person.js +1 -2
  45. package/dist/modules/common/interfaces/map-address.js +1 -2
  46. package/dist/modules/common/interfaces/map-location.js +1 -2
  47. package/dist/modules/control-centre/dtos/create-control-centre.dto.js +29 -33
  48. package/dist/modules/control-centre/dtos/update-control-centre.dto.js +3 -7
  49. package/dist/modules/control-centre/enums/control-centre.enum.js +2 -5
  50. package/dist/modules/control-centre/index.js +4 -20
  51. package/dist/modules/control-centre/interfaces/control-centre.js +1 -2
  52. package/dist/modules/email/index.js +1 -17
  53. package/dist/modules/email/interfaces/user-created.js +1 -2
  54. package/dist/modules/incident/dtos/action/create-incident-action.dto.js +13 -17
  55. package/dist/modules/incident/dtos/action/incident-action.dto.js +8 -12
  56. package/dist/modules/incident/dtos/action/update-inident-action.dto.js +3 -7
  57. package/dist/modules/incident/dtos/assignment/create-incident-assignment.dto.js +14 -18
  58. package/dist/modules/incident/dtos/assignment/incident-assignment.dto.js +8 -12
  59. package/dist/modules/incident/dtos/assignment/update-incident-assignment.dto.js +3 -7
  60. package/dist/modules/incident/dtos/attachment/create-incident-attachment.dto.js +12 -16
  61. package/dist/modules/incident/dtos/attachment/update-incident-attachment.dto.js +3 -7
  62. package/dist/modules/incident/dtos/category/create-incident-category.dto.js +10 -14
  63. package/dist/modules/incident/dtos/category/update-incident-category.dto.js +3 -7
  64. package/dist/modules/incident/dtos/incident/create-incident.dto.js +53 -57
  65. package/dist/modules/incident/dtos/incident/incident.dto.js +37 -41
  66. package/dist/modules/incident/dtos/incident/update-incident.dto.js +3 -7
  67. package/dist/modules/incident/dtos/reporter/create-incident-reporter.dto.js +12 -16
  68. package/dist/modules/incident/dtos/reporter/incident-reporter.dto.js +10 -14
  69. package/dist/modules/incident/dtos/reporter/update-incident-reporter.dto.js +3 -7
  70. package/dist/modules/incident/dtos/response-unit-assignment/create-incident-response-unit-assignment.dto.js +16 -20
  71. package/dist/modules/incident/dtos/response-unit-assignment/incident-response-unit-assignment.dto.js +3 -7
  72. package/dist/modules/incident/dtos/response-unit-assignment/update-incident-response-unit-assignment.dto.js +8 -12
  73. package/dist/modules/incident/dtos/type/create-incident-type.dto.js +12 -16
  74. package/dist/modules/incident/dtos/type/update-incident-type.dto.js +3 -7
  75. package/dist/modules/incident/enums/incident-actions.enum.js +2 -5
  76. package/dist/modules/incident/enums/incident-app-id.enum.js +2 -5
  77. package/dist/modules/incident/enums/incident-channel.enum.js +2 -5
  78. package/dist/modules/incident/enums/incident-class.enum.js +2 -5
  79. package/dist/modules/incident/enums/incident-priority.enum.js +2 -5
  80. package/dist/modules/incident/enums/incident-status.enum.js +2 -5
  81. package/dist/modules/incident/enums/incident-workflow-queue-name.enum.js +2 -5
  82. package/dist/modules/incident/index.js +37 -53
  83. package/dist/modules/incident/intefaces/incident-action.js +1 -2
  84. package/dist/modules/incident/intefaces/incident-assignment.js +1 -2
  85. package/dist/modules/incident/intefaces/incident-attachment.js +1 -2
  86. package/dist/modules/incident/intefaces/incident-category.js +1 -2
  87. package/dist/modules/incident/intefaces/incident-reporter.js +1 -2
  88. package/dist/modules/incident/intefaces/incident-response-unit-assignment.js +1 -2
  89. package/dist/modules/incident/intefaces/incident-type.js +1 -2
  90. package/dist/modules/incident/intefaces/incident.js +1 -2
  91. package/dist/modules/organization/dtos/create-organization.dto.js +41 -45
  92. package/dist/modules/organization/dtos/organization-sla.dto.js +12 -16
  93. package/dist/modules/organization/dtos/update-organization.dto.js +3 -7
  94. package/dist/modules/organization/enums/org-status.enum.js +2 -5
  95. package/dist/modules/organization/enums/org-type.enum.js +2 -5
  96. package/dist/modules/organization/index.d.ts +1 -0
  97. package/dist/modules/organization/index.js +10 -22
  98. package/dist/modules/organization/interfaces/organization-sla.js +1 -2
  99. package/dist/modules/organization/interfaces/organization.js +1 -2
  100. package/dist/modules/permission/data/permissions.data.js +28 -31
  101. package/dist/modules/permission/dtos/create-permission.dto.js +7 -11
  102. package/dist/modules/permission/dtos/update-permission.dto.js +3 -7
  103. package/dist/modules/permission/enums/permission-actions.enum.js +2 -5
  104. package/dist/modules/permission/enums/permissions-moudule.enum.js +2 -5
  105. package/dist/modules/permission/index.js +6 -22
  106. package/dist/modules/permission/interfaces/permission.js +1 -2
  107. package/dist/modules/response-unit/dtos/person-unit/base-person-unit.dto.js +15 -19
  108. package/dist/modules/response-unit/dtos/person-unit/create-person-unit.dto.js +3 -7
  109. package/dist/modules/response-unit/dtos/person-unit/person-unit.dto.js +2 -6
  110. package/dist/modules/response-unit/dtos/person-unit/update-person-unit.dto.js +3 -7
  111. package/dist/modules/response-unit/dtos/response-unit/base-response-unit.dto.js +25 -29
  112. package/dist/modules/response-unit/dtos/response-unit/create-response-unit.dto.js +3 -7
  113. package/dist/modules/response-unit/dtos/response-unit/response-unit.dto.js +2 -6
  114. package/dist/modules/response-unit/dtos/response-unit/station.dto.js +8 -12
  115. package/dist/modules/response-unit/dtos/response-unit/update-response-unit.dto.js +3 -7
  116. package/dist/modules/response-unit/dtos/team-unit/base-team-unit.dto.js +10 -14
  117. package/dist/modules/response-unit/dtos/team-unit/create-team-unit.dto.js +3 -7
  118. package/dist/modules/response-unit/dtos/team-unit/crew/create-team-unit-crew.dto.js +3 -7
  119. package/dist/modules/response-unit/dtos/team-unit/crew/team-unit-crew.dto.js +14 -18
  120. package/dist/modules/response-unit/dtos/team-unit/crew/update-team-unit-crew.dto.js +3 -7
  121. package/dist/modules/response-unit/dtos/team-unit/team-unit.dto.js +2 -6
  122. package/dist/modules/response-unit/dtos/team-unit/update-team-unit.dto.js +3 -7
  123. package/dist/modules/response-unit/dtos/vehicle-unit/base-vehicle-unit.dto.js +27 -31
  124. package/dist/modules/response-unit/dtos/vehicle-unit/create-vehicle-unit.dto.js +3 -7
  125. package/dist/modules/response-unit/dtos/vehicle-unit/crew/create-vehicle-unit-crew.dto.js +3 -7
  126. package/dist/modules/response-unit/dtos/vehicle-unit/crew/update-vehicle-unit-crew.dto.js +11 -15
  127. package/dist/modules/response-unit/dtos/vehicle-unit/crew/vehicle-unit-crew.dto.js +19 -23
  128. package/dist/modules/response-unit/dtos/vehicle-unit/device/create-vehicle-unit-device.dto.js +3 -7
  129. package/dist/modules/response-unit/dtos/vehicle-unit/device/update-vehicle-unit-device.dto.js +3 -7
  130. package/dist/modules/response-unit/dtos/vehicle-unit/device/vehicle-unit-device.dto.js +23 -27
  131. package/dist/modules/response-unit/dtos/vehicle-unit/update-vehicle-unit.dto.js +3 -7
  132. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/ambulance-vehicle.dto.js +2 -6
  133. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/base-ambulance-vehicle.dto.js +6 -10
  134. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/create-ambulance-vehicle.dto.js +3 -7
  135. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/update-ambulance-vehicle.dto.js +3 -7
  136. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/base-fire-vehicle.dto.js +6 -10
  137. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/create-fire-vehicle.dto.js +3 -7
  138. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/fire-vehicle.dto.js +2 -6
  139. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/update-fire-vehicle.dto.js +3 -7
  140. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/base-road-rescue-vehicle.dto.js +5 -9
  141. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/create-road-rescue-vehicle.dto.js +3 -7
  142. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/road-rescue-vehicle.dto.js +2 -6
  143. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/update-road-rescue-vehicle.dto.js +3 -7
  144. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/base-security-vehicle.dto.js +5 -9
  145. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/create-security-vehicle.dto.js +3 -7
  146. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/security-vehicle.dto.js +2 -6
  147. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/update-security-vehicle.dto.js +3 -7
  148. package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-unit.dto.js +2 -6
  149. package/dist/modules/response-unit/enums/person-unit/person-unit-category.enum.js +2 -5
  150. package/dist/modules/response-unit/enums/person-unit/person-unit-status.enum.js +2 -5
  151. package/dist/modules/response-unit/enums/response-unit/response-unit-type.enum.js +2 -5
  152. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/ambulance-vehicle-role.enum.js +2 -5
  153. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/fire-vehicle-role.enum.js +2 -5
  154. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/road-rescue-vehicle-role.enum.js +2 -5
  155. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/security-vehicle-role.enum.js +2 -5
  156. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/ambulance-vehicle-type.enum.js +2 -5
  157. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/fire-vehicle-type.enum.js +2 -5
  158. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum.js +2 -5
  159. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/security-vehicle-type.enum.js +2 -5
  160. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-unit-ownership.enum.js +2 -5
  161. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-unit-status.enum.js +2 -5
  162. package/dist/modules/response-unit/enums/vehicle-unit/vehicle-unit-type.enum.js +2 -5
  163. package/dist/modules/response-unit/index.js +67 -83
  164. package/dist/modules/response-unit/interfaces/person-unit/person-unit.js +1 -2
  165. package/dist/modules/response-unit/interfaces/response-unit/response-unit.js +1 -2
  166. package/dist/modules/response-unit/interfaces/team-unit/team-unit-crew.js +1 -2
  167. package/dist/modules/response-unit/interfaces/team-unit/team-unit.js +1 -2
  168. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/ambulance-vehicle.js +1 -2
  169. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/fire-vehicle.js +1 -2
  170. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/road-rescue-vehicle.js +1 -2
  171. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/security-vehicle.js +1 -2
  172. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-unit-crew.js +1 -2
  173. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-unit-device.js +1 -2
  174. package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-unit.js +1 -2
  175. package/dist/modules/response-unit/validators/valid-vehicle-role.decorator.js +16 -19
  176. package/dist/modules/role/data/roles.data.js +62 -65
  177. package/dist/modules/role/dtos/create-role.dto.js +10 -14
  178. package/dist/modules/role/dtos/update-tole.dto.js +3 -7
  179. package/dist/modules/role/enums/role.enum.js +2 -5
  180. package/dist/modules/role/index.js +5 -21
  181. package/dist/modules/role/interfaces/role.js +1 -2
  182. package/dist/modules/user/dtos/create-user.dto.js +41 -45
  183. package/dist/modules/user/dtos/update-user.dto.js +3 -7
  184. package/dist/modules/user/enums/user-status.enum.js +2 -5
  185. package/dist/modules/user/index.js +4 -20
  186. package/dist/modules/user/interfaces/user.js +1 -2
  187. package/dist/modules/workflow/index.js +1 -17
  188. package/dist/modules/workflow/interfaces/workflow-query-info.js +1 -2
  189. package/package.json +3 -1
@@ -1,7 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FireVehicleDto = void 0;
4
- const base_fire_vehicle_dto_1 = require("./base-fire-vehicle.dto");
5
- class FireVehicleDto extends base_fire_vehicle_dto_1.BaseFireVehicleDto {
1
+ import { BaseFireVehicleDto } from './base-fire-vehicle.dto';
2
+ export class FireVehicleDto extends BaseFireVehicleDto {
6
3
  }
7
- exports.FireVehicleDto = FireVehicleDto;
@@ -1,8 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateFireVehicleDto = void 0;
4
- const mapped_types_1 = require("@nestjs/mapped-types");
5
- const create_fire_vehicle_dto_1 = require("./create-fire-vehicle.dto");
6
- class UpdateFireVehicleDto extends (0, mapped_types_1.PartialType)(create_fire_vehicle_dto_1.CreateFireVehicleDto) {
1
+ import { PartialType } from '@nestjs/mapped-types';
2
+ import { CreateFireVehicleDto } from './create-fire-vehicle.dto';
3
+ export class UpdateFireVehicleDto extends PartialType(CreateFireVehicleDto) {
7
4
  }
8
- exports.UpdateFireVehicleDto = UpdateFireVehicleDto;
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
2
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
3
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
@@ -8,15 +7,12 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
7
  var __metadata = (this && this.__metadata) || function (k, v) {
9
8
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
9
  };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.BaseRoadRescueVehicleDto = void 0;
13
- const class_validator_1 = require("class-validator");
14
- const base_vehicle_unit_dto_1 = require("../../base-vehicle-unit.dto");
15
- const road_rescue_vehicle_type_enum_1 = require("../../../../enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum");
16
- class BaseRoadRescueVehicleDto extends base_vehicle_unit_dto_1.BaseVehicleUnitDto {
10
+ import { IsEnum } from 'class-validator';
11
+ import { BaseVehicleUnitDto } from '../../base-vehicle-unit.dto';
12
+ import { RoadRescueVehicleType } from '../../../../enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum';
13
+ export class BaseRoadRescueVehicleDto extends BaseVehicleUnitDto {
17
14
  }
18
- exports.BaseRoadRescueVehicleDto = BaseRoadRescueVehicleDto;
19
15
  __decorate([
20
- (0, class_validator_1.IsEnum)(road_rescue_vehicle_type_enum_1.RoadRescueVehicleType),
16
+ IsEnum(RoadRescueVehicleType),
21
17
  __metadata("design:type", String)
22
18
  ], BaseRoadRescueVehicleDto.prototype, "rescueType", void 0);
@@ -1,8 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateRoadRescueVehicleDto = void 0;
4
- const mapped_types_1 = require("@nestjs/mapped-types");
5
- const base_road_rescue_vehicle_dto_1 = require("./base-road-rescue-vehicle.dto");
6
- class CreateRoadRescueVehicleDto extends (0, mapped_types_1.OmitType)(base_road_rescue_vehicle_dto_1.BaseRoadRescueVehicleDto, ['id', 'createdAt', 'updatedAt']) {
1
+ import { OmitType } from '@nestjs/mapped-types';
2
+ import { BaseRoadRescueVehicleDto } from './base-road-rescue-vehicle.dto';
3
+ export class CreateRoadRescueVehicleDto extends OmitType(BaseRoadRescueVehicleDto, ['id', 'createdAt', 'updatedAt']) {
7
4
  }
8
- exports.CreateRoadRescueVehicleDto = CreateRoadRescueVehicleDto;
@@ -1,7 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RoadRescueVehicleDto = void 0;
4
- const base_road_rescue_vehicle_dto_1 = require("./base-road-rescue-vehicle.dto");
5
- class RoadRescueVehicleDto extends base_road_rescue_vehicle_dto_1.BaseRoadRescueVehicleDto {
1
+ import { BaseRoadRescueVehicleDto } from './base-road-rescue-vehicle.dto';
2
+ export class RoadRescueVehicleDto extends BaseRoadRescueVehicleDto {
6
3
  }
7
- exports.RoadRescueVehicleDto = RoadRescueVehicleDto;
@@ -1,8 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateRoadRescueVehicleDto = void 0;
4
- const mapped_types_1 = require("@nestjs/mapped-types");
5
- const create_road_rescue_vehicle_dto_1 = require("./create-road-rescue-vehicle.dto");
6
- class UpdateRoadRescueVehicleDto extends (0, mapped_types_1.PartialType)(create_road_rescue_vehicle_dto_1.CreateRoadRescueVehicleDto) {
1
+ import { PartialType } from '@nestjs/mapped-types';
2
+ import { CreateRoadRescueVehicleDto } from './create-road-rescue-vehicle.dto';
3
+ export class UpdateRoadRescueVehicleDto extends PartialType(CreateRoadRescueVehicleDto) {
7
4
  }
8
- exports.UpdateRoadRescueVehicleDto = UpdateRoadRescueVehicleDto;
@@ -1,4 +1,3 @@
1
- "use strict";
2
1
  var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
2
  var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
3
  if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
@@ -8,15 +7,12 @@ var __decorate = (this && this.__decorate) || function (decorators, target, key,
8
7
  var __metadata = (this && this.__metadata) || function (k, v) {
9
8
  if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
9
  };
11
- Object.defineProperty(exports, "__esModule", { value: true });
12
- exports.BaseSecurityVehicleDto = void 0;
13
- const class_validator_1 = require("class-validator");
14
- const base_vehicle_unit_dto_1 = require("../../base-vehicle-unit.dto");
15
- const security_vehicle_type_enum_1 = require("../../../../enums/vehicle-unit/vehicle-type/security-vehicle-type.enum");
16
- class BaseSecurityVehicleDto extends base_vehicle_unit_dto_1.BaseVehicleUnitDto {
10
+ import { IsEnum } from 'class-validator';
11
+ import { BaseVehicleUnitDto } from '../../base-vehicle-unit.dto';
12
+ import { SecurityVehicleType } from '../../../../enums/vehicle-unit/vehicle-type/security-vehicle-type.enum';
13
+ export class BaseSecurityVehicleDto extends BaseVehicleUnitDto {
17
14
  }
18
- exports.BaseSecurityVehicleDto = BaseSecurityVehicleDto;
19
15
  __decorate([
20
- (0, class_validator_1.IsEnum)(security_vehicle_type_enum_1.SecurityVehicleType),
16
+ IsEnum(SecurityVehicleType),
21
17
  __metadata("design:type", String)
22
18
  ], BaseSecurityVehicleDto.prototype, "securityType", void 0);
@@ -1,8 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.CreateSecurityVehicleDto = void 0;
4
- const mapped_types_1 = require("@nestjs/mapped-types");
5
- const base_security_vehicle_dto_1 = require("./base-security-vehicle.dto");
6
- class CreateSecurityVehicleDto extends (0, mapped_types_1.OmitType)(base_security_vehicle_dto_1.BaseSecurityVehicleDto, ['id', 'createdAt', 'updatedAt']) {
1
+ import { OmitType } from '@nestjs/mapped-types';
2
+ import { BaseSecurityVehicleDto } from './base-security-vehicle.dto';
3
+ export class CreateSecurityVehicleDto extends OmitType(BaseSecurityVehicleDto, ['id', 'createdAt', 'updatedAt']) {
7
4
  }
8
- exports.CreateSecurityVehicleDto = CreateSecurityVehicleDto;
@@ -1,7 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SecurityVehicleDto = void 0;
4
- const base_security_vehicle_dto_1 = require("./base-security-vehicle.dto");
5
- class SecurityVehicleDto extends base_security_vehicle_dto_1.BaseSecurityVehicleDto {
1
+ import { BaseSecurityVehicleDto } from './base-security-vehicle.dto';
2
+ export class SecurityVehicleDto extends BaseSecurityVehicleDto {
6
3
  }
7
- exports.SecurityVehicleDto = SecurityVehicleDto;
@@ -1,8 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.UpdateSecurityVehicleDto = void 0;
4
- const mapped_types_1 = require("@nestjs/mapped-types");
5
- const create_security_vehicle_dto_1 = require("./create-security-vehicle.dto");
6
- class UpdateSecurityVehicleDto extends (0, mapped_types_1.PartialType)(create_security_vehicle_dto_1.CreateSecurityVehicleDto) {
1
+ import { PartialType } from '@nestjs/mapped-types';
2
+ import { CreateSecurityVehicleDto } from './create-security-vehicle.dto';
3
+ export class UpdateSecurityVehicleDto extends PartialType(CreateSecurityVehicleDto) {
7
4
  }
8
- exports.UpdateSecurityVehicleDto = UpdateSecurityVehicleDto;
@@ -1,7 +1,3 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VehicleUnitDto = void 0;
4
- const base_vehicle_unit_dto_1 = require("./base-vehicle-unit.dto");
5
- class VehicleUnitDto extends base_vehicle_unit_dto_1.BaseVehicleUnitDto {
1
+ import { BaseVehicleUnitDto } from './base-vehicle-unit.dto';
2
+ export class VehicleUnitDto extends BaseVehicleUnitDto {
6
3
  }
7
- exports.VehicleUnitDto = VehicleUnitDto;
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PersonUnitCategory = void 0;
4
- var PersonUnitCategory;
1
+ export var PersonUnitCategory;
5
2
  (function (PersonUnitCategory) {
6
3
  PersonUnitCategory["GOVERNMENT_OFFICIAL"] = "Government Official";
7
4
  PersonUnitCategory["POLICE_OFFICER"] = "Police Officer";
@@ -11,4 +8,4 @@ var PersonUnitCategory;
11
8
  PersonUnitCategory["COMMUNITY_LEADER"] = "Community Leader";
12
9
  PersonUnitCategory["FOCAL_CONTACT"] = "Focal Contact";
13
10
  PersonUnitCategory["OTHER"] = "Other";
14
- })(PersonUnitCategory || (exports.PersonUnitCategory = PersonUnitCategory = {}));
11
+ })(PersonUnitCategory || (PersonUnitCategory = {}));
@@ -1,11 +1,8 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.PersonUnitStatus = void 0;
4
- var PersonUnitStatus;
1
+ export var PersonUnitStatus;
5
2
  (function (PersonUnitStatus) {
6
3
  PersonUnitStatus["ON_DUTY"] = "On Duty";
7
4
  PersonUnitStatus["OFF_DUTY"] = "Off Duty";
8
5
  PersonUnitStatus["ON_LEAVE"] = "On Leave";
9
6
  PersonUnitStatus["ON_MISSION"] = "On Mission";
10
7
  PersonUnitStatus["ON_TRAINING"] = "On Training";
11
- })(PersonUnitStatus || (exports.PersonUnitStatus = PersonUnitStatus = {}));
8
+ })(PersonUnitStatus || (PersonUnitStatus = {}));
@@ -1,9 +1,6 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.ResponseUnitType = void 0;
4
- var ResponseUnitType;
1
+ export var ResponseUnitType;
5
2
  (function (ResponseUnitType) {
6
3
  ResponseUnitType["VEHICLE_UNIT"] = "Vehicle";
7
4
  ResponseUnitType["PERSON_UNIT"] = "Person";
8
5
  ResponseUnitType["TEAM_UNIT"] = "Team";
9
- })(ResponseUnitType || (exports.ResponseUnitType = ResponseUnitType = {}));
6
+ })(ResponseUnitType || (ResponseUnitType = {}));
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AmbulanceVehicleRole = void 0;
4
- var AmbulanceVehicleRole;
1
+ export var AmbulanceVehicleRole;
5
2
  (function (AmbulanceVehicleRole) {
6
3
  AmbulanceVehicleRole["OPERATOR"] = "Operator";
7
4
  AmbulanceVehicleRole["DRIVER"] = "Driver";
@@ -11,4 +8,4 @@ var AmbulanceVehicleRole;
11
8
  AmbulanceVehicleRole["TECHNICIAN"] = "Technician";
12
9
  AmbulanceVehicleRole["VOLUNTEER"] = "Volunteer";
13
10
  AmbulanceVehicleRole["OTHER"] = "Other";
14
- })(AmbulanceVehicleRole || (exports.AmbulanceVehicleRole = AmbulanceVehicleRole = {}));
11
+ })(AmbulanceVehicleRole || (AmbulanceVehicleRole = {}));
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FireVehicleRole = void 0;
4
- var FireVehicleRole;
1
+ export var FireVehicleRole;
5
2
  (function (FireVehicleRole) {
6
3
  FireVehicleRole["OPERATOR"] = "Operator";
7
4
  FireVehicleRole["DRIVER"] = "Driver";
@@ -15,4 +12,4 @@ var FireVehicleRole;
15
12
  FireVehicleRole["RESCUE_SPECIALIST"] = "Rescue Specialist";
16
13
  FireVehicleRole["VOLUNTEER"] = "Volunteer";
17
14
  FireVehicleRole["OTHER"] = "Other";
18
- })(FireVehicleRole || (exports.FireVehicleRole = FireVehicleRole = {}));
15
+ })(FireVehicleRole || (FireVehicleRole = {}));
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RoadRescueVehicleRole = void 0;
4
- var RoadRescueVehicleRole;
1
+ export var RoadRescueVehicleRole;
5
2
  (function (RoadRescueVehicleRole) {
6
3
  RoadRescueVehicleRole["OPERATOR"] = "Operator";
7
4
  RoadRescueVehicleRole["DRIVER"] = "Driver";
@@ -14,4 +11,4 @@ var RoadRescueVehicleRole;
14
11
  RoadRescueVehicleRole["TRAFFIC_CONTROLLER"] = "Traffic Controller";
15
12
  RoadRescueVehicleRole["FIRST_AID_RESPONDER"] = "First Aid Responder";
16
13
  RoadRescueVehicleRole["OTHER"] = "Other";
17
- })(RoadRescueVehicleRole || (exports.RoadRescueVehicleRole = RoadRescueVehicleRole = {}));
14
+ })(RoadRescueVehicleRole || (RoadRescueVehicleRole = {}));
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SecurityVehicleRole = void 0;
4
- var SecurityVehicleRole;
1
+ export var SecurityVehicleRole;
5
2
  (function (SecurityVehicleRole) {
6
3
  SecurityVehicleRole["OPERATOR"] = "Operator";
7
4
  SecurityVehicleRole["DRIVER"] = "Driver";
@@ -14,4 +11,4 @@ var SecurityVehicleRole;
14
11
  SecurityVehicleRole["INVESTIGATOR"] = "Investigator";
15
12
  SecurityVehicleRole["SURVEILLANCE_SPECIALIST"] = "Surveillance Specialist";
16
13
  SecurityVehicleRole["OTHER"] = "Other";
17
- })(SecurityVehicleRole || (exports.SecurityVehicleRole = SecurityVehicleRole = {}));
14
+ })(SecurityVehicleRole || (SecurityVehicleRole = {}));
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.AmbulanceVehicleType = void 0;
4
- var AmbulanceVehicleType;
1
+ export var AmbulanceVehicleType;
5
2
  (function (AmbulanceVehicleType) {
6
3
  AmbulanceVehicleType["BASIC_LIFE_SUPPORT"] = "Basic Life Support (BLS)";
7
4
  AmbulanceVehicleType["ADVANCED_LIFE_SUPPORT"] = "Advanced Life Support (ALS)";
@@ -9,4 +6,4 @@ var AmbulanceVehicleType;
9
6
  AmbulanceVehicleType["AIR_AMBULANCE_TRANSPORT"] = "Air Ambulance Transport (AAT)";
10
7
  AmbulanceVehicleType["NEONATAL_TRANSPORT"] = "Neonatal Transport";
11
8
  AmbulanceVehicleType["BARIATRIC_TRANSPORT"] = "Bariatric Transport";
12
- })(AmbulanceVehicleType || (exports.AmbulanceVehicleType = AmbulanceVehicleType = {}));
9
+ })(AmbulanceVehicleType || (AmbulanceVehicleType = {}));
@@ -1,7 +1,4 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.FireVehicleType = void 0;
4
- var FireVehicleType;
1
+ export var FireVehicleType;
5
2
  (function (FireVehicleType) {
6
3
  FireVehicleType["PUMPER"] = "Pumper";
7
4
  FireVehicleType["AERIAL"] = "Aerial";
@@ -9,4 +6,4 @@ var FireVehicleType;
9
6
  FireVehicleType["TANKER"] = "Tanker";
10
7
  FireVehicleType["WILDLAND"] = "Wildland";
11
8
  FireVehicleType["COMMAND"] = "Command";
12
- })(FireVehicleType || (exports.FireVehicleType = FireVehicleType = {}));
9
+ })(FireVehicleType || (FireVehicleType = {}));
@@ -1,10 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.RoadRescueVehicleType = void 0;
4
- var RoadRescueVehicleType;
1
+ export var RoadRescueVehicleType;
5
2
  (function (RoadRescueVehicleType) {
6
3
  RoadRescueVehicleType["TOW_TRUCK"] = "Tow-truck";
7
4
  RoadRescueVehicleType["FLATBED"] = "Flatbed";
8
5
  RoadRescueVehicleType["HEAVY_DUTY"] = "Heavy-duty";
9
6
  RoadRescueVehicleType["SERVICE_TRUCK"] = "Service truck";
10
- })(RoadRescueVehicleType || (exports.RoadRescueVehicleType = RoadRescueVehicleType = {}));
7
+ })(RoadRescueVehicleType || (RoadRescueVehicleType = {}));
@@ -1,11 +1,8 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.SecurityVehicleType = void 0;
4
- var SecurityVehicleType;
1
+ export var SecurityVehicleType;
5
2
  (function (SecurityVehicleType) {
6
3
  SecurityVehicleType["PATROL"] = "Patrol";
7
4
  SecurityVehicleType["RESPONSE"] = "Response";
8
5
  SecurityVehicleType["TRANSPORT"] = "Transport";
9
6
  SecurityVehicleType["SURVALENCE"] = "Survalence";
10
7
  SecurityVehicleType["OTHER"] = "Other";
11
- })(SecurityVehicleType || (exports.SecurityVehicleType = SecurityVehicleType = {}));
8
+ })(SecurityVehicleType || (SecurityVehicleType = {}));
@@ -1,11 +1,8 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VehicleUnitOwnership = void 0;
4
- var VehicleUnitOwnership;
1
+ export var VehicleUnitOwnership;
5
2
  (function (VehicleUnitOwnership) {
6
3
  VehicleUnitOwnership["PRIVATE"] = "Private";
7
4
  VehicleUnitOwnership["PUBLIC"] = "Public";
8
5
  VehicleUnitOwnership["NGO"] = "NGO";
9
6
  VehicleUnitOwnership["MISSION"] = "Mission";
10
7
  VehicleUnitOwnership["OTHER"] = "Other";
11
- })(VehicleUnitOwnership || (exports.VehicleUnitOwnership = VehicleUnitOwnership = {}));
8
+ })(VehicleUnitOwnership || (VehicleUnitOwnership = {}));
@@ -1,9 +1,6 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VehicleUnitStatus = void 0;
4
- var VehicleUnitStatus;
1
+ export var VehicleUnitStatus;
5
2
  (function (VehicleUnitStatus) {
6
3
  VehicleUnitStatus["OPERATIONAL"] = "Operational";
7
4
  VehicleUnitStatus["NON_OPERATIONAL"] = "Non Operational";
8
5
  VehicleUnitStatus["ENGAGED"] = "Engaged";
9
- })(VehicleUnitStatus || (exports.VehicleUnitStatus = VehicleUnitStatus = {}));
6
+ })(VehicleUnitStatus || (VehicleUnitStatus = {}));
@@ -1,10 +1,7 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
3
- exports.VehicleUnitType = void 0;
4
- var VehicleUnitType;
1
+ export var VehicleUnitType;
5
2
  (function (VehicleUnitType) {
6
3
  VehicleUnitType["AMBULANCE"] = "Ambulance";
7
4
  VehicleUnitType["SECURITY"] = "Security";
8
5
  VehicleUnitType["FIRE"] = "Fire";
9
6
  VehicleUnitType["ROAD_RESCUE"] = "Road Rescue";
10
- })(VehicleUnitType || (exports.VehicleUnitType = VehicleUnitType = {}));
7
+ })(VehicleUnitType || (VehicleUnitType = {}));
@@ -1,97 +1,81 @@
1
- "use strict";
2
- var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
3
- if (k2 === undefined) k2 = k;
4
- var desc = Object.getOwnPropertyDescriptor(m, k);
5
- if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
6
- desc = { enumerable: true, get: function() { return m[k]; } };
7
- }
8
- Object.defineProperty(o, k2, desc);
9
- }) : (function(o, m, k, k2) {
10
- if (k2 === undefined) k2 = k;
11
- o[k2] = m[k];
12
- }));
13
- var __exportStar = (this && this.__exportStar) || function(m, exports) {
14
- for (var p in m) if (p !== "default" && !Object.prototype.hasOwnProperty.call(exports, p)) __createBinding(exports, m, p);
15
- };
16
- Object.defineProperty(exports, "__esModule", { value: true });
17
1
  // DTOs
18
2
  // Response Unit
19
- __exportStar(require("./dtos/response-unit/base-response-unit.dto"), exports);
20
- __exportStar(require("./dtos/response-unit/create-response-unit.dto"), exports);
21
- __exportStar(require("./dtos/response-unit/update-response-unit.dto"), exports);
22
- __exportStar(require("./dtos/response-unit/response-unit.dto"), exports);
23
- __exportStar(require("./dtos/response-unit/station.dto"), exports);
3
+ export * from './dtos/response-unit/base-response-unit.dto';
4
+ export * from './dtos/response-unit/create-response-unit.dto';
5
+ export * from './dtos/response-unit/update-response-unit.dto';
6
+ export * from './dtos/response-unit/response-unit.dto';
7
+ export * from './dtos/response-unit/station.dto';
24
8
  // Response Unit - Person Unit
25
- __exportStar(require("./dtos/person-unit/base-person-unit.dto"), exports);
26
- __exportStar(require("./dtos/person-unit/create-person-unit.dto"), exports);
27
- __exportStar(require("./dtos/person-unit/update-person-unit.dto"), exports);
28
- __exportStar(require("./dtos/person-unit/person-unit.dto"), exports);
9
+ export * from './dtos/person-unit/base-person-unit.dto';
10
+ export * from './dtos/person-unit/create-person-unit.dto';
11
+ export * from './dtos/person-unit/update-person-unit.dto';
12
+ export * from './dtos/person-unit/person-unit.dto';
29
13
  // Response Unit - Team Unit
30
- __exportStar(require("./dtos/team-unit/base-team-unit.dto"), exports);
31
- __exportStar(require("./dtos/team-unit/create-team-unit.dto"), exports);
32
- __exportStar(require("./dtos/team-unit/update-team-unit.dto"), exports);
33
- __exportStar(require("./dtos/team-unit/team-unit.dto"), exports);
14
+ export * from './dtos/team-unit/base-team-unit.dto';
15
+ export * from './dtos/team-unit/create-team-unit.dto';
16
+ export * from './dtos/team-unit/update-team-unit.dto';
17
+ export * from './dtos/team-unit/team-unit.dto';
34
18
  // Response Unit - Team Unit - crew
35
- __exportStar(require("./dtos/team-unit/crew/create-team-unit-crew.dto"), exports);
36
- __exportStar(require("./dtos/team-unit/crew/update-team-unit-crew.dto"), exports);
37
- __exportStar(require("./dtos/team-unit/crew/team-unit-crew.dto"), exports);
19
+ export * from './dtos/team-unit/crew/create-team-unit-crew.dto';
20
+ export * from './dtos/team-unit/crew/update-team-unit-crew.dto';
21
+ export * from './dtos/team-unit/crew/team-unit-crew.dto';
38
22
  // Response Unit - Vehicle Unit
39
- __exportStar(require("./dtos/vehicle-unit/base-vehicle-unit.dto"), exports);
40
- __exportStar(require("./dtos/vehicle-unit/create-vehicle-unit.dto"), exports);
41
- __exportStar(require("./dtos/vehicle-unit/update-vehicle-unit.dto"), exports);
42
- __exportStar(require("./dtos/vehicle-unit/vehicle-unit.dto"), exports);
23
+ export * from './dtos/vehicle-unit/base-vehicle-unit.dto';
24
+ export * from './dtos/vehicle-unit/create-vehicle-unit.dto';
25
+ export * from './dtos/vehicle-unit/update-vehicle-unit.dto';
26
+ export * from './dtos/vehicle-unit/vehicle-unit.dto';
43
27
  // Response Unit - Vehicle Unit - Vehicle Type - Ambulance Vehicle
44
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/ambulance-vehicle/base-ambulance-vehicle.dto"), exports);
45
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/ambulance-vehicle/create-ambulance-vehicle.dto"), exports);
46
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/ambulance-vehicle/update-ambulance-vehicle.dto"), exports);
47
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/ambulance-vehicle/ambulance-vehicle.dto"), exports);
28
+ export * from './dtos/vehicle-unit/vehicle-type/ambulance-vehicle/base-ambulance-vehicle.dto';
29
+ export * from './dtos/vehicle-unit/vehicle-type/ambulance-vehicle/create-ambulance-vehicle.dto';
30
+ export * from './dtos/vehicle-unit/vehicle-type/ambulance-vehicle/update-ambulance-vehicle.dto';
31
+ export * from './dtos/vehicle-unit/vehicle-type/ambulance-vehicle/ambulance-vehicle.dto';
48
32
  // Response Unit - Vehicle Unit - Vehicle Type - Security Vehicle
49
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/security-vehicle/base-security-vehicle.dto"), exports);
50
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/security-vehicle/create-security-vehicle.dto"), exports);
51
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/security-vehicle/update-security-vehicle.dto"), exports);
52
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/security-vehicle/security-vehicle.dto"), exports);
33
+ export * from './dtos/vehicle-unit/vehicle-type/security-vehicle/base-security-vehicle.dto';
34
+ export * from './dtos/vehicle-unit/vehicle-type/security-vehicle/create-security-vehicle.dto';
35
+ export * from './dtos/vehicle-unit/vehicle-type/security-vehicle/update-security-vehicle.dto';
36
+ export * from './dtos/vehicle-unit/vehicle-type/security-vehicle/security-vehicle.dto';
53
37
  // Response Unit - Vehicle Unit - Vehicle Type - Fire Vehicle
54
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/fire-vehicle/base-fire-vehicle.dto"), exports);
55
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/fire-vehicle/create-fire-vehicle.dto"), exports);
56
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/fire-vehicle/update-fire-vehicle.dto"), exports);
57
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/fire-vehicle/fire-vehicle.dto"), exports);
38
+ export * from './dtos/vehicle-unit/vehicle-type/fire-vehicle/base-fire-vehicle.dto';
39
+ export * from './dtos/vehicle-unit/vehicle-type/fire-vehicle/create-fire-vehicle.dto';
40
+ export * from './dtos/vehicle-unit/vehicle-type/fire-vehicle/update-fire-vehicle.dto';
41
+ export * from './dtos/vehicle-unit/vehicle-type/fire-vehicle/fire-vehicle.dto';
58
42
  // Response Unit - Vehicle Unit - Vehicle Type - Road Rescue Vehicle
59
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/base-road-rescue-vehicle.dto"), exports);
60
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/create-road-rescue-vehicle.dto"), exports);
61
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/update-road-rescue-vehicle.dto"), exports);
62
- __exportStar(require("./dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/road-rescue-vehicle.dto"), exports);
43
+ export * from './dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/base-road-rescue-vehicle.dto';
44
+ export * from './dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/create-road-rescue-vehicle.dto';
45
+ export * from './dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/update-road-rescue-vehicle.dto';
46
+ export * from './dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/road-rescue-vehicle.dto';
63
47
  // Response Unit - Vehicle Unit - crew
64
- __exportStar(require("./dtos/vehicle-unit/crew/create-vehicle-unit-crew.dto"), exports);
65
- __exportStar(require("./dtos/vehicle-unit/crew/update-vehicle-unit-crew.dto"), exports);
66
- __exportStar(require("./dtos/vehicle-unit/crew/vehicle-unit-crew.dto"), exports);
48
+ export * from './dtos/vehicle-unit/crew/create-vehicle-unit-crew.dto';
49
+ export * from './dtos/vehicle-unit/crew/update-vehicle-unit-crew.dto';
50
+ export * from './dtos/vehicle-unit/crew/vehicle-unit-crew.dto';
67
51
  // Response Unit - Vehicle Unit - device
68
- __exportStar(require("./dtos/vehicle-unit/device/create-vehicle-unit-device.dto"), exports);
69
- __exportStar(require("./dtos/vehicle-unit/device/update-vehicle-unit-device.dto"), exports);
70
- __exportStar(require("./dtos/vehicle-unit/device/vehicle-unit-device.dto"), exports);
52
+ export * from './dtos/vehicle-unit/device/create-vehicle-unit-device.dto';
53
+ export * from './dtos/vehicle-unit/device/update-vehicle-unit-device.dto';
54
+ export * from './dtos/vehicle-unit/device/vehicle-unit-device.dto';
71
55
  // Interfaces
72
- __exportStar(require("./interfaces/response-unit/response-unit"), exports);
73
- __exportStar(require("./interfaces/person-unit/person-unit"), exports);
74
- __exportStar(require("./interfaces/team-unit/team-unit"), exports);
75
- __exportStar(require("./interfaces/team-unit/team-unit-crew"), exports);
76
- __exportStar(require("./interfaces/vehicle-unit/vehicle-unit"), exports);
77
- __exportStar(require("./interfaces/vehicle-unit/vehicle-unit-crew"), exports);
78
- __exportStar(require("./interfaces/vehicle-unit/vehicle-unit-device"), exports);
79
- __exportStar(require("./interfaces/vehicle-unit/vehicle-type/ambulance-vehicle"), exports);
80
- __exportStar(require("./interfaces/vehicle-unit/vehicle-type/security-vehicle"), exports);
81
- __exportStar(require("./interfaces/vehicle-unit/vehicle-type/fire-vehicle"), exports);
82
- __exportStar(require("./interfaces/vehicle-unit/vehicle-type/road-rescue-vehicle"), exports);
56
+ export * from './interfaces/response-unit/response-unit';
57
+ export * from './interfaces/person-unit/person-unit';
58
+ export * from './interfaces/team-unit/team-unit';
59
+ export * from './interfaces/team-unit/team-unit-crew';
60
+ export * from './interfaces/vehicle-unit/vehicle-unit';
61
+ export * from './interfaces/vehicle-unit/vehicle-unit-crew';
62
+ export * from './interfaces/vehicle-unit/vehicle-unit-device';
63
+ export * from './interfaces/vehicle-unit/vehicle-type/ambulance-vehicle';
64
+ export * from './interfaces/vehicle-unit/vehicle-type/security-vehicle';
65
+ export * from './interfaces/vehicle-unit/vehicle-type/fire-vehicle';
66
+ export * from './interfaces/vehicle-unit/vehicle-type/road-rescue-vehicle';
83
67
  // Enums
84
- __exportStar(require("./enums/response-unit/response-unit-type.enum"), exports);
85
- __exportStar(require("./enums/person-unit/person-unit-category.enum"), exports);
86
- __exportStar(require("./enums/person-unit/person-unit-status.enum"), exports);
87
- __exportStar(require("./enums/vehicle-unit/vehicle-unit-ownership.enum"), exports);
88
- __exportStar(require("./enums/vehicle-unit/vehicle-unit-status.enum"), exports);
89
- __exportStar(require("./enums/vehicle-unit/vehicle-unit-type.enum"), exports);
90
- __exportStar(require("./enums/vehicle-unit/vehicle-type/ambulance-vehicle-type.enum"), exports);
91
- __exportStar(require("./enums/vehicle-unit/vehicle-crew/ambulance-vehicle-role.enum"), exports);
92
- __exportStar(require("./enums/vehicle-unit/vehicle-type/security-vehicle-type.enum"), exports);
93
- __exportStar(require("./enums/vehicle-unit/vehicle-crew/security-vehicle-role.enum"), exports);
94
- __exportStar(require("./enums/vehicle-unit/vehicle-type/fire-vehicle-type.enum"), exports);
95
- __exportStar(require("./enums/vehicle-unit/vehicle-crew/fire-vehicle-role.enum"), exports);
96
- __exportStar(require("./enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum"), exports);
97
- __exportStar(require("./enums/vehicle-unit/vehicle-crew/road-rescue-vehicle-role.enum"), exports);
68
+ export * from './enums/response-unit/response-unit-type.enum';
69
+ export * from './enums/person-unit/person-unit-category.enum';
70
+ export * from './enums/person-unit/person-unit-status.enum';
71
+ export * from './enums/vehicle-unit/vehicle-unit-ownership.enum';
72
+ export * from './enums/vehicle-unit/vehicle-unit-status.enum';
73
+ export * from './enums/vehicle-unit/vehicle-unit-type.enum';
74
+ export * from './enums/vehicle-unit/vehicle-type/ambulance-vehicle-type.enum';
75
+ export * from './enums/vehicle-unit/vehicle-crew/ambulance-vehicle-role.enum';
76
+ export * from './enums/vehicle-unit/vehicle-type/security-vehicle-type.enum';
77
+ export * from './enums/vehicle-unit/vehicle-crew/security-vehicle-role.enum';
78
+ export * from './enums/vehicle-unit/vehicle-type/fire-vehicle-type.enum';
79
+ export * from './enums/vehicle-unit/vehicle-crew/fire-vehicle-role.enum';
80
+ export * from './enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum';
81
+ export * from './enums/vehicle-unit/vehicle-crew/road-rescue-vehicle-role.enum';
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};
@@ -1,2 +1 @@
1
- "use strict";
2
- Object.defineProperty(exports, "__esModule", { value: true });
1
+ export {};