@exclusive-website/types 2.9.5 → 2.9.6
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 +14 -0
- package/package.json +1 -1
package/dist/types.d.ts
CHANGED
|
@@ -361,3 +361,17 @@ export declare type AdminListingSubscriptionWriteDto = {
|
|
|
361
361
|
topHomeActiveUntil: Date;
|
|
362
362
|
topGlobalActiveUntil: Date;
|
|
363
363
|
};
|
|
364
|
+
export declare type ListingVisibilityUpdateDto = {
|
|
365
|
+
id: number;
|
|
366
|
+
visibility: boolean;
|
|
367
|
+
};
|
|
368
|
+
export declare type ListingPublishShortDto = {
|
|
369
|
+
id: number;
|
|
370
|
+
updatedAt: Date;
|
|
371
|
+
};
|
|
372
|
+
export declare type ImagesAdminWriteDto = {
|
|
373
|
+
listingId: number;
|
|
374
|
+
featuredImage: MediaDto;
|
|
375
|
+
photos: MediaDto[];
|
|
376
|
+
videos: MediaDto[];
|
|
377
|
+
};
|