@exclusive-website/types 2.8.9 → 2.9.0

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
@@ -355,3 +355,7 @@ export type ListingVisibilityUpdateDto = {
355
355
  id: number;
356
356
  visibility: boolean;
357
357
  };
358
+ export type ListingPublishShortDto = {
359
+ id: number;
360
+ updatedAt: Date;
361
+ };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "2.8.9",
3
+ "version": "2.9.0",
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
@@ -421,4 +421,9 @@ 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;
424
429
  }