@exclusive-website/types 2.6.8 → 2.6.9

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
@@ -232,7 +232,7 @@ export interface PriceReadDto {
232
232
  }
233
233
  export interface ListingAdminFilterQueryReadDto {
234
234
  query: ListingQueryReadDto;
235
- text: string;
235
+ text?: string;
236
236
  stateOfListing: StateOfListing;
237
237
  transactionState?: TransactionStatus;
238
238
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.6.8",
3
+ "version": "2.6.9",
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
@@ -285,7 +285,7 @@ export interface PriceReadDto {
285
285
 
286
286
  export interface ListingAdminFilterQueryReadDto {
287
287
  query: ListingQueryReadDto;
288
- text: string;
288
+ text?: string;
289
289
  stateOfListing: StateOfListing;
290
290
  transactionState?: TransactionStatus;
291
291
  }