@managemint-solutions/entities 1.1.43 → 1.2.0

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.
@@ -17,5 +17,7 @@ export declare enum AuditTrailEntityType {
17
17
  CLIENTS = "clients",
18
18
  PROJECTS = "projects",
19
19
  TASKS = "tasks",
20
- TIMESHEETS = "timesheets"
20
+ TIMESHEETS = "timesheets",
21
+ BILLING_TRANSACTIONS = "billing_transactions",
22
+ NOTIFICATION = "notifications"
21
23
  }
@@ -23,4 +23,6 @@ var AuditTrailEntityType;
23
23
  AuditTrailEntityType["PROJECTS"] = "projects";
24
24
  AuditTrailEntityType["TASKS"] = "tasks";
25
25
  AuditTrailEntityType["TIMESHEETS"] = "timesheets";
26
+ AuditTrailEntityType["BILLING_TRANSACTIONS"] = "billing_transactions";
27
+ AuditTrailEntityType["NOTIFICATION"] = "notifications";
26
28
  })(AuditTrailEntityType || (exports.AuditTrailEntityType = AuditTrailEntityType = {}));
@@ -7,7 +7,7 @@
7
7
  * are checked against the active pricebook.
8
8
  */
9
9
  export declare const MODULE_KEYS: {
10
- readonly CRM: 'CRM';
10
+ readonly CRM: "CRM";
11
11
  };
12
12
  /**
13
13
  * A row of the billing_modules catalog: one row per sellable module, no pricing.
@@ -4,3 +4,6 @@ export type GetNotificationsDto = {
4
4
  page: number;
5
5
  page_size: number;
6
6
  };
7
+ export type NotificationIdDto = {
8
+ notificationId: string;
9
+ };
@@ -0,0 +1 @@
1
+ export type { CrudPermission, PermissionsEntity } from '..';
@@ -1 +1,2 @@
1
1
  "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@managemint-solutions/entities",
3
- "version": "1.1.43",
3
+ "version": "1.2.0",
4
4
  "description": "Entity types used by both the api and portal",
5
5
  "homepage": "https://github.com/ManageMint-Solutions/managemint-solutions-entities#readme",
6
6
  "bugs": {
@@ -28,6 +28,7 @@
28
28
  "dist"
29
29
  ],
30
30
  "devDependencies": {
31
- "@types/node": "^25.6.0"
31
+ "@types/node": "^25.6.0",
32
+ "typescript": "^5.7.3"
32
33
  }
33
34
  }