@exclusive-website/types 2.8.4 → 2.8.5

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
@@ -314,6 +314,7 @@ export interface HistoryTransactionReadDto {
314
314
  }
315
315
  export interface TransactionSummaryReadDto {
316
316
  iban: string;
317
+ variableSymbol: string;
317
318
  totalAmount: number;
318
319
  currency: Currency;
319
320
  items: TransactionReadItemDto[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.8.4",
3
+ "version": "2.8.5",
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
@@ -373,6 +373,7 @@ export interface HistoryTransactionReadDto {
373
373
 
374
374
  export interface TransactionSummaryReadDto{
375
375
  iban: string;
376
+ variableSymbol: string;
376
377
  totalAmount: number;
377
378
  currency: Currency;
378
379
  items: TransactionReadItemDto[];