@exclusive-website/types 2.8.3 → 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.
@@ -175,7 +175,8 @@ export declare enum ServicesFor {
175
175
  }
176
176
  export declare enum UserRole {
177
177
  MODEL = "MODEL",
178
- CLIENT = "CLIENT"
178
+ CLIENT = "CLIENT",
179
+ ADMIN = "ADMIN"
179
180
  }
180
181
  export declare enum Practise {
181
182
  PMASSAGE = "PMASSAGE",
@@ -207,6 +207,7 @@ var UserRole;
207
207
  (function (UserRole) {
208
208
  UserRole["MODEL"] = "MODEL";
209
209
  UserRole["CLIENT"] = "CLIENT";
210
+ UserRole["ADMIN"] = "ADMIN";
210
211
  })(UserRole = exports.UserRole || (exports.UserRole = {}));
211
212
  // PRACTISE
212
213
  var Practise;
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.3",
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",
@@ -211,6 +211,7 @@ export enum ServicesFor {
211
211
  export enum UserRole {
212
212
  MODEL = "MODEL",
213
213
  CLIENT = "CLIENT",
214
+ ADMIN = "ADMIN",
214
215
  }
215
216
 
216
217
  // PRACTISE
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[];