@exclusive-website/types 2.4.8 → 2.5.0

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
@@ -210,7 +210,6 @@ export interface PriceReadDto {
210
210
  export interface ListingAdminFilterQueryReadDto {
211
211
  query: ListingQueryReadDto;
212
212
  stateOfListing: StateOfListing;
213
- approvedState: StateOfListing;
214
213
  transactionState: TransactionStatus;
215
214
  }
216
215
  export interface ModelAdminListReadDto {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.4.8",
3
+ "version": "2.5.0",
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
@@ -259,7 +259,6 @@ export interface PriceReadDto {
259
259
  export interface ListingAdminFilterQueryReadDto {
260
260
  query: ListingQueryReadDto;
261
261
  stateOfListing: StateOfListing;
262
- approvedState: StateOfListing;
263
262
  transactionState: TransactionStatus;
264
263
  }
265
264