@exclusive-website/types 2.3.3 → 2.3.4
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/types.d.ts +7 -0
- package/package.json +1 -1
- package/src/types.ts +8 -0
package/dist/types.d.ts
CHANGED
|
@@ -262,6 +262,13 @@ export interface TransactionReadDto {
|
|
|
262
262
|
paidAt: Date;
|
|
263
263
|
items: TransactionReadItemDto[];
|
|
264
264
|
}
|
|
265
|
+
export interface TransactionSummaryReadDto {
|
|
266
|
+
qrCode: MediaDto;
|
|
267
|
+
iban: string;
|
|
268
|
+
totalAmount: number;
|
|
269
|
+
currency: Currency;
|
|
270
|
+
items: TransactionReadItemDto[];
|
|
271
|
+
}
|
|
265
272
|
export interface TransactionReadItemDto {
|
|
266
273
|
category: PricingCategory;
|
|
267
274
|
durationDays: number;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -311,6 +311,14 @@ export interface TransactionReadDto {
|
|
|
311
311
|
items: TransactionReadItemDto[]
|
|
312
312
|
}
|
|
313
313
|
|
|
314
|
+
export interface TransactionSummaryReadDto{
|
|
315
|
+
qrCode: MediaDto;
|
|
316
|
+
iban: string;
|
|
317
|
+
totalAmount: number;
|
|
318
|
+
currency: Currency;
|
|
319
|
+
items: TransactionReadItemDto[];
|
|
320
|
+
}
|
|
321
|
+
|
|
314
322
|
export interface TransactionReadItemDto {
|
|
315
323
|
category: PricingCategory
|
|
316
324
|
durationDays: number;
|