wsp-contracts 1.0.30 → 1.0.32
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/purchase/DTOs.d.ts +2 -1
- package/package.json +1 -1
package/dist/purchase/DTOs.d.ts
CHANGED
|
@@ -99,6 +99,7 @@ export interface PurchaseRefundItemDTO {
|
|
|
99
99
|
uuid: string;
|
|
100
100
|
wasted: boolean;
|
|
101
101
|
qty: number;
|
|
102
|
+
amount?: number | undefined;
|
|
102
103
|
}
|
|
103
104
|
export interface PurchaseRefundInfoDTO {
|
|
104
105
|
purchaseUuid: string;
|
|
@@ -127,7 +128,7 @@ export interface RefundDTO {
|
|
|
127
128
|
status: string;
|
|
128
129
|
refundedItems: PurchaseRefundItemDTO[];
|
|
129
130
|
amount: number;
|
|
130
|
-
|
|
131
|
+
finishedDate?: string | undefined;
|
|
131
132
|
createdAt: string;
|
|
132
133
|
}
|
|
133
134
|
export interface BuffetRefundDTO extends RefundDTO {
|