wsp-contracts 1.0.32 → 1.0.34
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 +1 -4
- package/package.json +1 -1
package/dist/purchase/DTOs.d.ts
CHANGED
|
@@ -126,6 +126,7 @@ export interface RefundDTO {
|
|
|
126
126
|
buyerName: string;
|
|
127
127
|
purchaseCode: string;
|
|
128
128
|
status: string;
|
|
129
|
+
items?: LineItemDTO[] | undefined;
|
|
129
130
|
refundedItems: PurchaseRefundItemDTO[];
|
|
130
131
|
amount: number;
|
|
131
132
|
finishedDate?: string | undefined;
|
|
@@ -134,7 +135,3 @@ export interface RefundDTO {
|
|
|
134
135
|
export interface BuffetRefundDTO extends RefundDTO {
|
|
135
136
|
items: LineItemDTO[];
|
|
136
137
|
}
|
|
137
|
-
export interface BuffetOperationDTO {
|
|
138
|
-
type: 'PURCHASE' | 'REFUND';
|
|
139
|
-
data: PurchaseDTO | BuffetRefundDTO;
|
|
140
|
-
}
|