easywork-common-lib 1.0.416 → 1.0.419
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/constants/app.contants.d.ts +15 -4
- package/dist/common/constants/app.contants.js +56 -31
- package/dist/common/constants/app.contants.js.map +1 -1
- package/dist/grpc/drive/drive.proto +1 -8
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
- package/dist/grpc/google/any.proto +0 -162
- package/dist/grpc/google/struct.proto +0 -95
|
@@ -9,10 +9,21 @@ export declare const RECEIPT_STAGE_CANCELLED = "28412630-5af7-4ded-818c-985e55df
|
|
|
9
9
|
export declare const APP_MXN_CURRENCY = "7a7f40f1-45e2-428f-bea9-a731866d6886";
|
|
10
10
|
export declare const APP_USD_CURRENCY = "c5324961-4eb9-44f9-8ee0-16a087cecaac";
|
|
11
11
|
export declare const APP_UDIS_CURRENCY = "e0262532-8377-4bda-bbf7-34f49550be66";
|
|
12
|
-
export declare const CLIENT_DOCUMENTS_FOLDERS:
|
|
12
|
+
export declare const CLIENT_DOCUMENTS_FOLDERS: {
|
|
13
|
+
name: string;
|
|
14
|
+
metadata: {
|
|
15
|
+
fid: string;
|
|
16
|
+
};
|
|
17
|
+
}[];
|
|
13
18
|
export declare const CLIENTS_POLIZA_FOLDERS: {
|
|
14
|
-
VIDA:
|
|
15
|
-
|
|
16
|
-
|
|
19
|
+
VIDA: {
|
|
20
|
+
name: string;
|
|
21
|
+
}[];
|
|
22
|
+
GMM: {
|
|
23
|
+
name: string;
|
|
24
|
+
}[];
|
|
25
|
+
AUTOS: {
|
|
26
|
+
name: string;
|
|
27
|
+
}[];
|
|
17
28
|
};
|
|
18
29
|
export declare const CONTACTS_DOCUMENTS_FOLDERS: string[];
|
|
@@ -13,44 +13,69 @@ exports.APP_MXN_CURRENCY = "7a7f40f1-45e2-428f-bea9-a731866d6886";
|
|
|
13
13
|
exports.APP_USD_CURRENCY = "c5324961-4eb9-44f9-8ee0-16a087cecaac";
|
|
14
14
|
exports.APP_UDIS_CURRENCY = "e0262532-8377-4bda-bbf7-34f49550be66";
|
|
15
15
|
exports.CLIENT_DOCUMENTS_FOLDERS = [
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
16
|
+
{
|
|
17
|
+
name: "Documentos del cliente: RFC, IFE, Comprobantes de domicilio",
|
|
18
|
+
metadata: {
|
|
19
|
+
fid: "clidoc"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
{
|
|
23
|
+
name: "Cotizaciones",
|
|
24
|
+
metadata: {
|
|
25
|
+
fid: "cliquote"
|
|
26
|
+
}
|
|
27
|
+
},
|
|
28
|
+
{
|
|
29
|
+
name: "Propuesta comercial",
|
|
30
|
+
metadata: {
|
|
31
|
+
fid: "cliprop"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
{
|
|
35
|
+
name: "Solicitudes",
|
|
36
|
+
metadata: {
|
|
37
|
+
fid: "clisol"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
{
|
|
41
|
+
name: "Póliza",
|
|
42
|
+
metadata: {
|
|
43
|
+
fid: "clipoliza"
|
|
44
|
+
}
|
|
45
|
+
}
|
|
21
46
|
];
|
|
22
47
|
exports.CLIENTS_POLIZA_FOLDERS = {
|
|
23
48
|
VIDA: [
|
|
24
|
-
"Pagos Recibos",
|
|
25
|
-
"Renovaciones",
|
|
26
|
-
"Siniestros",
|
|
27
|
-
"Reembolsos",
|
|
28
|
-
"Versiones",
|
|
29
|
-
"Comisiones",
|
|
30
|
-
"Facturas",
|
|
31
|
-
"Rescate de Fondos",
|
|
32
|
-
"Otros Documentos"
|
|
49
|
+
{ name: "Pagos Recibos" },
|
|
50
|
+
{ name: "Renovaciones" },
|
|
51
|
+
{ name: "Siniestros" },
|
|
52
|
+
{ name: "Reembolsos" },
|
|
53
|
+
{ name: "Versiones" },
|
|
54
|
+
{ name: "Comisiones" },
|
|
55
|
+
{ name: "Facturas" },
|
|
56
|
+
{ name: "Rescate de Fondos" },
|
|
57
|
+
{ name: "Otros Documentos" }
|
|
33
58
|
],
|
|
34
59
|
GMM: [
|
|
35
|
-
"Pagos Recibos",
|
|
36
|
-
"Renovaciones",
|
|
37
|
-
"Siniestros",
|
|
38
|
-
"Reembolsos",
|
|
39
|
-
"Versiones",
|
|
40
|
-
"Comisiones",
|
|
41
|
-
"Formatos",
|
|
42
|
-
"Programaciones",
|
|
43
|
-
"Facturas",
|
|
44
|
-
"Otros Documentos"
|
|
60
|
+
{ name: "Pagos Recibos" },
|
|
61
|
+
{ name: "Renovaciones" },
|
|
62
|
+
{ name: "Siniestros" },
|
|
63
|
+
{ name: "Reembolsos" },
|
|
64
|
+
{ name: "Versiones" },
|
|
65
|
+
{ name: "Comisiones" },
|
|
66
|
+
{ name: "Formatos" },
|
|
67
|
+
{ name: "Programaciones" },
|
|
68
|
+
{ name: "Facturas" },
|
|
69
|
+
{ name: "Otros Documentos" }
|
|
45
70
|
],
|
|
46
71
|
AUTOS: [
|
|
47
|
-
"Pagos Recibos",
|
|
48
|
-
"Renovaciones",
|
|
49
|
-
"Siniestros",
|
|
50
|
-
"Versiones",
|
|
51
|
-
"Comisiones",
|
|
52
|
-
"Otros formatos",
|
|
53
|
-
"Facturas"
|
|
72
|
+
{ name: "Pagos Recibos" },
|
|
73
|
+
{ name: "Renovaciones" },
|
|
74
|
+
{ name: "Siniestros" },
|
|
75
|
+
{ name: "Versiones" },
|
|
76
|
+
{ name: "Comisiones" },
|
|
77
|
+
{ name: "Otros formatos" },
|
|
78
|
+
{ name: "Facturas" }
|
|
54
79
|
]
|
|
55
80
|
};
|
|
56
81
|
exports.CONTACTS_DOCUMENTS_FOLDERS = [
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"app.contants.js","sourceRoot":"","sources":["../../../src/common/constants/app.contants.ts"],"names":[],"mappings":";;;AAAa,QAAA,kBAAkB,GAAG,sCAAsC,CAAC;AAC5D,QAAA,mBAAmB,GAAG,sCAAsC,CAAC;AAC7D,QAAA,oCAAoC,GAAG,sCAAsC,CAAC;AAC9E,QAAA,sCAAsC,GAAG,sCAAsC,CAAC;AAChF,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;AAC3D,QAAA,4CAA4C,GAAG,sCAAsC,CAAC;AAEtF,QAAA,kBAAkB,GAAG,sCAAsC,CAAC;AAC5D,QAAA,uBAAuB,GAAG,sCAAsC,CAAC;AAEjE,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;AAG3D,QAAA,wBAAwB,GAAG;IACtC,6DAA6D;
|
|
1
|
+
{"version":3,"file":"app.contants.js","sourceRoot":"","sources":["../../../src/common/constants/app.contants.ts"],"names":[],"mappings":";;;AAAa,QAAA,kBAAkB,GAAG,sCAAsC,CAAC;AAC5D,QAAA,mBAAmB,GAAG,sCAAsC,CAAC;AAC7D,QAAA,oCAAoC,GAAG,sCAAsC,CAAC;AAC9E,QAAA,sCAAsC,GAAG,sCAAsC,CAAC;AAChF,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;AAC3D,QAAA,4CAA4C,GAAG,sCAAsC,CAAC;AAEtF,QAAA,kBAAkB,GAAG,sCAAsC,CAAC;AAC5D,QAAA,uBAAuB,GAAG,sCAAsC,CAAC;AAEjE,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;AAG3D,QAAA,wBAAwB,GAAG;IACtC;QACE,IAAI,EAAE,6DAA6D;QACnE,QAAQ,EAAE;YACR,GAAG,EAAE,QAAQ;SACd;KACF;IACD;QACE,IAAI,EAAE,cAAc;QACpB,QAAQ,EAAE;YACR,GAAG,EAAE,UAAU;SAChB;KACF;IACD;QACE,IAAI,EAAE,qBAAqB;QAC3B,QAAQ,EAAE;YACR,GAAG,EAAE,SAAS;SACf;KACF;IACD;QACE,IAAI,EAAE,aAAa;QACnB,QAAQ,EAAE;YACR,GAAG,EAAE,QAAQ;SACd;KACF;IACD;QACE,IAAI,EAAE,QAAQ;QACd,QAAQ,EAAE;YACR,GAAG,EAAE,WAAW;SACjB;KACF;CACF,CAAA;AAEY,QAAA,sBAAsB,GAAG;IACpC,IAAI,EAAE;QACJ,EAAE,IAAI,EAAE,eAAe,EAAE;QACzB,EAAE,IAAI,EAAE,cAAc,EAAE;QACxB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,WAAW,EAAE;QACrB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,UAAU,EAAE;QACpB,EAAE,IAAI,EAAE,mBAAmB,EAAE;QAC7B,EAAE,IAAI,EAAE,kBAAkB,EAAE;KAC7B;IACD,GAAG,EAAE;QACH,EAAE,IAAI,EAAE,eAAe,EAAE;QACzB,EAAE,IAAI,EAAE,cAAc,EAAE;QACxB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,WAAW,EAAE;QACrB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,UAAU,EAAE;QACpB,EAAE,IAAI,EAAE,gBAAgB,EAAE;QAC1B,EAAE,IAAI,EAAE,UAAU,EAAE;QACpB,EAAE,IAAI,EAAE,kBAAkB,EAAE;KAC7B;IACD,KAAK,EAAE;QACL,EAAE,IAAI,EAAE,eAAe,EAAE;QACzB,EAAE,IAAI,EAAE,cAAc,EAAE;QACxB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,WAAW,EAAE;QACrB,EAAE,IAAI,EAAE,YAAY,EAAE;QACtB,EAAE,IAAI,EAAE,gBAAgB,EAAE;QAC1B,EAAE,IAAI,EAAE,UAAU,EAAE;KACrB;CACF,CAAA;AAEY,QAAA,0BAA0B,GAAG;IACxC,qBAAqB;IACrB,wCAAwC;IACxC,oCAAoC;IACpC,6CAA6C;IAC7C,kCAAkC;IAClC,qDAAqD;IACrD,WAAW;IACX,gBAAgB;IAChB,oBAAoB;IACpB,YAAY;IACZ,YAAY;IACZ,gBAAgB;IAChB,SAAS;IACT,sDAAsD;IACtD,kCAAkC;IAClC,yBAAyB;IACzB,kCAAkC;IAClC,6BAA6B;IAC7B,QAAQ;IACR,WAAW;IACX,6DAA6D;IAC7D,uBAAuB;CACxB,CAAC"}
|
|
@@ -10,13 +10,6 @@ message FolderObject {
|
|
|
10
10
|
google.protobuf.Struct metadata = 2; // Campo metadata como objeto dinámico
|
|
11
11
|
}
|
|
12
12
|
|
|
13
|
-
message FolderData {
|
|
14
|
-
oneof folder {
|
|
15
|
-
string name = 1; // Si solo es un nombre simple
|
|
16
|
-
FolderObject folderObject = 2; // Si es un objeto complejo con metadata
|
|
17
|
-
}
|
|
18
|
-
}
|
|
19
|
-
|
|
20
13
|
message OwnerEntity {
|
|
21
14
|
string ownerId = 1;
|
|
22
15
|
string entityType = 2;
|
|
@@ -33,7 +26,7 @@ message CreateFolderRequest {
|
|
|
33
26
|
|
|
34
27
|
// Create Bulk Folder
|
|
35
28
|
message CreateFolderBulkRequest {
|
|
36
|
-
repeated
|
|
29
|
+
repeated FolderObject folders = 1;
|
|
37
30
|
string parentId = 2; // Opcional, puede ser nulo si es una carpeta raíz
|
|
38
31
|
repeated OwnerEntity ownersData = 3;
|
|
39
32
|
}
|