wsp-contracts 1.0.41 → 1.0.42
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 -0
- package/package.json +1 -1
package/dist/purchase/DTOs.d.ts
CHANGED
|
@@ -127,6 +127,7 @@ export interface RefundDTO {
|
|
|
127
127
|
sellerName: string;
|
|
128
128
|
buyerName: string;
|
|
129
129
|
purchaseCode: string;
|
|
130
|
+
origin: string;
|
|
130
131
|
status: string;
|
|
131
132
|
items?: LineItemDTO[] | undefined;
|
|
132
133
|
refundedItems: PurchaseRefundItemDTO[];
|
|
@@ -134,6 +135,7 @@ export interface RefundDTO {
|
|
|
134
135
|
amount: number;
|
|
135
136
|
finishedDate?: string | undefined;
|
|
136
137
|
createdAt: string;
|
|
138
|
+
[key: string]: unknown;
|
|
137
139
|
}
|
|
138
140
|
export interface BuffetRefundDTO extends RefundDTO {
|
|
139
141
|
items: LineItemDTO[];
|