wsp-contracts 1.0.29 → 1.0.31
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;
|
|
@@ -125,7 +126,7 @@ export interface RefundDTO {
|
|
|
125
126
|
buyerName: string;
|
|
126
127
|
purchaseCode: string;
|
|
127
128
|
status: string;
|
|
128
|
-
refundedItems:
|
|
129
|
+
refundedItems: PurchaseRefundItemDTO[];
|
|
129
130
|
amount: number;
|
|
130
131
|
finishDate?: string | undefined;
|
|
131
132
|
createdAt: string;
|