easywork-common-lib 1.0.337 → 1.0.339
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.
|
@@ -1,9 +1,16 @@
|
|
|
1
1
|
export declare const LEAD_STAGE_INITIAL = "a233b765-d97b-43b8-8b6a-46727d97c844";
|
|
2
2
|
export declare const LEAD_STAGE_CANCELED = "6a6cef5c-2530-407c-8d66-9030f5334551";
|
|
3
|
+
export declare const DRIVE_LEADS_DOCUMENTS_PARTENT_FOLDER = "a68f36f9-7a47-43ea-99ce-ec40d5e61d87";
|
|
3
4
|
export declare const DRIVE_CONTACT_DOCUMENTS_PARTENT_FOLDER = "29168645-1bc0-40a1-9879-69fbbc62c04e";
|
|
4
5
|
export declare const DRIVE_TEMP_FOLDER = "6cc775ef-3616-4ffe-bfc9-755c453a4775";
|
|
5
6
|
export declare const DRIVE_CONTACT_PROFILES_IMAGES_PARTENT_FOLDER = "b88bdb51-806b-4dbf-a9f9-bcfba52be9fe";
|
|
6
7
|
export declare const APP_MXN_CURRENCY = "7a7f40f1-45e2-428f-bea9-a731866d6886";
|
|
7
8
|
export declare const APP_USD_CURRENCY = "c5324961-4eb9-44f9-8ee0-16a087cecaac";
|
|
8
9
|
export declare const APP_UDIS_CURRENCY = "e0262532-8377-4bda-bbf7-34f49550be66";
|
|
10
|
+
export declare const LEADS_DOCUMENTS_FOLDERS: string[];
|
|
11
|
+
export declare const CLIENTS_DOCUMENTS_FOLDERS: {
|
|
12
|
+
VIDA: string[];
|
|
13
|
+
GMM: string[];
|
|
14
|
+
AUTOS: string[];
|
|
15
|
+
};
|
|
9
16
|
export declare const CONTACTS_DOCUMENTS_FOLDERS: string[];
|
|
@@ -1,14 +1,56 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
-
exports.CONTACTS_DOCUMENTS_FOLDERS = exports.APP_UDIS_CURRENCY = exports.APP_USD_CURRENCY = exports.APP_MXN_CURRENCY = exports.DRIVE_CONTACT_PROFILES_IMAGES_PARTENT_FOLDER = exports.DRIVE_TEMP_FOLDER = exports.DRIVE_CONTACT_DOCUMENTS_PARTENT_FOLDER = exports.LEAD_STAGE_CANCELED = exports.LEAD_STAGE_INITIAL = void 0;
|
|
3
|
+
exports.CONTACTS_DOCUMENTS_FOLDERS = exports.CLIENTS_DOCUMENTS_FOLDERS = exports.LEADS_DOCUMENTS_FOLDERS = exports.APP_UDIS_CURRENCY = exports.APP_USD_CURRENCY = exports.APP_MXN_CURRENCY = exports.DRIVE_CONTACT_PROFILES_IMAGES_PARTENT_FOLDER = exports.DRIVE_TEMP_FOLDER = exports.DRIVE_CONTACT_DOCUMENTS_PARTENT_FOLDER = exports.DRIVE_LEADS_DOCUMENTS_PARTENT_FOLDER = exports.LEAD_STAGE_CANCELED = exports.LEAD_STAGE_INITIAL = void 0;
|
|
4
4
|
exports.LEAD_STAGE_INITIAL = "a233b765-d97b-43b8-8b6a-46727d97c844";
|
|
5
5
|
exports.LEAD_STAGE_CANCELED = "6a6cef5c-2530-407c-8d66-9030f5334551";
|
|
6
|
+
exports.DRIVE_LEADS_DOCUMENTS_PARTENT_FOLDER = "a68f36f9-7a47-43ea-99ce-ec40d5e61d87";
|
|
6
7
|
exports.DRIVE_CONTACT_DOCUMENTS_PARTENT_FOLDER = "29168645-1bc0-40a1-9879-69fbbc62c04e";
|
|
7
8
|
exports.DRIVE_TEMP_FOLDER = "6cc775ef-3616-4ffe-bfc9-755c453a4775";
|
|
8
9
|
exports.DRIVE_CONTACT_PROFILES_IMAGES_PARTENT_FOLDER = "b88bdb51-806b-4dbf-a9f9-bcfba52be9fe";
|
|
9
10
|
exports.APP_MXN_CURRENCY = "7a7f40f1-45e2-428f-bea9-a731866d6886";
|
|
10
11
|
exports.APP_USD_CURRENCY = "c5324961-4eb9-44f9-8ee0-16a087cecaac";
|
|
11
12
|
exports.APP_UDIS_CURRENCY = "e0262532-8377-4bda-bbf7-34f49550be66";
|
|
13
|
+
exports.LEADS_DOCUMENTS_FOLDERS = [
|
|
14
|
+
"Documentos del cliente: RFC, IFE, Comprobantes de domicilio",
|
|
15
|
+
"Cotizaciones",
|
|
16
|
+
"Propuesta comercial",
|
|
17
|
+
"Solicitudes",
|
|
18
|
+
"Póliza",
|
|
19
|
+
];
|
|
20
|
+
exports.CLIENTS_DOCUMENTS_FOLDERS = {
|
|
21
|
+
VIDA: [
|
|
22
|
+
"Pagos Recibos",
|
|
23
|
+
"Renovaciones",
|
|
24
|
+
"Siniestros",
|
|
25
|
+
"Reembolsos",
|
|
26
|
+
"Versiones",
|
|
27
|
+
"Comisiones",
|
|
28
|
+
"Facturas",
|
|
29
|
+
"Rescate de Fondos",
|
|
30
|
+
"Otros Documentos"
|
|
31
|
+
],
|
|
32
|
+
GMM: [
|
|
33
|
+
"Pagos Recibos",
|
|
34
|
+
"Renovaciones",
|
|
35
|
+
"Siniestros",
|
|
36
|
+
"Reembolsos",
|
|
37
|
+
"Versiones",
|
|
38
|
+
"Comisiones",
|
|
39
|
+
"Formatos",
|
|
40
|
+
"Programaciones",
|
|
41
|
+
"Facturas",
|
|
42
|
+
"Otros Documentos"
|
|
43
|
+
],
|
|
44
|
+
AUTOS: [
|
|
45
|
+
"Pagos Recibos",
|
|
46
|
+
"Renovaciones",
|
|
47
|
+
"Siniestros",
|
|
48
|
+
"Versiones",
|
|
49
|
+
"Comisiones",
|
|
50
|
+
"Otros formatos",
|
|
51
|
+
"Facturas",
|
|
52
|
+
]
|
|
53
|
+
};
|
|
12
54
|
exports.CONTACTS_DOCUMENTS_FOLDERS = [
|
|
13
55
|
"Cotización Generada",
|
|
14
56
|
"Cotización Aprobada por el contratante",
|
|
@@ -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,sCAAsC,GAAG,sCAAsC,CAAC;AAChF,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;AAC3D,QAAA,4CAA4C,GAAG,sCAAsC,CAAC;AAEtF,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;
|
|
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,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,gBAAgB,GAAG,sCAAsC,CAAC;AAC1D,QAAA,iBAAiB,GAAG,sCAAsC,CAAC;AAG3D,QAAA,uBAAuB,GAAG;IACrC,6DAA6D;IAC7D,cAAc;IACd,qBAAqB;IACrB,aAAa;IACb,QAAQ;CACT,CAAA;AAEY,QAAA,yBAAyB,GAAG;IACvC,IAAI,EAAE;QACJ,eAAe;QACf,cAAc;QACd,YAAY;QACZ,YAAY;QACZ,WAAW;QACX,YAAY;QACZ,UAAU;QACV,mBAAmB;QACnB,kBAAkB;KACnB;IACD,GAAG,EAAE;QACH,eAAe;QACf,cAAc;QACd,YAAY;QACZ,YAAY;QACZ,WAAW;QACX,YAAY;QACZ,UAAU;QACV,gBAAgB;QAChB,UAAU;QACV,kBAAkB;KACnB;IACD,KAAK,EAAE;QACL,eAAe;QACf,cAAc;QACd,YAAY;QACZ,WAAW;QACX,YAAY;QACZ,gBAAgB;QAChB,UAAU;KACX;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"}
|