@exclusive-website/types 2.7.6 → 2.7.7

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 CHANGED
@@ -320,12 +320,10 @@ export interface TransactionSummaryReadDto {
320
320
  items: TransactionReadItemDto[];
321
321
  }
322
322
  export interface PaymentConfigurationReadDto {
323
- qrCode: MediaDto;
324
323
  iban: string;
325
324
  currency: Currency;
326
325
  }
327
326
  export interface PaymentConfigurationWriteDto {
328
- qrCode: MediaDto;
329
327
  iban: string;
330
328
  currency: Currency;
331
329
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.7.6",
3
+ "version": "2.7.7",
4
4
  "description": "A collection of shared types (DTOs and DBEs) for the organization",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
package/src/types.ts CHANGED
@@ -380,13 +380,11 @@ export interface TransactionSummaryReadDto{
380
380
  }
381
381
 
382
382
  export interface PaymentConfigurationReadDto {
383
- qrCode: MediaDto;
384
383
  iban: string;
385
384
  currency: Currency;
386
385
  }
387
386
 
388
387
  export interface PaymentConfigurationWriteDto {
389
- qrCode: MediaDto;
390
388
  iban: string;
391
389
  currency: Currency;
392
390
  }