@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 +1 -1
- package/package.json +1 -1
- package/src/types.ts +1 -1
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
|
|
236
|
+
transactionState?: TransactionStatus;
|
|
237
237
|
}
|
|
238
238
|
export interface ModelAdminListReadDto {
|
|
239
239
|
models: ModelAdminShortReadDto[];
|
package/package.json
CHANGED
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
|
|
289
|
+
transactionState?: TransactionStatus;
|
|
290
290
|
}
|
|
291
291
|
|
|
292
292
|
export interface ModelAdminListReadDto {
|