@exclusive-website/types 2.7.3 → 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
@@ -54,6 +54,7 @@ export interface DaySchedule {
54
54
  export interface ListingQueryReadDto {
55
55
  page: number;
56
56
  perPage: number;
57
+ text?: string;
57
58
  }
58
59
  export interface ListingFilterQueryReadDto {
59
60
  query: ListingQueryReadDto;
@@ -233,7 +234,6 @@ export interface PriceReadDto {
233
234
  }
234
235
  export interface ListingAdminFilterQueryReadDto {
235
236
  query: ListingQueryReadDto;
236
- text?: string;
237
237
  stateOfListing: StateOfListing;
238
238
  transactionState?: TransactionStatus;
239
239
  }
@@ -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.3",
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
@@ -82,6 +82,7 @@ export interface DaySchedule {
82
82
  export interface ListingQueryReadDto {
83
83
  page: number;
84
84
  perPage: number;
85
+ text?: string;
85
86
  }
86
87
 
87
88
  export interface ListingFilterQueryReadDto {
@@ -286,7 +287,6 @@ export interface PriceReadDto {
286
287
 
287
288
  export interface ListingAdminFilterQueryReadDto {
288
289
  query: ListingQueryReadDto;
289
- text?: string;
290
290
  stateOfListing: StateOfListing;
291
291
  transactionState?: TransactionStatus;
292
292
  }
@@ -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;