@exclusive-website/types 2.9.1 → 2.9.2

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 CHANGED
@@ -361,5 +361,7 @@ export type ListingPublishShortDto = {
361
361
  };
362
362
  export type ImagesAdminWriteDto = {
363
363
  listingId: number;
364
- images: MediaDto[];
364
+ featuredImage: MediaDto;
365
+ photos: MediaDto[];
366
+ videos: MediaDto[];
365
367
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.9.1",
3
+ "version": "2.9.2",
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",
package/src/types.ts CHANGED
@@ -430,5 +430,7 @@ export type ListingPublishShortDto = {
430
430
 
431
431
  export type ImagesAdminWriteDto = {
432
432
  listingId: number;
433
- images: MediaDto[];
433
+ featuredImage: MediaDto;
434
+ photos: MediaDto[];
435
+ videos: MediaDto[];
434
436
  }