@exclusive-website/types 2.8.6 → 2.8.8

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.
@@ -0,0 +1,12 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <module type="WEB_MODULE" version="4">
3
+ <component name="NewModuleRootManager">
4
+ <content url="file://$MODULE_DIR$">
5
+ <excludeFolder url="file://$MODULE_DIR$/.tmp" />
6
+ <excludeFolder url="file://$MODULE_DIR$/temp" />
7
+ <excludeFolder url="file://$MODULE_DIR$/tmp" />
8
+ </content>
9
+ <orderEntry type="inheritedJdk" />
10
+ <orderEntry type="sourceFolder" forTests="false" />
11
+ </component>
12
+ </module>
@@ -0,0 +1,8 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="ProjectModuleManager">
4
+ <modules>
5
+ <module fileurl="file://$PROJECT_DIR$/.idea/exclusive-girls-types.iml" filepath="$PROJECT_DIR$/.idea/exclusive-girls-types.iml" />
6
+ </modules>
7
+ </component>
8
+ </project>
package/.idea/vcs.xml ADDED
@@ -0,0 +1,6 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <project version="4">
3
+ <component name="VcsDirectoryMappings">
4
+ <mapping directory="" vcs="Git" />
5
+ </component>
6
+ </project>
package/dist/types.d.ts CHANGED
@@ -111,6 +111,7 @@ export interface ModelShortPreviewReadDto {
111
111
  }
112
112
  export interface ModelShortPreviewClientReadDto {
113
113
  id: number;
114
+ variableSymbol: string;
114
115
  nickname: string;
115
116
  location: LocationDto;
116
117
  transactionState: TransactionStatus;
@@ -314,6 +315,7 @@ export interface HistoryTransactionReadDto {
314
315
  }
315
316
  export interface TransactionSummaryReadDto {
316
317
  iban: string;
318
+ variableSymbol: string;
317
319
  totalAmount: number;
318
320
  currency: Currency;
319
321
  items: TransactionReadItemDto[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.8.6",
3
+ "version": "2.8.8",
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
@@ -145,6 +145,7 @@ export interface ModelShortPreviewReadDto {
145
145
 
146
146
  export interface ModelShortPreviewClientReadDto {
147
147
  id: number;
148
+ variableSymbol: string;
148
149
  nickname: string;
149
150
  location: LocationDto;
150
151
  transactionState: TransactionStatus;
@@ -373,6 +374,7 @@ export interface HistoryTransactionReadDto {
373
374
 
374
375
  export interface TransactionSummaryReadDto{
375
376
  iban: string;
377
+ variableSymbol: string;
376
378
  totalAmount: number;
377
379
  currency: Currency;
378
380
  items: TransactionReadItemDto[];