@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.
- package/build/cjs/index.d.ts +3 -3
- package/build/cjs/index.js.map +1 -1
- package/build/cjs/index.typings.d.ts +16 -4
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +45 -11
- package/build/es/index.d.mts +3 -3
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +16 -4
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +45 -11
- package/build/internal/cjs/index.d.ts +3 -3
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +16 -4
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +45 -11
- package/build/internal/es/index.d.mts +3 -3
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +16 -4
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +45 -11
- package/package.json +2 -2
|
@@ -108,17 +108,29 @@ interface Video {
|
|
|
108
108
|
durationInMillis?: number | null;
|
|
109
109
|
}
|
|
110
110
|
interface VideoResolution {
|
|
111
|
-
/**
|
|
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
|
-
/**
|
|
120
|
+
/**
|
|
121
|
+
* Video format for example, mp4, hls. Required.
|
|
122
|
+
* @maxLength 50
|
|
123
|
+
*/
|
|
118
124
|
format?: string;
|
|
119
|
-
/**
|
|
125
|
+
/**
|
|
126
|
+
* Video quality for example 480p, 720p.
|
|
127
|
+
* @maxLength 50
|
|
128
|
+
*/
|
|
120
129
|
quality?: string | null;
|
|
121
|
-
/**
|
|
130
|
+
/**
|
|
131
|
+
* Video filename.
|
|
132
|
+
* @maxLength 512
|
|
133
|
+
*/
|
|
122
134
|
filename?: string | null;
|
|
123
135
|
}
|
|
124
136
|
/**
|