easywork-common-lib 1.0.622 → 1.0.623

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.
@@ -0,0 +1,16 @@
1
+ import { Agent } from "../../../../sales";
2
+ import { AgentConnectionStage } from "../connection/h_agent_connection_stage.entity";
3
+ import { BaseEntitySimple } from "../../../../../common";
4
+ import { User } from "../../../../user.entity";
5
+ export declare class AgentConnection extends BaseEntitySimple {
6
+ agentId: string;
7
+ agentConnectionStageId: string;
8
+ relation: string;
9
+ startDate: Date;
10
+ endDate: Date;
11
+ cnsfDate: Date;
12
+ closed: boolean;
13
+ assignedBy: User;
14
+ agent: Agent;
15
+ agentConnectionStage: AgentConnectionStage;
16
+ }
@@ -0,0 +1,129 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AgentConnection = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const swagger_1 = require("@nestjs/swagger");
16
+ const sales_1 = require("../../../../sales");
17
+ const h_agent_connection_stage_entity_1 = require("../connection/h_agent_connection_stage.entity");
18
+ const common_1 = require("../../../../../common");
19
+ const user_entity_1 = require("../../../../user.entity");
20
+ let AgentConnection = class AgentConnection extends common_1.BaseEntitySimple {
21
+ agentId;
22
+ agentConnectionStageId;
23
+ relation;
24
+ startDate;
25
+ endDate;
26
+ cnsfDate;
27
+ closed;
28
+ assignedBy;
29
+ agent;
30
+ agentConnectionStage;
31
+ };
32
+ exports.AgentConnection = AgentConnection;
33
+ __decorate([
34
+ (0, swagger_1.ApiProperty)({
35
+ type: String,
36
+ description: "ID of the associated agent",
37
+ format: "uuid",
38
+ }),
39
+ (0, typeorm_1.Column)({ type: "uuid" }),
40
+ __metadata("design:type", String)
41
+ ], AgentConnection.prototype, "agentId", void 0);
42
+ __decorate([
43
+ (0, swagger_1.ApiProperty)({
44
+ type: String,
45
+ description: "ID of the associated agentConnectionStage",
46
+ format: "uuid",
47
+ }),
48
+ (0, typeorm_1.Column)({ type: "uuid" }),
49
+ __metadata("design:type", String)
50
+ ], AgentConnection.prototype, "agentConnectionStageId", void 0);
51
+ __decorate([
52
+ (0, swagger_1.ApiProperty)({
53
+ type: String,
54
+ description: "Relation description or type",
55
+ required: false,
56
+ }),
57
+ (0, typeorm_1.Column)({ nullable: true }),
58
+ __metadata("design:type", String)
59
+ ], AgentConnection.prototype, "relation", void 0);
60
+ __decorate([
61
+ (0, swagger_1.ApiProperty)({
62
+ type: Date,
63
+ description: "Start date of the process",
64
+ required: false,
65
+ }),
66
+ (0, typeorm_1.Column)({ nullable: true }),
67
+ __metadata("design:type", Date)
68
+ ], AgentConnection.prototype, "startDate", void 0);
69
+ __decorate([
70
+ (0, swagger_1.ApiProperty)({
71
+ type: Date,
72
+ description: "End date of the process",
73
+ required: false,
74
+ }),
75
+ (0, typeorm_1.Column)({ nullable: true }),
76
+ __metadata("design:type", Date)
77
+ ], AgentConnection.prototype, "endDate", void 0);
78
+ __decorate([
79
+ (0, swagger_1.ApiProperty)({
80
+ type: Date,
81
+ description: "Date of CNFS",
82
+ required: false,
83
+ }),
84
+ (0, typeorm_1.Column)({ nullable: true }),
85
+ __metadata("design:type", Date)
86
+ ], AgentConnection.prototype, "cnsfDate", void 0);
87
+ __decorate([
88
+ (0, swagger_1.ApiProperty)({
89
+ type: Boolean,
90
+ description: "Is the process closed?",
91
+ required: false,
92
+ }),
93
+ (0, typeorm_1.Column)({ default: false }),
94
+ __metadata("design:type", Boolean)
95
+ ], AgentConnection.prototype, "closed", void 0);
96
+ __decorate([
97
+ (0, swagger_1.ApiProperty)({
98
+ type: () => user_entity_1.User,
99
+ description: "Responsible (User)",
100
+ }),
101
+ (0, typeorm_1.ManyToOne)(() => user_entity_1.User, { nullable: true, onDelete: "SET NULL" }),
102
+ (0, typeorm_1.JoinColumn)(),
103
+ __metadata("design:type", user_entity_1.User)
104
+ ], AgentConnection.prototype, "assignedBy", void 0);
105
+ __decorate([
106
+ (0, class_transformer_1.Exclude)(),
107
+ (0, swagger_1.ApiProperty)({ type: () => sales_1.Agent, description: "Agent entity associated" }),
108
+ (0, typeorm_1.ManyToOne)(() => sales_1.Agent, (agent) => agent.connections, {
109
+ onDelete: "CASCADE",
110
+ onUpdate: "CASCADE",
111
+ }),
112
+ __metadata("design:type", sales_1.Agent)
113
+ ], AgentConnection.prototype, "agent", void 0);
114
+ __decorate([
115
+ (0, swagger_1.ApiProperty)({
116
+ type: () => h_agent_connection_stage_entity_1.AgentConnectionStage,
117
+ description: "AgentConnectionStage entity associated",
118
+ }),
119
+ (0, typeorm_1.ManyToOne)(() => h_agent_connection_stage_entity_1.AgentConnectionStage, {
120
+ onDelete: "CASCADE",
121
+ onUpdate: "CASCADE",
122
+ eager: true,
123
+ }),
124
+ __metadata("design:type", h_agent_connection_stage_entity_1.AgentConnectionStage)
125
+ ], AgentConnection.prototype, "agentConnectionStage", void 0);
126
+ exports.AgentConnection = AgentConnection = __decorate([
127
+ (0, typeorm_1.Entity)()
128
+ ], AgentConnection);
129
+ //# sourceMappingURL=h_agent_connection.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"h_agent_connection.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/helpers/sales/agent/connection/h_agent_connection.entity.ts"],"names":[],"mappings":"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"}
@@ -0,0 +1,5 @@
1
+ import { BaseEntitySimple } from "../../../../../common/database/base.entity";
2
+ export declare class AgentConnectionStage extends BaseEntitySimple {
3
+ name: string;
4
+ idx: number;
5
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AgentConnectionStage = void 0;
13
+ const base_entity_1 = require("../../../../../common/database/base.entity");
14
+ const class_validator_1 = require("class-validator");
15
+ const typeorm_1 = require("typeorm");
16
+ const swagger_1 = require("@nestjs/swagger");
17
+ let AgentConnectionStage = class AgentConnectionStage extends base_entity_1.BaseEntitySimple {
18
+ name;
19
+ idx;
20
+ };
21
+ exports.AgentConnectionStage = AgentConnectionStage;
22
+ __decorate([
23
+ (0, swagger_1.ApiProperty)({
24
+ type: String,
25
+ description: "Name of the Agent Connection stage",
26
+ minLength: 1,
27
+ }),
28
+ (0, class_validator_1.MinLength)(1),
29
+ (0, typeorm_1.Column)({ unique: true }),
30
+ __metadata("design:type", String)
31
+ ], AgentConnectionStage.prototype, "name", void 0);
32
+ __decorate([
33
+ (0, swagger_1.ApiProperty)({
34
+ type: Number,
35
+ description: "Index of the agent connection stage",
36
+ }),
37
+ (0, typeorm_1.Column)(),
38
+ __metadata("design:type", Number)
39
+ ], AgentConnectionStage.prototype, "idx", void 0);
40
+ exports.AgentConnectionStage = AgentConnectionStage = __decorate([
41
+ (0, typeorm_1.Entity)()
42
+ ], AgentConnectionStage);
43
+ //# sourceMappingURL=h_agent_connection_stage.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"h_agent_connection_stage.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/helpers/sales/agent/connection/h_agent_connection_stage.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4EAA8E;AAC9E,qDAA4C;AAC5C,qCAAyC;AACzC,6CAA8C;AAGvC,IAAM,oBAAoB,GAA1B,MAAM,oBAAqB,SAAQ,8BAAgB;IAQxD,IAAI,CAAS;IAOb,GAAG,CAAS;CACb,CAAA;AAhBY,oDAAoB;AAQ/B;IAPC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,oCAAoC;QACjD,SAAS,EAAE,CAAC;KACb,CAAC;IACD,IAAA,2BAAS,EAAC,CAAC,CAAC;IACZ,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;kDACZ;AAOb;IALC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,qCAAqC;KACnD,CAAC;IACD,IAAA,gBAAM,GAAE;;iDACG;+BAfD,oBAAoB;IADhC,IAAA,gBAAM,GAAE;GACI,oBAAoB,CAgBhC"}
@@ -0,0 +1,15 @@
1
+ import { Agent } from "../../../../sales";
2
+ import { AgentRecruitmentStage } from "./h_agent_recruitment_stage.entity";
3
+ import { BaseEntitySimple } from "../../../../../common";
4
+ import { User } from "../../../../user.entity";
5
+ export declare class AgentRecruitment extends BaseEntitySimple {
6
+ agentId: string;
7
+ agentRecruitmentStageId: string;
8
+ relation: string;
9
+ startDate: Date;
10
+ endDate: Date;
11
+ entryDate: Date;
12
+ assignedBy: User;
13
+ agent: Agent;
14
+ agentRecruitmentStage: AgentRecruitmentStage;
15
+ }
@@ -0,0 +1,119 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AgentRecruitment = void 0;
13
+ const typeorm_1 = require("typeorm");
14
+ const class_transformer_1 = require("class-transformer");
15
+ const swagger_1 = require("@nestjs/swagger");
16
+ const sales_1 = require("../../../../sales");
17
+ const h_agent_recruitment_stage_entity_1 = require("./h_agent_recruitment_stage.entity");
18
+ const common_1 = require("../../../../../common");
19
+ const user_entity_1 = require("../../../../user.entity");
20
+ let AgentRecruitment = class AgentRecruitment extends common_1.BaseEntitySimple {
21
+ agentId;
22
+ agentRecruitmentStageId;
23
+ relation;
24
+ startDate;
25
+ endDate;
26
+ entryDate;
27
+ assignedBy;
28
+ agent;
29
+ agentRecruitmentStage;
30
+ };
31
+ exports.AgentRecruitment = AgentRecruitment;
32
+ __decorate([
33
+ (0, swagger_1.ApiProperty)({
34
+ type: String,
35
+ description: "ID of the associated agent",
36
+ format: "uuid",
37
+ }),
38
+ (0, typeorm_1.Column)({ type: "uuid" }),
39
+ __metadata("design:type", String)
40
+ ], AgentRecruitment.prototype, "agentId", void 0);
41
+ __decorate([
42
+ (0, swagger_1.ApiProperty)({
43
+ type: String,
44
+ description: "ID of the associated agentRecruitmentStage",
45
+ format: "uuid",
46
+ }),
47
+ (0, typeorm_1.Column)({ type: "uuid" }),
48
+ __metadata("design:type", String)
49
+ ], AgentRecruitment.prototype, "agentRecruitmentStageId", void 0);
50
+ __decorate([
51
+ (0, swagger_1.ApiProperty)({
52
+ type: String,
53
+ description: "Relation description or type",
54
+ required: false,
55
+ }),
56
+ (0, typeorm_1.Column)({ nullable: true }),
57
+ __metadata("design:type", String)
58
+ ], AgentRecruitment.prototype, "relation", void 0);
59
+ __decorate([
60
+ (0, swagger_1.ApiProperty)({
61
+ type: Date,
62
+ description: "Start date of the process",
63
+ required: false,
64
+ }),
65
+ (0, typeorm_1.Column)({ nullable: true }),
66
+ __metadata("design:type", Date)
67
+ ], AgentRecruitment.prototype, "startDate", void 0);
68
+ __decorate([
69
+ (0, swagger_1.ApiProperty)({
70
+ type: Date,
71
+ description: "End date of the process",
72
+ required: false,
73
+ }),
74
+ (0, typeorm_1.Column)({ nullable: true }),
75
+ __metadata("design:type", Date)
76
+ ], AgentRecruitment.prototype, "endDate", void 0);
77
+ __decorate([
78
+ (0, swagger_1.ApiProperty)({
79
+ type: Date,
80
+ description: "Date of entry",
81
+ required: false,
82
+ }),
83
+ (0, typeorm_1.Column)({ nullable: true }),
84
+ __metadata("design:type", Date)
85
+ ], AgentRecruitment.prototype, "entryDate", void 0);
86
+ __decorate([
87
+ (0, swagger_1.ApiProperty)({
88
+ type: () => user_entity_1.User,
89
+ description: "Responsible (User)",
90
+ }),
91
+ (0, typeorm_1.ManyToOne)(() => user_entity_1.User, { nullable: true, onDelete: "SET NULL" }),
92
+ (0, typeorm_1.JoinColumn)(),
93
+ __metadata("design:type", user_entity_1.User)
94
+ ], AgentRecruitment.prototype, "assignedBy", void 0);
95
+ __decorate([
96
+ (0, class_transformer_1.Exclude)(),
97
+ (0, swagger_1.ApiProperty)({ type: () => sales_1.Agent, description: "Agent entity associated" }),
98
+ (0, typeorm_1.ManyToOne)(() => sales_1.Agent, (agent) => agent.recruitments, {
99
+ onDelete: "CASCADE",
100
+ onUpdate: "CASCADE",
101
+ }),
102
+ __metadata("design:type", sales_1.Agent)
103
+ ], AgentRecruitment.prototype, "agent", void 0);
104
+ __decorate([
105
+ (0, swagger_1.ApiProperty)({
106
+ type: () => h_agent_recruitment_stage_entity_1.AgentRecruitmentStage,
107
+ description: "AgentRecruitmentStage entity associated",
108
+ }),
109
+ (0, typeorm_1.ManyToOne)(() => h_agent_recruitment_stage_entity_1.AgentRecruitmentStage, {
110
+ onDelete: "CASCADE",
111
+ onUpdate: "CASCADE",
112
+ eager: true,
113
+ }),
114
+ __metadata("design:type", h_agent_recruitment_stage_entity_1.AgentRecruitmentStage)
115
+ ], AgentRecruitment.prototype, "agentRecruitmentStage", void 0);
116
+ exports.AgentRecruitment = AgentRecruitment = __decorate([
117
+ (0, typeorm_1.Entity)()
118
+ ], AgentRecruitment);
119
+ //# sourceMappingURL=h_agent_recruitment.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"h_agent_recruitment.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/helpers/sales/agent/recruitment/h_agent_recruitment.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,qCAAgE;AAChE,yDAA4C;AAC5C,6CAA8C;AAC9C,6CAA0C;AAC1C,yFAA2E;AAC3E,kDAAyD;AACzD,yDAA+C;AAGxC,IAAM,gBAAgB,GAAtB,MAAM,gBAAiB,SAAQ,yBAAgB;IAOpD,OAAO,CAAS;IAQhB,uBAAuB,CAAS;IAQhC,QAAQ,CAAS;IASjB,SAAS,CAAO;IAShB,OAAO,CAAO;IASd,SAAS,CAAO;IAShB,UAAU,CAAO;IAQV,KAAK,CAAQ;IAWb,qBAAqB,CAAwB;CACrD,CAAA;AA/EY,4CAAgB;AAO3B;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,4BAA4B;QACzC,MAAM,EAAE,MAAM;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;iDACT;AAQhB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,4CAA4C;QACzD,MAAM,EAAE,MAAM;KACf,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,IAAI,EAAE,MAAM,EAAE,CAAC;;iEACO;AAQhC;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,8BAA8B;QAC3C,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;;kDACV;AASjB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,IAAI;QACV,WAAW,EAAE,2BAA2B;QACxC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAChB,IAAI;mDAAC;AAShB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,IAAI;QACV,WAAW,EAAE,yBAAyB;QACtC,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAClB,IAAI;iDAAC;AASd;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,IAAI;QACV,WAAW,EAAE,eAAe;QAC5B,QAAQ,EAAE,KAAK;KAChB,CAAC;IACD,IAAA,gBAAM,EAAC,EAAE,QAAQ,EAAE,IAAI,EAAE,CAAC;8BAChB,IAAI;mDAAC;AAShB;IANC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,kBAAI;QAChB,WAAW,EAAE,oBAAoB;KAClC,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,kBAAI,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE,UAAU,EAAE,CAAC;IAC/D,IAAA,oBAAU,GAAE;8BACD,kBAAI;oDAAC;AAQV;IANN,IAAA,2BAAO,GAAE;IACT,IAAA,qBAAW,EAAC,EAAE,IAAI,EAAE,GAAG,EAAE,CAAC,aAAK,EAAE,WAAW,EAAE,yBAAyB,EAAE,CAAC;IAC1E,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,aAAK,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,YAAY,EAAE;QACrD,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;KACpB,CAAC;8BACY,aAAK;+CAAC;AAWb;IATN,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,GAAG,EAAE,CAAC,wDAAqB;QACjC,WAAW,EAAE,yCAAyC;KACvD,CAAC;IACD,IAAA,mBAAS,EAAC,GAAG,EAAE,CAAC,wDAAqB,EAAE;QACtC,QAAQ,EAAE,SAAS;QACnB,QAAQ,EAAE,SAAS;QACnB,KAAK,EAAE,IAAI;KACZ,CAAC;8BAC4B,wDAAqB;+DAAC;2BA9EzC,gBAAgB;IAD5B,IAAA,gBAAM,GAAE;GACI,gBAAgB,CA+E5B"}
@@ -0,0 +1,5 @@
1
+ import { BaseEntitySimple } from "../../../../../common/database/base.entity";
2
+ export declare class AgentRecruitmentStage extends BaseEntitySimple {
3
+ name: string;
4
+ idx: number;
5
+ }
@@ -0,0 +1,43 @@
1
+ "use strict";
2
+ var __decorate = (this && this.__decorate) || function (decorators, target, key, desc) {
3
+ var c = arguments.length, r = c < 3 ? target : desc === null ? desc = Object.getOwnPropertyDescriptor(target, key) : desc, d;
4
+ if (typeof Reflect === "object" && typeof Reflect.decorate === "function") r = Reflect.decorate(decorators, target, key, desc);
5
+ else for (var i = decorators.length - 1; i >= 0; i--) if (d = decorators[i]) r = (c < 3 ? d(r) : c > 3 ? d(target, key, r) : d(target, key)) || r;
6
+ return c > 3 && r && Object.defineProperty(target, key, r), r;
7
+ };
8
+ var __metadata = (this && this.__metadata) || function (k, v) {
9
+ if (typeof Reflect === "object" && typeof Reflect.metadata === "function") return Reflect.metadata(k, v);
10
+ };
11
+ Object.defineProperty(exports, "__esModule", { value: true });
12
+ exports.AgentRecruitmentStage = void 0;
13
+ const base_entity_1 = require("../../../../../common/database/base.entity");
14
+ const class_validator_1 = require("class-validator");
15
+ const typeorm_1 = require("typeorm");
16
+ const swagger_1 = require("@nestjs/swagger");
17
+ let AgentRecruitmentStage = class AgentRecruitmentStage extends base_entity_1.BaseEntitySimple {
18
+ name;
19
+ idx;
20
+ };
21
+ exports.AgentRecruitmentStage = AgentRecruitmentStage;
22
+ __decorate([
23
+ (0, swagger_1.ApiProperty)({
24
+ type: String,
25
+ description: "Name of the Agent Recruiment stage",
26
+ minLength: 1,
27
+ }),
28
+ (0, class_validator_1.MinLength)(1),
29
+ (0, typeorm_1.Column)({ unique: true }),
30
+ __metadata("design:type", String)
31
+ ], AgentRecruitmentStage.prototype, "name", void 0);
32
+ __decorate([
33
+ (0, swagger_1.ApiProperty)({
34
+ type: Number,
35
+ description: "Index of the agent recruitment stage",
36
+ }),
37
+ (0, typeorm_1.Column)(),
38
+ __metadata("design:type", Number)
39
+ ], AgentRecruitmentStage.prototype, "idx", void 0);
40
+ exports.AgentRecruitmentStage = AgentRecruitmentStage = __decorate([
41
+ (0, typeorm_1.Entity)()
42
+ ], AgentRecruitmentStage);
43
+ //# sourceMappingURL=h_agent_recruitment_stage.entity.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"h_agent_recruitment_stage.entity.js","sourceRoot":"","sources":["../../../../../../src/entities/helpers/sales/agent/recruitment/h_agent_recruitment_stage.entity.ts"],"names":[],"mappings":";;;;;;;;;;;;AAAA,4EAA8E;AAC9E,qDAA4C;AAC5C,qCAAyC;AACzC,6CAA8C;AAGvC,IAAM,qBAAqB,GAA3B,MAAM,qBAAsB,SAAQ,8BAAgB;IAQzD,IAAI,CAAS;IAOb,GAAG,CAAS;CACb,CAAA;AAhBY,sDAAqB;AAQhC;IAPC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,oCAAoC;QACjD,SAAS,EAAE,CAAC;KACb,CAAC;IACD,IAAA,2BAAS,EAAC,CAAC,CAAC;IACZ,IAAA,gBAAM,EAAC,EAAE,MAAM,EAAE,IAAI,EAAE,CAAC;;mDACZ;AAOb;IALC,IAAA,qBAAW,EAAC;QACX,IAAI,EAAE,MAAM;QACZ,WAAW,EAAE,sCAAsC;KACpD,CAAC;IACD,IAAA,gBAAM,GAAE;;kDACG;gCAfD,qBAAqB;IADjC,IAAA,gBAAM,GAAE;GACI,qBAAqB,CAgBjC"}
@@ -2,6 +2,8 @@ import { BaseEntitySimple } from "../../common/database/base.entity";
2
2
  import { User } from "../user.entity";
3
3
  import { AgentSource, AgentType } from "../helpers";
4
4
  import { AgentComment } from "./agent-comment.entity";
5
+ import { AgentRecruitment } from "../helpers/sales/agent/recruitment/h_agent_recruitment.entity";
6
+ import { AgentConnection } from "../helpers/sales/agent/connection/h_agent_connection.entity";
5
7
  export declare class Agent extends BaseEntitySimple {
6
8
  name: string;
7
9
  cua: string;
@@ -19,4 +21,6 @@ export declare class Agent extends BaseEntitySimple {
19
21
  source?: AgentSource;
20
22
  comments: AgentComment[];
21
23
  searchVector: string;
24
+ recruitments?: AgentRecruitment[];
25
+ connections?: AgentConnection[];
22
26
  }
@@ -16,6 +16,8 @@ const typeorm_1 = require("typeorm");
16
16
  const user_entity_1 = require("../user.entity");
17
17
  const helpers_1 = require("../helpers");
18
18
  const agent_comment_entity_1 = require("./agent-comment.entity");
19
+ const h_agent_recruitment_entity_1 = require("../helpers/sales/agent/recruitment/h_agent_recruitment.entity");
20
+ const h_agent_connection_entity_1 = require("../helpers/sales/agent/connection/h_agent_connection.entity");
19
21
  let Agent = class Agent extends base_entity_1.BaseEntitySimple {
20
22
  name;
21
23
  cua;
@@ -33,6 +35,8 @@ let Agent = class Agent extends base_entity_1.BaseEntitySimple {
33
35
  source;
34
36
  comments;
35
37
  searchVector;
38
+ recruitments;
39
+ connections;
36
40
  };
37
41
  exports.Agent = Agent;
38
42
  __decorate([
@@ -180,6 +184,28 @@ __decorate([
180
184
  (0, typeorm_1.Column)({ type: "tsvector", nullable: true }),
181
185
  __metadata("design:type", String)
182
186
  ], Agent.prototype, "searchVector", void 0);
187
+ __decorate([
188
+ (0, swagger_1.ApiProperty)({
189
+ type: () => [h_agent_recruitment_entity_1.AgentRecruitment],
190
+ description: "Recruitments Data associated with the agent",
191
+ }),
192
+ (0, typeorm_1.OneToMany)(() => h_agent_recruitment_entity_1.AgentRecruitment, (agentRecruitment) => agentRecruitment.agent, {
193
+ onDelete: "CASCADE",
194
+ onUpdate: "CASCADE",
195
+ }),
196
+ __metadata("design:type", Array)
197
+ ], Agent.prototype, "recruitments", void 0);
198
+ __decorate([
199
+ (0, swagger_1.ApiProperty)({
200
+ type: () => [h_agent_connection_entity_1.AgentConnection],
201
+ description: "Connections Data associated with the agent",
202
+ }),
203
+ (0, typeorm_1.OneToMany)(() => h_agent_connection_entity_1.AgentConnection, (agentConnection) => agentConnection.agent, {
204
+ onDelete: "CASCADE",
205
+ onUpdate: "CASCADE",
206
+ }),
207
+ __metadata("design:type", Array)
208
+ ], Agent.prototype, "connections", void 0);
183
209
  exports.Agent = Agent = __decorate([
184
210
  (0, typeorm_1.Entity)()
185
211
  ], Agent);
@@ -1 +1 @@
1
- {"version":3,"file":"agent.entity.js","sourceRoot":"","sources":["../../../src/entities/sales/agent.entity.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"agent.entity.js","sourceRoot":"","sources":["../../../src/entities/sales/agent.entity.ts"],"names":[],"mappings":"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"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "easywork-common-lib",
3
- "version": "1.0.622",
3
+ "version": "1.0.623",
4
4
  "description": "Librería común de Easywork",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {