@exclusive-website/types 2.7.5 → 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
@@ -121,6 +121,7 @@ export interface ModelShortPreviewClientReadDto {
121
121
  toppedSubscription: SubscriptionReadDto;
122
122
  toppedHomeSubscription: SubscriptionReadDto;
123
123
  publishedSubscription: SubscriptionReadDto;
124
+ transactionId?: number;
124
125
  }
125
126
  export interface SubscriptionReadDto {
126
127
  isActive: boolean;
@@ -319,12 +320,10 @@ export interface TransactionSummaryReadDto {
319
320
  items: TransactionReadItemDto[];
320
321
  }
321
322
  export interface PaymentConfigurationReadDto {
322
- qrCode: MediaDto;
323
323
  iban: string;
324
324
  currency: Currency;
325
325
  }
326
326
  export interface PaymentConfigurationWriteDto {
327
- qrCode: MediaDto;
328
327
  iban: string;
329
328
  currency: Currency;
330
329
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.7.5",
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
@@ -155,6 +155,7 @@ export interface ModelShortPreviewClientReadDto {
155
155
  toppedSubscription: SubscriptionReadDto;
156
156
  toppedHomeSubscription: SubscriptionReadDto;
157
157
  publishedSubscription: SubscriptionReadDto;
158
+ transactionId? : number;
158
159
  }
159
160
 
160
161
  export interface SubscriptionReadDto {
@@ -379,13 +380,11 @@ export interface TransactionSummaryReadDto{
379
380
  }
380
381
 
381
382
  export interface PaymentConfigurationReadDto {
382
- qrCode: MediaDto;
383
383
  iban: string;
384
384
  currency: Currency;
385
385
  }
386
386
 
387
387
  export interface PaymentConfigurationWriteDto {
388
- qrCode: MediaDto;
389
388
  iban: string;
390
389
  currency: Currency;
391
390
  }