law-common 2.8.1-beta.12 → 2.8.1-beta.14
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.
|
@@ -7,6 +7,7 @@ var ReimbursementBillingTypeEnum;
|
|
|
7
7
|
(function (ReimbursementBillingTypeEnum) {
|
|
8
8
|
ReimbursementBillingTypeEnum["BILLABLE"] = "BILLABLE";
|
|
9
9
|
ReimbursementBillingTypeEnum["NON_BILLABLE"] = "NON_BILLABLE";
|
|
10
|
+
ReimbursementBillingTypeEnum["HYBRID"] = "HYBRID";
|
|
10
11
|
})(ReimbursementBillingTypeEnum || (exports.ReimbursementBillingTypeEnum = ReimbursementBillingTypeEnum = {}));
|
|
11
12
|
var ReimbursementBillingPresentEnum;
|
|
12
13
|
(function (ReimbursementBillingPresentEnum) {
|
|
@@ -38,7 +38,7 @@ export interface IReimbursementCreateDtoExtra {
|
|
|
38
38
|
expenseDetails: IReimbursementExpenseDetails;
|
|
39
39
|
attachmentDocumentUrls?: string[];
|
|
40
40
|
}
|
|
41
|
-
export type IReimbursementExclude = "expenseDetailsJson" | "projectIdsCsv" | "attachmentUrlsCsv" | "amountReimbursed" | "processedBy" | "processedDate" | "approvedBy" | "userIdsCsv";
|
|
41
|
+
export type IReimbursementExclude = "billingType" | "expenseDetailsJson" | "projectIdsCsv" | "attachmentUrlsCsv" | "amountReimbursed" | "processedBy" | "processedDate" | "approvedBy" | "userIdsCsv";
|
|
42
42
|
export interface IReimbursementEntityCreateDto extends Omit<IEntityCreateDto<IReimbursementEntity>, IReimbursementExclude>, IReimbursementCreateDtoExtra {
|
|
43
43
|
}
|
|
44
44
|
export interface IReimbursementUpdateDto extends IEntityUpdateDto<IReimbursementEntity> {
|