@exclusive-website/types 2.5.7 → 2.5.9

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
@@ -281,6 +281,7 @@ export interface ModelAdminDetailReadDto {
281
281
  approvedState: StateOfListing;
282
282
  transactionStatus: TransactionStatus;
283
283
  activeTransaction: ActiveTransactionReadDto;
284
+ historyTransactions: HistoryTransactionReadDto[];
284
285
  }
285
286
  export interface ActiveTransactionReadDto {
286
287
  status: TransactionStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.5.7",
3
+ "version": "2.5.9",
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
@@ -336,6 +336,7 @@ export interface ModelAdminDetailReadDto {
336
336
  approvedState: StateOfListing;
337
337
  transactionStatus: TransactionStatus;
338
338
  activeTransaction: ActiveTransactionReadDto;
339
+ historyTransactions: HistoryTransactionReadDto[];
339
340
  }
340
341
 
341
342
  export interface ActiveTransactionReadDto {