easywork-common-lib 1.0.1352 → 1.0.1354
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/common/enums/sales.enum.d.ts +2 -1
- package/dist/common/enums/sales.enum.js +1 -0
- package/dist/common/enums/sales.enum.js.map +1 -1
- package/dist/entities/helpers/sales/agent/capacitation/h_agent_capacitation_stage.entity.js +1 -1
- package/dist/entities/helpers/sales/agent/capacitation/h_agent_capacitation_stage.entity.js.map +1 -1
- package/dist/entities/helpers/sales/agent/certificate/h_agent_certificate_stage.entity.js +1 -1
- package/dist/entities/helpers/sales/agent/certificate/h_agent_certificate_stage.entity.js.map +1 -1
- package/dist/entities/helpers/sales/agent/connection/h_agent_connection_stage.entity.js +1 -1
- package/dist/entities/helpers/sales/agent/connection/h_agent_connection_stage.entity.js.map +1 -1
- package/dist/entities/helpers/sales/agent/recruitment/h_agent_recruitment_stage.entity.js +1 -1
- package/dist/entities/helpers/sales/agent/recruitment/h_agent_recruitment_stage.entity.js.map +1 -1
- package/dist/entities/subscriptions/payment-history.entity.d.ts +24 -0
- package/dist/entities/subscriptions/payment-history.entity.js +124 -0
- package/dist/entities/subscriptions/payment-history.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/index.d.ts +7 -0
- package/dist/entities/thirdparty/wati/index.js +24 -0
- package/dist/entities/thirdparty/wati/index.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati-chat.entity.d.ts +27 -0
- package/dist/entities/thirdparty/wati/wati-chat.entity.js +207 -0
- package/dist/entities/thirdparty/wati/wati-chat.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati-configuration.entity.d.ts +22 -0
- package/dist/entities/thirdparty/wati/wati-configuration.entity.js +149 -0
- package/dist/entities/thirdparty/wati/wati-configuration.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati-events.entity.d.ts +9 -0
- package/dist/entities/thirdparty/wati/wati-events.entity.js +63 -0
- package/dist/entities/thirdparty/wati/wati-events.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati-message.entity.d.ts +30 -0
- package/dist/entities/thirdparty/wati/wati-message.entity.js +280 -0
- package/dist/entities/thirdparty/wati/wati-message.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati-user-access-log.entity.d.ts +71 -0
- package/dist/entities/thirdparty/wati/wati-user-access-log.entity.js +216 -0
- package/dist/entities/thirdparty/wati/wati-user-access-log.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati-user-access.entity.d.ts +31 -0
- package/dist/entities/thirdparty/wati/wati-user-access.entity.js +193 -0
- package/dist/entities/thirdparty/wati/wati-user-access.entity.js.map +1 -0
- package/dist/entities/thirdparty/wati/wati.enum.d.ts +69 -0
- package/dist/entities/thirdparty/wati/wati.enum.js +83 -0
- package/dist/entities/thirdparty/wati/wati.enum.js.map +1 -0
- package/dist/grpc/drive/drive.proto +339 -339
- package/dist/grpc/drive/leads.proto +114 -114
- package/dist/modules/authorization/services/resource-access-filter.service.js +21 -21
- package/package.json +55 -55
|
@@ -1,114 +1,114 @@
|
|
|
1
|
-
syntax = "proto3";
|
|
2
|
-
|
|
3
|
-
package leads;
|
|
4
|
-
|
|
5
|
-
// Definición del mensaje principal para crear un Lead
|
|
6
|
-
message CreateLeadRequest {
|
|
7
|
-
// Representa la foto del lead
|
|
8
|
-
bytes photo = 1;
|
|
9
|
-
|
|
10
|
-
// Especifica el tipo de persona para el lead
|
|
11
|
-
PersonType typePerson = 2;
|
|
12
|
-
|
|
13
|
-
// Nombre del lead
|
|
14
|
-
string name = 3;
|
|
15
|
-
|
|
16
|
-
// Apellido del lead
|
|
17
|
-
string lastName = 4;
|
|
18
|
-
|
|
19
|
-
// Nombre completo del lead
|
|
20
|
-
string fullName = 5;
|
|
21
|
-
|
|
22
|
-
// Segundo nombre del lead
|
|
23
|
-
string secondName = 6;
|
|
24
|
-
|
|
25
|
-
// RFC del lead
|
|
26
|
-
string rfc = 7;
|
|
27
|
-
|
|
28
|
-
// Dirección del lead
|
|
29
|
-
string address = 8;
|
|
30
|
-
|
|
31
|
-
// Cargo del lead
|
|
32
|
-
string cargo = 9;
|
|
33
|
-
|
|
34
|
-
// Fecha de nacimiento del lead
|
|
35
|
-
string birthdate = 10;
|
|
36
|
-
|
|
37
|
-
// Género del lead
|
|
38
|
-
string gender = 11;
|
|
39
|
-
|
|
40
|
-
// CURP del lead
|
|
41
|
-
string curp = 12;
|
|
42
|
-
|
|
43
|
-
// CUA del lead
|
|
44
|
-
string cua = 13;
|
|
45
|
-
|
|
46
|
-
// Puesto del lead
|
|
47
|
-
string post = 14;
|
|
48
|
-
|
|
49
|
-
// Observaciones sobre el lead
|
|
50
|
-
string observations = 15;
|
|
51
|
-
|
|
52
|
-
// ¿El lead es exportado?
|
|
53
|
-
bool export = 16;
|
|
54
|
-
|
|
55
|
-
// Descripción de la fuente del lead
|
|
56
|
-
string sourceDescription = 17;
|
|
57
|
-
|
|
58
|
-
// Compañía del lead
|
|
59
|
-
string company = 18;
|
|
60
|
-
|
|
61
|
-
// ID Tipo de Cliente
|
|
62
|
-
string typeId = 19;
|
|
63
|
-
|
|
64
|
-
// ID Origen del lead
|
|
65
|
-
string sourceId = 20;
|
|
66
|
-
|
|
67
|
-
// Números de teléfono asociados con el lead
|
|
68
|
-
repeated PhoneDto phones = 21;
|
|
69
|
-
|
|
70
|
-
// Emails asociados con el lead
|
|
71
|
-
repeated EmailDto emails = 22;
|
|
72
|
-
|
|
73
|
-
// Códigos de aseguradora asociados con el lead
|
|
74
|
-
repeated CodigoDto codigos = 23;
|
|
75
|
-
|
|
76
|
-
// ID del usuario asignado al lead
|
|
77
|
-
string assignedById = 24;
|
|
78
|
-
|
|
79
|
-
// ID del usuario observador
|
|
80
|
-
string observerId = 25;
|
|
81
|
-
|
|
82
|
-
// Monto de la cotización
|
|
83
|
-
double quoteAmount = 26;
|
|
84
|
-
|
|
85
|
-
// ID de la moneda de la cotización
|
|
86
|
-
string quoteCurrencyId = 27;
|
|
87
|
-
|
|
88
|
-
// IDs de los archivos
|
|
89
|
-
repeated string filesIds = 28;
|
|
90
|
-
}
|
|
91
|
-
|
|
92
|
-
// Definición del enum PersonType
|
|
93
|
-
enum PersonType {
|
|
94
|
-
FISICA = 0;
|
|
95
|
-
MORAL = 1;
|
|
96
|
-
}
|
|
97
|
-
|
|
98
|
-
// Definición de PhoneDto
|
|
99
|
-
message PhoneDto {
|
|
100
|
-
string number = 1;
|
|
101
|
-
string relation = 2;
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
// Definición de EmailDto
|
|
105
|
-
message EmailDto {
|
|
106
|
-
string email = 1;
|
|
107
|
-
string relation = 2;
|
|
108
|
-
}
|
|
109
|
-
|
|
110
|
-
// Definición de CodigoDto
|
|
111
|
-
message CodigoDto {
|
|
112
|
-
string codigo = 1;
|
|
113
|
-
string insuranceId = 2;
|
|
114
|
-
}
|
|
1
|
+
syntax = "proto3";
|
|
2
|
+
|
|
3
|
+
package leads;
|
|
4
|
+
|
|
5
|
+
// Definición del mensaje principal para crear un Lead
|
|
6
|
+
message CreateLeadRequest {
|
|
7
|
+
// Representa la foto del lead
|
|
8
|
+
bytes photo = 1;
|
|
9
|
+
|
|
10
|
+
// Especifica el tipo de persona para el lead
|
|
11
|
+
PersonType typePerson = 2;
|
|
12
|
+
|
|
13
|
+
// Nombre del lead
|
|
14
|
+
string name = 3;
|
|
15
|
+
|
|
16
|
+
// Apellido del lead
|
|
17
|
+
string lastName = 4;
|
|
18
|
+
|
|
19
|
+
// Nombre completo del lead
|
|
20
|
+
string fullName = 5;
|
|
21
|
+
|
|
22
|
+
// Segundo nombre del lead
|
|
23
|
+
string secondName = 6;
|
|
24
|
+
|
|
25
|
+
// RFC del lead
|
|
26
|
+
string rfc = 7;
|
|
27
|
+
|
|
28
|
+
// Dirección del lead
|
|
29
|
+
string address = 8;
|
|
30
|
+
|
|
31
|
+
// Cargo del lead
|
|
32
|
+
string cargo = 9;
|
|
33
|
+
|
|
34
|
+
// Fecha de nacimiento del lead
|
|
35
|
+
string birthdate = 10;
|
|
36
|
+
|
|
37
|
+
// Género del lead
|
|
38
|
+
string gender = 11;
|
|
39
|
+
|
|
40
|
+
// CURP del lead
|
|
41
|
+
string curp = 12;
|
|
42
|
+
|
|
43
|
+
// CUA del lead
|
|
44
|
+
string cua = 13;
|
|
45
|
+
|
|
46
|
+
// Puesto del lead
|
|
47
|
+
string post = 14;
|
|
48
|
+
|
|
49
|
+
// Observaciones sobre el lead
|
|
50
|
+
string observations = 15;
|
|
51
|
+
|
|
52
|
+
// ¿El lead es exportado?
|
|
53
|
+
bool export = 16;
|
|
54
|
+
|
|
55
|
+
// Descripción de la fuente del lead
|
|
56
|
+
string sourceDescription = 17;
|
|
57
|
+
|
|
58
|
+
// Compañía del lead
|
|
59
|
+
string company = 18;
|
|
60
|
+
|
|
61
|
+
// ID Tipo de Cliente
|
|
62
|
+
string typeId = 19;
|
|
63
|
+
|
|
64
|
+
// ID Origen del lead
|
|
65
|
+
string sourceId = 20;
|
|
66
|
+
|
|
67
|
+
// Números de teléfono asociados con el lead
|
|
68
|
+
repeated PhoneDto phones = 21;
|
|
69
|
+
|
|
70
|
+
// Emails asociados con el lead
|
|
71
|
+
repeated EmailDto emails = 22;
|
|
72
|
+
|
|
73
|
+
// Códigos de aseguradora asociados con el lead
|
|
74
|
+
repeated CodigoDto codigos = 23;
|
|
75
|
+
|
|
76
|
+
// ID del usuario asignado al lead
|
|
77
|
+
string assignedById = 24;
|
|
78
|
+
|
|
79
|
+
// ID del usuario observador
|
|
80
|
+
string observerId = 25;
|
|
81
|
+
|
|
82
|
+
// Monto de la cotización
|
|
83
|
+
double quoteAmount = 26;
|
|
84
|
+
|
|
85
|
+
// ID de la moneda de la cotización
|
|
86
|
+
string quoteCurrencyId = 27;
|
|
87
|
+
|
|
88
|
+
// IDs de los archivos
|
|
89
|
+
repeated string filesIds = 28;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// Definición del enum PersonType
|
|
93
|
+
enum PersonType {
|
|
94
|
+
FISICA = 0;
|
|
95
|
+
MORAL = 1;
|
|
96
|
+
}
|
|
97
|
+
|
|
98
|
+
// Definición de PhoneDto
|
|
99
|
+
message PhoneDto {
|
|
100
|
+
string number = 1;
|
|
101
|
+
string relation = 2;
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// Definición de EmailDto
|
|
105
|
+
message EmailDto {
|
|
106
|
+
string email = 1;
|
|
107
|
+
string relation = 2;
|
|
108
|
+
}
|
|
109
|
+
|
|
110
|
+
// Definición de CodigoDto
|
|
111
|
+
message CodigoDto {
|
|
112
|
+
string codigo = 1;
|
|
113
|
+
string insuranceId = 2;
|
|
114
|
+
}
|
|
@@ -70,9 +70,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
70
70
|
const containsValue = value.contains;
|
|
71
71
|
containsValue.forEach((item, itemIndex) => {
|
|
72
72
|
const itemParamName = `${paramName}_contains_${itemIndex}`;
|
|
73
|
-
const relationCondition = `EXISTS (
|
|
74
|
-
SELECT 1 FROM ${tableName} tr
|
|
75
|
-
WHERE tr."taskId" = task.id AND tr."userId" = :${itemParamName}
|
|
73
|
+
const relationCondition = `EXISTS (
|
|
74
|
+
SELECT 1 FROM ${tableName} tr
|
|
75
|
+
WHERE tr."taskId" = task.id AND tr."userId" = :${itemParamName}
|
|
76
76
|
)`;
|
|
77
77
|
subConditions.push(relationCondition);
|
|
78
78
|
parameters[itemParamName] = this.extractUserId(item);
|
|
@@ -161,9 +161,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
161
161
|
const cleanItem = this.extractUserId(item);
|
|
162
162
|
if (cleanItem) {
|
|
163
163
|
const paramName = `${baseParamName}_contains_${index}`;
|
|
164
|
-
queryBuilder.andWhere(`EXISTS (
|
|
165
|
-
SELECT 1 FROM ${tableName} tr
|
|
166
|
-
WHERE tr."taskId" = task.id AND tr."userId" = :${paramName}
|
|
164
|
+
queryBuilder.andWhere(`EXISTS (
|
|
165
|
+
SELECT 1 FROM ${tableName} tr
|
|
166
|
+
WHERE tr."taskId" = task.id AND tr."userId" = :${paramName}
|
|
167
167
|
)`, {
|
|
168
168
|
[paramName]: cleanItem,
|
|
169
169
|
});
|
|
@@ -234,9 +234,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
234
234
|
const cleanItem = this.extractUserId(item);
|
|
235
235
|
if (cleanItem) {
|
|
236
236
|
const itemParamName = `${paramName}_contains_${index}`;
|
|
237
|
-
conditions.push(`EXISTS (
|
|
238
|
-
SELECT 1 FROM ${tableName} tr
|
|
239
|
-
WHERE tr."taskId" = task.id AND tr."userId" = :${itemParamName}
|
|
237
|
+
conditions.push(`EXISTS (
|
|
238
|
+
SELECT 1 FROM ${tableName} tr
|
|
239
|
+
WHERE tr."taskId" = task.id AND tr."userId" = :${itemParamName}
|
|
240
240
|
)`);
|
|
241
241
|
parameters[itemParamName] = cleanItem;
|
|
242
242
|
}
|
|
@@ -312,9 +312,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
312
312
|
const cleanItem = this.extractUserId(item);
|
|
313
313
|
if (cleanItem) {
|
|
314
314
|
const paramName = `${field}_contains_${index}`;
|
|
315
|
-
queryBuilder.andWhere(`EXISTS (
|
|
316
|
-
SELECT 1 FROM ${tableName} tr
|
|
317
|
-
WHERE tr."taskId" = task.id AND tr."userId" = :${paramName}
|
|
315
|
+
queryBuilder.andWhere(`EXISTS (
|
|
316
|
+
SELECT 1 FROM ${tableName} tr
|
|
317
|
+
WHERE tr."taskId" = task.id AND tr."userId" = :${paramName}
|
|
318
318
|
)`, {
|
|
319
319
|
[paramName]: cleanItem,
|
|
320
320
|
});
|
|
@@ -337,9 +337,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
337
337
|
return "1 = 0";
|
|
338
338
|
}
|
|
339
339
|
queryBuilder.setParameter(paramName, cleanCondition);
|
|
340
|
-
return `EXISTS (
|
|
341
|
-
SELECT 1 FROM ${tableName} tr
|
|
342
|
-
WHERE tr."taskId" = task.id AND tr."userId" IN (:...${paramName})
|
|
340
|
+
return `EXISTS (
|
|
341
|
+
SELECT 1 FROM ${tableName} tr
|
|
342
|
+
WHERE tr."taskId" = task.id AND tr."userId" IN (:...${paramName})
|
|
343
343
|
)`;
|
|
344
344
|
}
|
|
345
345
|
else if (typeof condition === "object" &&
|
|
@@ -352,9 +352,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
352
352
|
return "1 = 0";
|
|
353
353
|
}
|
|
354
354
|
queryBuilder.setParameter(paramName, cleanCondition);
|
|
355
|
-
return `EXISTS (
|
|
356
|
-
SELECT 1 FROM ${tableName} tr
|
|
357
|
-
WHERE tr."taskId" = task.id AND tr."userId" IN (:...${paramName})
|
|
355
|
+
return `EXISTS (
|
|
356
|
+
SELECT 1 FROM ${tableName} tr
|
|
357
|
+
WHERE tr."taskId" = task.id AND tr."userId" IN (:...${paramName})
|
|
358
358
|
)`;
|
|
359
359
|
}
|
|
360
360
|
else {
|
|
@@ -363,9 +363,9 @@ let ResourceAccessFilterService = class ResourceAccessFilterService {
|
|
|
363
363
|
return "1 = 0";
|
|
364
364
|
}
|
|
365
365
|
queryBuilder.setParameter(paramName, cleanCondition);
|
|
366
|
-
return `EXISTS (
|
|
367
|
-
SELECT 1 FROM ${tableName} tr
|
|
368
|
-
WHERE tr."taskId" = task.id AND tr."userId" = :${paramName}
|
|
366
|
+
return `EXISTS (
|
|
367
|
+
SELECT 1 FROM ${tableName} tr
|
|
368
|
+
WHERE tr."taskId" = task.id AND tr."userId" = :${paramName}
|
|
369
369
|
)`;
|
|
370
370
|
}
|
|
371
371
|
}
|
package/package.json
CHANGED
|
@@ -1,55 +1,55 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "easywork-common-lib",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Librería común de Easywork",
|
|
5
|
-
"main": "dist/index.js",
|
|
6
|
-
"types": "dist/index.d.ts",
|
|
7
|
-
"files": [
|
|
8
|
-
"dist/**/*",
|
|
9
|
-
"README.md",
|
|
10
|
-
"LICENSE"
|
|
11
|
-
],
|
|
12
|
-
"scripts": {
|
|
13
|
-
"build": "tsc && cpx-fixed src/**/*.proto dist/",
|
|
14
|
-
"bump": "sh ./scripts/bump.sh",
|
|
15
|
-
"bump-win": "cross-env ./scripts/bump.sh"
|
|
16
|
-
},
|
|
17
|
-
"repository": {
|
|
18
|
-
"type": "git",
|
|
19
|
-
"url": "git+https://github.com/blindariesgos/easywork-common-lib.git"
|
|
20
|
-
},
|
|
21
|
-
"keywords": [
|
|
22
|
-
"nodejs"
|
|
23
|
-
],
|
|
24
|
-
"author": "Rosmer Campos",
|
|
25
|
-
"license": "MIT",
|
|
26
|
-
"bugs": {
|
|
27
|
-
"url": "https://github.com/blindariesgos/easywork-common-lib/issues"
|
|
28
|
-
},
|
|
29
|
-
"homepage": "https://github.com/blindariesgos/easywork-common-lib#readme",
|
|
30
|
-
"dependencies": {
|
|
31
|
-
"@golevelup/nestjs-rabbitmq": "^5.7.0",
|
|
32
|
-
"@nestjs/cache-manager": "^3.0.1",
|
|
33
|
-
"@nestjs/common": "^10.4.19",
|
|
34
|
-
"@nestjs/swagger": "^7.4.2",
|
|
35
|
-
"@nestjs/typeorm": "^10.0.2",
|
|
36
|
-
"cache-manager": "^7.0.1",
|
|
37
|
-
"class-transformer": "^0.5.1",
|
|
38
|
-
"class-validator": "^0.14.2",
|
|
39
|
-
"googleapis": "^144.0.0",
|
|
40
|
-
"nanoid": "^3.3.11",
|
|
41
|
-
"nestjs-rabbitmq": "link:@types/@golevelup/nestjs-rabbitmq",
|
|
42
|
-
"rxjs": "^7.8.2",
|
|
43
|
-
"sharp": "^0.33.5",
|
|
44
|
-
"typeorm": "^0.3.25"
|
|
45
|
-
},
|
|
46
|
-
"devDependencies": {
|
|
47
|
-
"@rubiin/tsconfig": "^1.2.1",
|
|
48
|
-
"@types/node": "^20.19.4",
|
|
49
|
-
"cpx-fixed": "^1.6.0",
|
|
50
|
-
"ts-loader": "^9.5.2",
|
|
51
|
-
"ts-node": "^10.9.2",
|
|
52
|
-
"typescript": "^5.9.3"
|
|
53
|
-
},
|
|
54
|
-
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
|
|
55
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "easywork-common-lib",
|
|
3
|
+
"version": "1.0.1354",
|
|
4
|
+
"description": "Librería común de Easywork",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"types": "dist/index.d.ts",
|
|
7
|
+
"files": [
|
|
8
|
+
"dist/**/*",
|
|
9
|
+
"README.md",
|
|
10
|
+
"LICENSE"
|
|
11
|
+
],
|
|
12
|
+
"scripts": {
|
|
13
|
+
"build": "tsc && cpx-fixed src/**/*.proto dist/",
|
|
14
|
+
"bump": "sh ./scripts/bump.sh",
|
|
15
|
+
"bump-win": "cross-env ./scripts/bump.sh"
|
|
16
|
+
},
|
|
17
|
+
"repository": {
|
|
18
|
+
"type": "git",
|
|
19
|
+
"url": "git+https://github.com/blindariesgos/easywork-common-lib.git"
|
|
20
|
+
},
|
|
21
|
+
"keywords": [
|
|
22
|
+
"nodejs"
|
|
23
|
+
],
|
|
24
|
+
"author": "Rosmer Campos",
|
|
25
|
+
"license": "MIT",
|
|
26
|
+
"bugs": {
|
|
27
|
+
"url": "https://github.com/blindariesgos/easywork-common-lib/issues"
|
|
28
|
+
},
|
|
29
|
+
"homepage": "https://github.com/blindariesgos/easywork-common-lib#readme",
|
|
30
|
+
"dependencies": {
|
|
31
|
+
"@golevelup/nestjs-rabbitmq": "^5.7.0",
|
|
32
|
+
"@nestjs/cache-manager": "^3.0.1",
|
|
33
|
+
"@nestjs/common": "^10.4.19",
|
|
34
|
+
"@nestjs/swagger": "^7.4.2",
|
|
35
|
+
"@nestjs/typeorm": "^10.0.2",
|
|
36
|
+
"cache-manager": "^7.0.1",
|
|
37
|
+
"class-transformer": "^0.5.1",
|
|
38
|
+
"class-validator": "^0.14.2",
|
|
39
|
+
"googleapis": "^144.0.0",
|
|
40
|
+
"nanoid": "^3.3.11",
|
|
41
|
+
"nestjs-rabbitmq": "link:@types/@golevelup/nestjs-rabbitmq",
|
|
42
|
+
"rxjs": "^7.8.2",
|
|
43
|
+
"sharp": "^0.33.5",
|
|
44
|
+
"typeorm": "^0.3.25"
|
|
45
|
+
},
|
|
46
|
+
"devDependencies": {
|
|
47
|
+
"@rubiin/tsconfig": "^1.2.1",
|
|
48
|
+
"@types/node": "^20.19.4",
|
|
49
|
+
"cpx-fixed": "^1.6.0",
|
|
50
|
+
"ts-loader": "^9.5.2",
|
|
51
|
+
"ts-node": "^10.9.2",
|
|
52
|
+
"typescript": "^5.9.3"
|
|
53
|
+
},
|
|
54
|
+
"packageManager": "pnpm@9.12.2+sha512.22721b3a11f81661ae1ec68ce1a7b879425a1ca5b991c975b074ac220b187ce56c708fe5db69f4c962c989452eee76c82877f4ee80f474cebd61ee13461b6228"
|
|
55
|
+
}
|