@exclusive-website/types 2.6.5 → 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 +2 -1
- package/package.json +1 -1
- package/src/types.ts +2 -1
package/dist/types.d.ts
CHANGED
|
@@ -113,6 +113,7 @@ export interface ModelShortPreviewClientReadDto {
|
|
|
113
113
|
nickname: string;
|
|
114
114
|
location: LocationDto;
|
|
115
115
|
transactionState: TransactionStatus;
|
|
116
|
+
approvedState: StateOfListing;
|
|
116
117
|
featuredImage: MediaDto;
|
|
117
118
|
created: Date;
|
|
118
119
|
viewCount: number;
|
|
@@ -232,7 +233,7 @@ export interface PriceReadDto {
|
|
|
232
233
|
export interface ListingAdminFilterQueryReadDto {
|
|
233
234
|
query: ListingQueryReadDto;
|
|
234
235
|
stateOfListing: StateOfListing;
|
|
235
|
-
transactionState
|
|
236
|
+
transactionState?: TransactionStatus;
|
|
236
237
|
}
|
|
237
238
|
export interface ModelAdminListReadDto {
|
|
238
239
|
models: ModelAdminShortReadDto[];
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -147,6 +147,7 @@ export interface ModelShortPreviewClientReadDto {
|
|
|
147
147
|
nickname: string;
|
|
148
148
|
location: LocationDto;
|
|
149
149
|
transactionState: TransactionStatus;
|
|
150
|
+
approvedState: StateOfListing;
|
|
150
151
|
featuredImage: MediaDto;
|
|
151
152
|
created: Date;
|
|
152
153
|
viewCount: number;
|
|
@@ -285,7 +286,7 @@ export interface PriceReadDto {
|
|
|
285
286
|
export interface ListingAdminFilterQueryReadDto {
|
|
286
287
|
query: ListingQueryReadDto;
|
|
287
288
|
stateOfListing: StateOfListing;
|
|
288
|
-
transactionState
|
|
289
|
+
transactionState?: TransactionStatus;
|
|
289
290
|
}
|
|
290
291
|
|
|
291
292
|
export interface ModelAdminListReadDto {
|