invoice-system-common 1.0.16 → 1.0.18
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.
|
@@ -3,7 +3,6 @@ import { IEntityCreateDto, IEntityFilterData, IEntityUpdateDto } from "../helper
|
|
|
3
3
|
import { IBillingLineItemEntity } from "./billing-line-item.entity.interface";
|
|
4
4
|
export type IBillingLineItemCreateDtoExclude = 'clientId' | 'status';
|
|
5
5
|
export interface IBillingLineItemCreateDto extends Omit<IEntityCreateDto<IBillingLineItemEntity>, IBillingLineItemCreateDtoExclude> {
|
|
6
|
-
clientId: number;
|
|
7
6
|
}
|
|
8
7
|
export interface IBillingLineItemUpdateDto extends IEntityUpdateDto<IBillingLineItemEntity> {
|
|
9
8
|
id: number;
|
|
@@ -10,7 +10,7 @@ export interface IBillingCreateDtoV2 extends IBillingCreateDto {
|
|
|
10
10
|
}
|
|
11
11
|
export interface IBillingUpdateDto extends IEntityUpdateDto<IBillingEntity> {
|
|
12
12
|
action: BillingActionEnum;
|
|
13
|
-
lineItems
|
|
13
|
+
lineItems?: IBillingLineItemUpdateDto[];
|
|
14
14
|
}
|
|
15
15
|
export interface IBillingEntityFilterDto extends IEntityFilterData<IBillingEntity> {
|
|
16
16
|
}
|