@exclusive-website/types 2.6.6 → 2.6.8
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 +2 -1
- package/package.json +1 -1
- package/src/types.ts +2 -1
package/dist/types.d.ts
CHANGED
|
@@ -232,8 +232,9 @@ export interface PriceReadDto {
|
|
|
232
232
|
}
|
|
233
233
|
export interface ListingAdminFilterQueryReadDto {
|
|
234
234
|
query: ListingQueryReadDto;
|
|
235
|
+
text: string;
|
|
235
236
|
stateOfListing: StateOfListing;
|
|
236
|
-
transactionState
|
|
237
|
+
transactionState?: TransactionStatus;
|
|
237
238
|
}
|
|
238
239
|
export interface ModelAdminListReadDto {
|
|
239
240
|
models: ModelAdminShortReadDto[];
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -285,8 +285,9 @@ export interface PriceReadDto {
|
|
|
285
285
|
|
|
286
286
|
export interface ListingAdminFilterQueryReadDto {
|
|
287
287
|
query: ListingQueryReadDto;
|
|
288
|
+
text: string;
|
|
288
289
|
stateOfListing: StateOfListing;
|
|
289
|
-
transactionState
|
|
290
|
+
transactionState?: TransactionStatus;
|
|
290
291
|
}
|
|
291
292
|
|
|
292
293
|
export interface ModelAdminListReadDto {
|