@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.
Files changed (2) hide show
  1. package/dist/types.d.ts +14 -0
  2. 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
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.9.5",
3
+ "version": "2.9.6",
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",