@exclusive-website/types 1.3.2 → 1.4.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
@@ -56,6 +56,7 @@ export interface ModelReadDto {
56
56
  isAvailable: boolean;
57
57
  featuredImage: string;
58
58
  photos: string[];
59
+ video: string[];
59
60
  height: number;
60
61
  weight: number;
61
62
  breastSize: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@exclusive-website/types",
3
- "version": "1.3.2",
3
+ "version": "1.4.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
@@ -75,6 +75,7 @@ export interface ModelReadDto {
75
75
  isAvailable: boolean
76
76
  featuredImage: string
77
77
  photos: string[]
78
+ video: string[]
78
79
  height: number
79
80
  weight: number
80
81
  breastSize: number