law-common 1.2.49 → 1.2.51

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.
@@ -13,6 +13,7 @@ export interface IReimbursementEntity extends IAuditColumnEntity {
13
13
  split: boolean;
14
14
  expenseDetailsJson: string;
15
15
  projectIdsCsv: string;
16
+ userIdsCsv: string;
16
17
  description: string;
17
18
  attachmentUrlsCsv?: string;
18
19
  status: ReimbursementStatusEnum;
@@ -24,7 +25,7 @@ export interface IReimbursementEntity extends IAuditColumnEntity {
24
25
  }
25
26
  export interface IReimbursementExpenseDetails {
26
27
  members: number[];
27
- details: IReimbursementExpenseAllocation[];
28
+ details?: IReimbursementExpenseAllocation[];
28
29
  }
29
30
  export interface IReimbursementExpenseAllocation {
30
31
  userIds: number[];
@@ -35,6 +36,6 @@ export interface IReimbursementCreateDtoExtra {
35
36
  expenseDetails: IReimbursementExpenseDetails;
36
37
  attachmentDocumentUrls?: string[];
37
38
  }
38
- export type IReimbursementExclude = "expenseDetailsJson" | "projectIdsCsv" | "attachmentUrlsCsv" | "amountReimbursed" | "processedBy" | "processedDate" | "approvedBy";
39
+ export type IReimbursementExclude = "expenseDetailsJson" | "projectIdsCsv" | "attachmentUrlsCsv" | "amountReimbursed" | "processedBy" | "processedDate" | "approvedBy" | "userIdsCsv";
39
40
  export interface IReimbursementEntityCreateDto extends Omit<IEntityCreateDto<IReimbursementEntity>, IReimbursementExclude>, IReimbursementCreateDtoExtra {
40
41
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "law-common",
3
- "version": "1.2.49",
3
+ "version": "1.2.51",
4
4
  "description": "",
5
5
  "main": "dist/index.js",
6
6
  "files": [