@exclusive-website/types 2.8.9 → 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 +8 -0
- package/package.json +1 -1
- package/src/types.ts +10 -0
package/dist/types.d.ts
CHANGED
|
@@ -355,3 +355,11 @@ export type ListingVisibilityUpdateDto = {
|
|
|
355
355
|
id: number;
|
|
356
356
|
visibility: boolean;
|
|
357
357
|
};
|
|
358
|
+
export type ListingPublishShortDto = {
|
|
359
|
+
id: number;
|
|
360
|
+
updatedAt: Date;
|
|
361
|
+
};
|
|
362
|
+
export type ImagesAdminWriteDto = {
|
|
363
|
+
listingId: number;
|
|
364
|
+
images: MediaDto[];
|
|
365
|
+
};
|
package/package.json
CHANGED
package/src/types.ts
CHANGED
|
@@ -421,4 +421,14 @@ export type AdminUserReadDto = {
|
|
|
421
421
|
export type ListingVisibilityUpdateDto = {
|
|
422
422
|
id: number;
|
|
423
423
|
visibility: boolean
|
|
424
|
+
}
|
|
425
|
+
|
|
426
|
+
export type ListingPublishShortDto = {
|
|
427
|
+
id: number;
|
|
428
|
+
updatedAt: Date;
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
export type ImagesAdminWriteDto = {
|
|
432
|
+
listingId: number;
|
|
433
|
+
images: MediaDto[];
|
|
424
434
|
}
|