@exclusive-website/types 2.9.0 → 2.9.1

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
@@ -359,3 +359,7 @@ export type ListingPublishShortDto = {
359
359
  id: number;
360
360
  updatedAt: Date;
361
361
  };
362
+ export type ImagesAdminWriteDto = {
363
+ listingId: number;
364
+ images: MediaDto[];
365
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.9.0",
3
+ "version": "2.9.1",
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
@@ -426,4 +426,9 @@ export type ListingVisibilityUpdateDto = {
426
426
  export type ListingPublishShortDto = {
427
427
  id: number;
428
428
  updatedAt: Date;
429
+ }
430
+
431
+ export type ImagesAdminWriteDto = {
432
+ listingId: number;
433
+ images: MediaDto[];
429
434
  }