@wix/auto_sdk_portfolio_projects 1.0.28 → 1.0.30

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.
@@ -108,17 +108,29 @@ interface Video {
108
108
  durationInMillis?: number | null;
109
109
  }
110
110
  interface VideoResolution {
111
- /** Video URL. Required. */
111
+ /**
112
+ * Video URL. Required.
113
+ * @maxLength 8000
114
+ */
112
115
  url?: string;
113
116
  /** Video height. Required. */
114
117
  height?: number;
115
118
  /** Video width. Required. */
116
119
  width?: number;
117
- /** Video format for example, mp4, hls. Required. */
120
+ /**
121
+ * Video format for example, mp4, hls. Required.
122
+ * @maxLength 50
123
+ */
118
124
  format?: string;
119
- /** Video quality for example 480p, 720p. */
125
+ /**
126
+ * Video quality for example 480p, 720p.
127
+ * @maxLength 50
128
+ */
120
129
  quality?: string | null;
121
- /** Video filename. */
130
+ /**
131
+ * Video filename.
132
+ * @maxLength 512
133
+ */
122
134
  filename?: string | null;
123
135
  }
124
136
  /**