@exclusive-website/types 2.7.4 → 2.7.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
@@ -293,6 +293,7 @@ export interface ModelAdminDetailReadDto {
293
293
  historyTransactions: HistoryTransactionReadDto[];
294
294
  }
295
295
  export interface ActiveTransactionReadDto {
296
+ id: number;
296
297
  status: TransactionStatus;
297
298
  applied: ApplyStatus;
298
299
  totalAmount: number;
@@ -301,6 +302,7 @@ export interface ActiveTransactionReadDto {
301
302
  items: TransactionReadItemDto[];
302
303
  }
303
304
  export interface HistoryTransactionReadDto {
305
+ id: number;
304
306
  status: TransactionStatus;
305
307
  applied: ApplyStatus;
306
308
  totalAmount: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.7.4",
3
+ "version": "2.7.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
@@ -350,6 +350,7 @@ export interface ModelAdminDetailReadDto {
350
350
  }
351
351
 
352
352
  export interface ActiveTransactionReadDto {
353
+ id: number;
353
354
  status: TransactionStatus;
354
355
  applied: ApplyStatus;
355
356
  totalAmount: number;
@@ -359,6 +360,7 @@ export interface ActiveTransactionReadDto {
359
360
  }
360
361
 
361
362
  export interface HistoryTransactionReadDto {
363
+ id: number;
362
364
  status: TransactionStatus;
363
365
  applied: ApplyStatus;
364
366
  totalAmount: number;