@exclusive-website/types 2.6.6 → 2.6.7

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
@@ -233,7 +233,7 @@ export interface PriceReadDto {
233
233
  export interface ListingAdminFilterQueryReadDto {
234
234
  query: ListingQueryReadDto;
235
235
  stateOfListing: StateOfListing;
236
- transactionState: TransactionStatus;
236
+ transactionState?: TransactionStatus;
237
237
  }
238
238
  export interface ModelAdminListReadDto {
239
239
  models: ModelAdminShortReadDto[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.6.6",
3
+ "version": "2.6.7",
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
@@ -286,7 +286,7 @@ export interface PriceReadDto {
286
286
  export interface ListingAdminFilterQueryReadDto {
287
287
  query: ListingQueryReadDto;
288
288
  stateOfListing: StateOfListing;
289
- transactionState: TransactionStatus;
289
+ transactionState?: TransactionStatus;
290
290
  }
291
291
 
292
292
  export interface ModelAdminListReadDto {