grm-shared-library 1.0.230 → 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.
- package/dist/decorators/case-decorators.js +7 -12
- package/dist/exceptions/custom-exception/custom-rpc.exception.js +5 -9
- package/dist/exceptions/enums/error-codes.enum.js +1 -4
- package/dist/exceptions/error-logger/error-logger.js +2 -6
- package/dist/exceptions/filters/all-exceptions.filter.js +17 -20
- package/dist/exceptions/filters/http-exceptions.filter.js +10 -13
- package/dist/exceptions/index.js +7 -23
- package/dist/exceptions/interfaces/error-context.js +1 -2
- package/dist/exceptions/interfaces/error-response.js +1 -2
- package/dist/index.js +18 -34
- package/dist/interfaces/i-request-with-user.js +1 -2
- package/dist/interfaces/jwt-payload.js +1 -2
- package/dist/interfaces/server-message.js +1 -2
- package/dist/interfaces/validated-user.js +1 -2
- package/dist/kafka/dtos/otp/create-otp-payload.dto.js +25 -29
- package/dist/kafka/dtos/otp/otp-payload.dto.js +10 -14
- package/dist/kafka/dtos/password/password-reset-payload.dto.js +13 -17
- package/dist/kafka/dtos/user/create-user-created-payload.dto.js +27 -31
- package/dist/kafka/dtos/user/create-user-registered-payload.dto.js +14 -18
- package/dist/kafka/dtos/user/user-created-payload.dto.js +10 -14
- package/dist/kafka/dtos/user/user-registered-payload.dto.js +6 -10
- package/dist/kafka/index.js +8 -24
- package/dist/kafka/topics.js +1 -4
- package/dist/modules/auth/dtos/change-password.dto.js +17 -21
- package/dist/modules/auth/dtos/forgot-password.dto.js +4 -8
- package/dist/modules/auth/dtos/login.dto.js +9 -13
- package/dist/modules/auth/dtos/refresh-token.dto.js +4 -8
- package/dist/modules/auth/dtos/register.dto.js +43 -47
- package/dist/modules/auth/dtos/resend-otp.dto.js +7 -11
- package/dist/modules/auth/dtos/reset-password.dto.js +15 -19
- package/dist/modules/auth/dtos/verify-otp.dto.js +6 -10
- package/dist/modules/auth/enums/otp-action.js +2 -5
- package/dist/modules/auth/index.js +11 -27
- package/dist/modules/auth/interfaces/login-response.js +1 -2
- package/dist/modules/auth/interfaces/register-response.js +1 -2
- package/dist/modules/auth/validators/match.decorator.js +3 -6
- package/dist/modules/common/constants/password-regex.const.js +1 -5
- package/dist/modules/common/constants/service.const.js +1 -4
- package/dist/modules/common/dtos/contact-person.dto.js +12 -16
- package/dist/modules/common/dtos/map-address.dto.js +20 -24
- package/dist/modules/common/dtos/map-location.dto.js +10 -14
- package/dist/modules/common/index.js +7 -23
- package/dist/modules/common/interfaces/contact-person.js +1 -2
- package/dist/modules/common/interfaces/map-address.js +1 -2
- package/dist/modules/common/interfaces/map-location.js +1 -2
- package/dist/modules/control-centre/dtos/create-control-centre.dto.js +29 -33
- package/dist/modules/control-centre/dtos/update-control-centre.dto.js +3 -7
- package/dist/modules/control-centre/enums/control-centre.enum.js +2 -5
- package/dist/modules/control-centre/index.js +4 -20
- package/dist/modules/control-centre/interfaces/control-centre.js +1 -2
- package/dist/modules/email/index.js +1 -17
- package/dist/modules/email/interfaces/user-created.js +1 -2
- package/dist/modules/incident/dtos/action/create-incident-action.dto.js +13 -17
- package/dist/modules/incident/dtos/action/incident-action.dto.js +8 -12
- package/dist/modules/incident/dtos/action/update-inident-action.dto.js +3 -7
- package/dist/modules/incident/dtos/assignment/create-incident-assignment.dto.js +14 -18
- package/dist/modules/incident/dtos/assignment/incident-assignment.dto.js +8 -12
- package/dist/modules/incident/dtos/assignment/update-incident-assignment.dto.js +3 -7
- package/dist/modules/incident/dtos/attachment/create-incident-attachment.dto.js +12 -16
- package/dist/modules/incident/dtos/attachment/update-incident-attachment.dto.js +3 -7
- package/dist/modules/incident/dtos/category/create-incident-category.dto.js +10 -14
- package/dist/modules/incident/dtos/category/update-incident-category.dto.js +3 -7
- package/dist/modules/incident/dtos/incident/create-incident.dto.js +53 -57
- package/dist/modules/incident/dtos/incident/incident.dto.js +37 -41
- package/dist/modules/incident/dtos/incident/update-incident.dto.js +3 -7
- package/dist/modules/incident/dtos/reporter/create-incident-reporter.dto.js +12 -16
- package/dist/modules/incident/dtos/reporter/incident-reporter.dto.js +10 -14
- package/dist/modules/incident/dtos/reporter/update-incident-reporter.dto.js +3 -7
- package/dist/modules/incident/dtos/response-unit-assignment/create-incident-response-unit-assignment.dto.js +16 -20
- package/dist/modules/incident/dtos/response-unit-assignment/incident-response-unit-assignment.dto.js +3 -7
- package/dist/modules/incident/dtos/response-unit-assignment/update-incident-response-unit-assignment.dto.js +8 -12
- package/dist/modules/incident/dtos/type/create-incident-type.dto.js +12 -16
- package/dist/modules/incident/dtos/type/update-incident-type.dto.js +3 -7
- package/dist/modules/incident/enums/incident-actions.enum.js +2 -5
- package/dist/modules/incident/enums/incident-app-id.enum.js +2 -5
- package/dist/modules/incident/enums/incident-channel.enum.js +2 -5
- package/dist/modules/incident/enums/incident-class.enum.js +2 -5
- package/dist/modules/incident/enums/incident-priority.enum.js +2 -5
- package/dist/modules/incident/enums/incident-status.enum.js +2 -5
- package/dist/modules/incident/enums/incident-workflow-queue-name.enum.js +2 -5
- package/dist/modules/incident/index.js +37 -53
- package/dist/modules/incident/intefaces/incident-action.js +1 -2
- package/dist/modules/incident/intefaces/incident-assignment.js +1 -2
- package/dist/modules/incident/intefaces/incident-attachment.js +1 -2
- package/dist/modules/incident/intefaces/incident-category.js +1 -2
- package/dist/modules/incident/intefaces/incident-reporter.js +1 -2
- package/dist/modules/incident/intefaces/incident-response-unit-assignment.js +1 -2
- package/dist/modules/incident/intefaces/incident-type.js +1 -2
- package/dist/modules/incident/intefaces/incident.js +1 -2
- package/dist/modules/organization/dtos/create-organization.dto.js +41 -45
- package/dist/modules/organization/dtos/organization-sla.dto.js +12 -16
- package/dist/modules/organization/dtos/update-organization.dto.js +3 -7
- package/dist/modules/organization/enums/org-status.enum.js +2 -5
- package/dist/modules/organization/enums/org-type.enum.js +2 -5
- package/dist/modules/organization/index.js +7 -23
- package/dist/modules/organization/interfaces/organization-sla.js +1 -2
- package/dist/modules/organization/interfaces/organization.js +1 -2
- package/dist/modules/permission/data/permissions.data.js +28 -31
- package/dist/modules/permission/dtos/create-permission.dto.js +7 -11
- package/dist/modules/permission/dtos/update-permission.dto.js +3 -7
- package/dist/modules/permission/enums/permission-actions.enum.js +2 -5
- package/dist/modules/permission/enums/permissions-moudule.enum.js +2 -5
- package/dist/modules/permission/index.js +6 -22
- package/dist/modules/permission/interfaces/permission.js +1 -2
- package/dist/modules/response-unit/dtos/person-unit/base-person-unit.dto.js +15 -19
- package/dist/modules/response-unit/dtos/person-unit/create-person-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/person-unit/person-unit.dto.js +2 -6
- package/dist/modules/response-unit/dtos/person-unit/update-person-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/response-unit/base-response-unit.dto.js +25 -29
- package/dist/modules/response-unit/dtos/response-unit/create-response-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/response-unit/response-unit.dto.js +2 -6
- package/dist/modules/response-unit/dtos/response-unit/station.dto.js +8 -12
- package/dist/modules/response-unit/dtos/response-unit/update-response-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/team-unit/base-team-unit.dto.js +10 -14
- package/dist/modules/response-unit/dtos/team-unit/create-team-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/team-unit/crew/create-team-unit-crew.dto.js +3 -7
- package/dist/modules/response-unit/dtos/team-unit/crew/team-unit-crew.dto.js +14 -18
- package/dist/modules/response-unit/dtos/team-unit/crew/update-team-unit-crew.dto.js +3 -7
- package/dist/modules/response-unit/dtos/team-unit/team-unit.dto.js +2 -6
- package/dist/modules/response-unit/dtos/team-unit/update-team-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/base-vehicle-unit.dto.js +27 -31
- package/dist/modules/response-unit/dtos/vehicle-unit/create-vehicle-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/crew/create-vehicle-unit-crew.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/crew/update-vehicle-unit-crew.dto.js +11 -15
- package/dist/modules/response-unit/dtos/vehicle-unit/crew/vehicle-unit-crew.dto.js +19 -23
- package/dist/modules/response-unit/dtos/vehicle-unit/device/create-vehicle-unit-device.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/device/update-vehicle-unit-device.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/device/vehicle-unit-device.dto.js +23 -27
- package/dist/modules/response-unit/dtos/vehicle-unit/update-vehicle-unit.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/ambulance-vehicle.dto.js +2 -6
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/base-ambulance-vehicle.dto.js +6 -10
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/create-ambulance-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/ambulance-vehicle/update-ambulance-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/base-fire-vehicle.dto.js +6 -10
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/create-fire-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/fire-vehicle.dto.js +2 -6
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/update-fire-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/base-road-rescue-vehicle.dto.js +5 -9
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/create-road-rescue-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/road-rescue-vehicle.dto.js +2 -6
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/road-rescue-vehicle/update-road-rescue-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/base-security-vehicle.dto.js +5 -9
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/create-security-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/security-vehicle.dto.js +2 -6
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/security-vehicle/update-security-vehicle.dto.js +3 -7
- package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-unit.dto.js +2 -6
- package/dist/modules/response-unit/enums/person-unit/person-unit-category.enum.js +2 -5
- package/dist/modules/response-unit/enums/person-unit/person-unit-status.enum.js +2 -5
- package/dist/modules/response-unit/enums/response-unit/response-unit-type.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/ambulance-vehicle-role.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/fire-vehicle-role.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/road-rescue-vehicle-role.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/security-vehicle-role.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/ambulance-vehicle-type.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/fire-vehicle-type.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/security-vehicle-type.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-unit-ownership.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-unit-status.enum.js +2 -5
- package/dist/modules/response-unit/enums/vehicle-unit/vehicle-unit-type.enum.js +2 -5
- package/dist/modules/response-unit/index.js +67 -83
- package/dist/modules/response-unit/interfaces/person-unit/person-unit.js +1 -2
- package/dist/modules/response-unit/interfaces/response-unit/response-unit.js +1 -2
- package/dist/modules/response-unit/interfaces/team-unit/team-unit-crew.js +1 -2
- package/dist/modules/response-unit/interfaces/team-unit/team-unit.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/ambulance-vehicle.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/fire-vehicle.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/road-rescue-vehicle.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/security-vehicle.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-unit-crew.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-unit-device.js +1 -2
- package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-unit.js +1 -2
- package/dist/modules/response-unit/validators/valid-vehicle-role.decorator.js +16 -19
- package/dist/modules/role/data/roles.data.js +62 -65
- package/dist/modules/role/dtos/create-role.dto.js +10 -14
- package/dist/modules/role/dtos/update-tole.dto.js +3 -7
- package/dist/modules/role/enums/role.enum.js +2 -5
- package/dist/modules/role/index.js +5 -21
- package/dist/modules/role/interfaces/role.js +1 -2
- package/dist/modules/user/dtos/create-user.dto.js +41 -45
- package/dist/modules/user/dtos/update-user.dto.js +3 -7
- package/dist/modules/user/enums/user-status.enum.js +2 -5
- package/dist/modules/user/index.js +4 -20
- package/dist/modules/user/interfaces/user.js +1 -2
- package/dist/modules/workflow/index.js +1 -17
- package/dist/modules/workflow/interfaces/workflow-query-info.js +1 -2
- package/package.json +3 -1
package/dist/modules/response-unit/dtos/vehicle-unit/vehicle-type/fire-vehicle/fire-vehicle.dto.js
CHANGED
|
@@ -1,7 +1,3 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
16
|
+
IsEnum(RoadRescueVehicleType),
|
|
21
17
|
__metadata("design:type", String)
|
|
22
18
|
], BaseRoadRescueVehicleDto.prototype, "rescueType", void 0);
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
2
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
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
|
-
|
|
16
|
+
IsEnum(SecurityVehicleType),
|
|
21
17
|
__metadata("design:type", String)
|
|
22
18
|
], BaseSecurityVehicleDto.prototype, "securityType", void 0);
|
|
@@ -1,8 +1,4 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
2
|
-
|
|
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
|
-
|
|
2
|
-
|
|
3
|
-
|
|
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
|
-
|
|
2
|
-
|
|
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
|
-
|
|
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 || (
|
|
11
|
+
})(PersonUnitCategory || (PersonUnitCategory = {}));
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
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 || (
|
|
8
|
+
})(PersonUnitStatus || (PersonUnitStatus = {}));
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
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 || (
|
|
6
|
+
})(ResponseUnitType || (ResponseUnitType = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/ambulance-vehicle-role.enum.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
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 || (
|
|
11
|
+
})(AmbulanceVehicleRole || (AmbulanceVehicleRole = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/fire-vehicle-role.enum.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
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 || (
|
|
15
|
+
})(FireVehicleRole || (FireVehicleRole = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/road-rescue-vehicle-role.enum.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
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 || (
|
|
14
|
+
})(RoadRescueVehicleRole || (RoadRescueVehicleRole = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-crew/security-vehicle-role.enum.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
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 || (
|
|
14
|
+
})(SecurityVehicleRole || (SecurityVehicleRole = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/ambulance-vehicle-type.enum.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
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 || (
|
|
9
|
+
})(AmbulanceVehicleType || (AmbulanceVehicleType = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/fire-vehicle-type.enum.js
CHANGED
|
@@ -1,7 +1,4 @@
|
|
|
1
|
-
|
|
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 || (
|
|
9
|
+
})(FireVehicleType || (FireVehicleType = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/road-rescue-vehicle-type.enum.js
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
|
|
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 || (
|
|
7
|
+
})(RoadRescueVehicleType || (RoadRescueVehicleType = {}));
|
package/dist/modules/response-unit/enums/vehicle-unit/vehicle-type/security-vehicle-type.enum.js
CHANGED
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
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 || (
|
|
8
|
+
})(SecurityVehicleType || (SecurityVehicleType = {}));
|
|
@@ -1,11 +1,8 @@
|
|
|
1
|
-
|
|
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 || (
|
|
8
|
+
})(VehicleUnitOwnership || (VehicleUnitOwnership = {}));
|
|
@@ -1,9 +1,6 @@
|
|
|
1
|
-
|
|
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 || (
|
|
6
|
+
})(VehicleUnitStatus || (VehicleUnitStatus = {}));
|
|
@@ -1,10 +1,7 @@
|
|
|
1
|
-
|
|
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 || (
|
|
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
|
-
|
|
20
|
-
|
|
21
|
-
|
|
22
|
-
|
|
23
|
-
|
|
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
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
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
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
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
|
-
|
|
36
|
-
|
|
37
|
-
|
|
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
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
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
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
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
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
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
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
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
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
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
|
-
|
|
65
|
-
|
|
66
|
-
|
|
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
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
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
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
96
|
-
|
|
97
|
-
|
|
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
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/ambulance-vehicle.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
package/dist/modules/response-unit/interfaces/vehicle-unit/vehicle-type/road-rescue-vehicle.js
CHANGED
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|
|
@@ -1,2 +1 @@
|
|
|
1
|
-
|
|
2
|
-
Object.defineProperty(exports, "__esModule", { value: true });
|
|
1
|
+
export {};
|