@exclusive-website/types 2.6.2 → 2.6.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 +2 -2
- package/package.json +1 -1
- package/src/types.ts +2 -2
package/dist/types.d.ts
CHANGED
|
@@ -313,12 +313,12 @@ export interface TransactionSummaryReadDto {
|
|
|
313
313
|
currency: Currency;
|
|
314
314
|
items: TransactionReadItemDto[];
|
|
315
315
|
}
|
|
316
|
-
export interface
|
|
316
|
+
export interface PaymentConfigurationReadDto {
|
|
317
317
|
qrCode: MediaDto;
|
|
318
318
|
iban: string;
|
|
319
319
|
currency: Currency;
|
|
320
320
|
}
|
|
321
|
-
export interface
|
|
321
|
+
export interface PaymentConfigurationWriteDto {
|
|
322
322
|
qrCode: MediaDto;
|
|
323
323
|
iban: string;
|
|
324
324
|
currency: Currency;
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -373,13 +373,13 @@ export interface TransactionSummaryReadDto{
|
|
|
373
373
|
items: TransactionReadItemDto[];
|
|
374
374
|
}
|
|
375
375
|
|
|
376
|
-
export interface
|
|
376
|
+
export interface PaymentConfigurationReadDto {
|
|
377
377
|
qrCode: MediaDto;
|
|
378
378
|
iban: string;
|
|
379
379
|
currency: Currency;
|
|
380
380
|
}
|
|
381
381
|
|
|
382
|
-
export interface
|
|
382
|
+
export interface PaymentConfigurationWriteDto {
|
|
383
383
|
qrCode: MediaDto;
|
|
384
384
|
iban: string;
|
|
385
385
|
currency: Currency;
|