@exclusive-website/types 2.5.2 → 2.5.3

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
@@ -280,7 +280,7 @@ export interface ModelAdminDetailReadDto {
280
280
  created: Date;
281
281
  approvedState: StateOfListing;
282
282
  paymentState: TransactionStatus;
283
- activeTransaction: TransactionReadDto[];
283
+ activeTransaction: TransactionReadDto;
284
284
  }
285
285
  export interface TransactionReadDto {
286
286
  status: TransactionStatus;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
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
@@ -334,7 +334,7 @@ export interface ModelAdminDetailReadDto {
334
334
  created: Date;
335
335
  approvedState: StateOfListing;
336
336
  paymentState: TransactionStatus;
337
- activeTransaction: TransactionReadDto[];
337
+ activeTransaction: TransactionReadDto;
338
338
  }
339
339
 
340
340
  export interface TransactionReadDto {