easywork-common-lib 1.0.215 → 1.0.217
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/notification.enum.d.ts +2 -0
- package/dist/common/enums/notification.enum.js +2 -0
- package/dist/common/enums/notification.enum.js.map +1 -1
- package/dist/entities/index.d.ts +1 -3
- package/dist/entities/index.js +1 -3
- package/dist/entities/index.js.map +1 -1
- package/package.json +1 -1
- package/tsconfig.tsbuildinfo +1 -1
|
@@ -13,6 +13,7 @@ export declare enum NotificationSubcategory {
|
|
|
13
13
|
TASK_APPROVED = "task-approved",
|
|
14
14
|
TASK_REJECTED = "task-rejected",
|
|
15
15
|
TASK_UPDATED = "task-updated",
|
|
16
|
+
CONTACT_NEW_COMMENT = "contact-new-comment",
|
|
16
17
|
OTP = "otp",
|
|
17
18
|
DEFAULT = "default"
|
|
18
19
|
}
|
|
@@ -20,6 +21,7 @@ export declare enum NotificationCategory {
|
|
|
20
21
|
TASK = "task",
|
|
21
22
|
OTP = "otp",
|
|
22
23
|
CRM = "crm",
|
|
24
|
+
CONTACT = "contact",
|
|
23
25
|
SALES = "sales",
|
|
24
26
|
DRIVE = "drive",
|
|
25
27
|
EMAIL = "email",
|
|
@@ -18,6 +18,7 @@ var NotificationSubcategory;
|
|
|
18
18
|
NotificationSubcategory["TASK_APPROVED"] = "task-approved";
|
|
19
19
|
NotificationSubcategory["TASK_REJECTED"] = "task-rejected";
|
|
20
20
|
NotificationSubcategory["TASK_UPDATED"] = "task-updated";
|
|
21
|
+
NotificationSubcategory["CONTACT_NEW_COMMENT"] = "contact-new-comment";
|
|
21
22
|
NotificationSubcategory["OTP"] = "otp";
|
|
22
23
|
NotificationSubcategory["DEFAULT"] = "default";
|
|
23
24
|
})(NotificationSubcategory || (exports.NotificationSubcategory = NotificationSubcategory = {}));
|
|
@@ -26,6 +27,7 @@ var NotificationCategory;
|
|
|
26
27
|
NotificationCategory["TASK"] = "task";
|
|
27
28
|
NotificationCategory["OTP"] = "otp";
|
|
28
29
|
NotificationCategory["CRM"] = "crm";
|
|
30
|
+
NotificationCategory["CONTACT"] = "contact";
|
|
29
31
|
NotificationCategory["SALES"] = "sales";
|
|
30
32
|
NotificationCategory["DRIVE"] = "drive";
|
|
31
33
|
NotificationCategory["EMAIL"] = "email";
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"notification.enum.js","sourceRoot":"","sources":["../../../src/common/enums/notification.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAKX;AALD,WAAY,mBAAmB;IAC3B,sCAAe,CAAA;IACf,kCAAW,CAAA;IACX,oCAAa,CAAA;IACb,kCAAW,CAAA;AACf,CAAC,EALW,mBAAmB,mCAAnB,mBAAmB,QAK9B;AAED,IAAY,
|
|
1
|
+
{"version":3,"file":"notification.enum.js","sourceRoot":"","sources":["../../../src/common/enums/notification.enum.ts"],"names":[],"mappings":";;;AAAA,IAAY,mBAKX;AALD,WAAY,mBAAmB;IAC3B,sCAAe,CAAA;IACf,kCAAW,CAAA;IACX,oCAAa,CAAA;IACb,kCAAW,CAAA;AACf,CAAC,EALW,mBAAmB,mCAAnB,mBAAmB,QAK9B;AAED,IAAY,uBAYX;AAZD,WAAY,uBAAuB;IAC/B,gDAAqB,CAAA;IACrB,2DAAgC,CAAA;IAChC,wDAA6B,CAAA;IAC7B,0DAA+B,CAAA;IAC/B,gEAAqC,CAAA;IACrC,0DAA+B,CAAA;IAC/B,0DAA+B,CAAA;IAC/B,wDAA6B,CAAA;IAC7B,sEAA2C,CAAA;IAC3C,sCAAW,CAAA;IACX,8CAAmB,CAAA;AACvB,CAAC,EAZW,uBAAuB,uCAAvB,uBAAuB,QAYlC;AAED,IAAY,oBAYX;AAZD,WAAY,oBAAoB;IAC5B,qCAAa,CAAA;IACb,mCAAW,CAAA;IACX,mCAAW,CAAA;IACX,2CAAmB,CAAA;IACnB,uCAAe,CAAA;IACf,uCAAe,CAAA;IACf,uCAAe,CAAA;IACf,6CAAqB,CAAA;IACrB,uCAAe,CAAA;IACf,qCAAa,CAAA;IACb,2CAAmB,CAAA;AACvB,CAAC,EAZW,oBAAoB,oCAApB,oBAAoB,QAY/B"}
|
package/dist/entities/index.d.ts
CHANGED
|
@@ -5,9 +5,6 @@ export * from "./refresh-token.entity";
|
|
|
5
5
|
export * from "./profile.entity";
|
|
6
6
|
export * from "./role.entity";
|
|
7
7
|
export * from "./permission.entity";
|
|
8
|
-
export * from "./sales/contact.entity";
|
|
9
|
-
export * from "./sales/lead.entity";
|
|
10
|
-
export * from "./sales/poliza.entity";
|
|
11
8
|
export * from "./phone.entity";
|
|
12
9
|
export * from "./email.entity";
|
|
13
10
|
export * from "./app_config/app-config.entity";
|
|
@@ -17,6 +14,7 @@ export * from "./tag.entity";
|
|
|
17
14
|
export * from "./oauth.entity";
|
|
18
15
|
export * from "./tools";
|
|
19
16
|
export * from "./drive";
|
|
17
|
+
export * from "./sales";
|
|
20
18
|
export * from "./helpers";
|
|
21
19
|
export * from "./notifications";
|
|
22
20
|
export * from "./easyapp/filter-view.entity";
|
package/dist/entities/index.js
CHANGED
|
@@ -21,9 +21,6 @@ __exportStar(require("./refresh-token.entity"), exports);
|
|
|
21
21
|
__exportStar(require("./profile.entity"), exports);
|
|
22
22
|
__exportStar(require("./role.entity"), exports);
|
|
23
23
|
__exportStar(require("./permission.entity"), exports);
|
|
24
|
-
__exportStar(require("./sales/contact.entity"), exports);
|
|
25
|
-
__exportStar(require("./sales/lead.entity"), exports);
|
|
26
|
-
__exportStar(require("./sales/poliza.entity"), exports);
|
|
27
24
|
__exportStar(require("./phone.entity"), exports);
|
|
28
25
|
__exportStar(require("./email.entity"), exports);
|
|
29
26
|
__exportStar(require("./app_config/app-config.entity"), exports);
|
|
@@ -33,6 +30,7 @@ __exportStar(require("./tag.entity"), exports);
|
|
|
33
30
|
__exportStar(require("./oauth.entity"), exports);
|
|
34
31
|
__exportStar(require("./tools"), exports);
|
|
35
32
|
__exportStar(require("./drive"), exports);
|
|
33
|
+
__exportStar(require("./sales"), exports);
|
|
36
34
|
__exportStar(require("./helpers"), exports);
|
|
37
35
|
__exportStar(require("./notifications"), exports);
|
|
38
36
|
__exportStar(require("./easyapp/filter-view.entity"), exports);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,oDAAkC;AAClC,mDAAiC;AACjC,yDAAuC;AACvC,mDAAiC;AACjC,gDAA8B;AAC9B,sDAAoC;AACpC,
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/entities/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;AAAA,gDAA8B;AAC9B,oDAAkC;AAClC,mDAAiC;AACjC,yDAAuC;AACvC,mDAAiC;AACjC,gDAA8B;AAC9B,sDAAoC;AACpC,iDAA+B;AAC/B,iDAA+B;AAC/B,iEAA+C;AAC/C,uDAAqC;AACrC,uDAAqC;AACrC,+CAA6B;AAC7B,iDAA+B;AAC/B,0CAAwB;AACxB,0CAAwB;AACxB,0CAAwB;AACxB,4CAA0B;AAC1B,kDAAgC;AAChC,+DAA6C;AAC7C,8DAA4C;AAC5C,4DAA0C;AAC1C,0EAAwD"}
|