@wix/auto_sdk_portfolio_project-items 1.0.20 → 1.0.22
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.js.map +1 -1
- package/build/cjs/index.typings.d.ts +16 -7
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +45 -11
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +16 -7
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +45 -11
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +16 -7
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +45 -11
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +16 -7
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +45 -11
- package/package.json +2 -2
|
@@ -69,20 +69,30 @@ interface Image {
|
|
|
69
69
|
focalPoint?: Point;
|
|
70
70
|
}
|
|
71
71
|
interface CommonImage {
|
|
72
|
-
/**
|
|
72
|
+
/**
|
|
73
|
+
* WixMedia image ID. Required.
|
|
74
|
+
* @maxLength 512
|
|
75
|
+
*/
|
|
73
76
|
id?: string;
|
|
74
77
|
/**
|
|
75
78
|
* Image URL.
|
|
76
79
|
* @readonly
|
|
80
|
+
* @maxLength 8000
|
|
77
81
|
*/
|
|
78
82
|
url?: string;
|
|
79
83
|
/** Original image height. Required. */
|
|
80
84
|
height?: number;
|
|
81
85
|
/** Original image width. Required. */
|
|
82
86
|
width?: number;
|
|
83
|
-
/**
|
|
87
|
+
/**
|
|
88
|
+
* Image alt text.
|
|
89
|
+
* @maxLength 5000
|
|
90
|
+
*/
|
|
84
91
|
altText?: string | null;
|
|
85
|
-
/**
|
|
92
|
+
/**
|
|
93
|
+
* Image filename.
|
|
94
|
+
* @maxLength 512
|
|
95
|
+
*/
|
|
86
96
|
filename?: string | null;
|
|
87
97
|
}
|
|
88
98
|
interface Point {
|
|
@@ -98,32 +108,56 @@ interface Video {
|
|
|
98
108
|
durationInMillis?: number | null;
|
|
99
109
|
}
|
|
100
110
|
interface VideoV2 {
|
|
101
|
-
/**
|
|
111
|
+
/**
|
|
112
|
+
* WixMedia ID. Required.
|
|
113
|
+
* @maxLength 512
|
|
114
|
+
*/
|
|
102
115
|
id?: string;
|
|
103
|
-
/**
|
|
116
|
+
/**
|
|
117
|
+
* Video URL.
|
|
118
|
+
* @maxLength 8000
|
|
119
|
+
*/
|
|
104
120
|
url?: string;
|
|
105
121
|
/**
|
|
106
122
|
* Available resolutions for the video, starting with the optimal resolution.
|
|
107
123
|
* @maxSize 100
|
|
108
124
|
*/
|
|
109
125
|
resolutions?: VideoResolution[];
|
|
110
|
-
/**
|
|
126
|
+
/**
|
|
127
|
+
* Video filename.
|
|
128
|
+
* @maxLength 512
|
|
129
|
+
*/
|
|
111
130
|
filename?: string | null;
|
|
112
|
-
/**
|
|
131
|
+
/**
|
|
132
|
+
* Video posters.
|
|
133
|
+
* @maxSize 100
|
|
134
|
+
*/
|
|
113
135
|
posters?: CommonImage[];
|
|
114
136
|
}
|
|
115
137
|
interface VideoResolution {
|
|
116
|
-
/**
|
|
138
|
+
/**
|
|
139
|
+
* Video URL. Required.
|
|
140
|
+
* @maxLength 8000
|
|
141
|
+
*/
|
|
117
142
|
url?: string;
|
|
118
143
|
/** Video height. Required. */
|
|
119
144
|
height?: number;
|
|
120
145
|
/** Video width. Required. */
|
|
121
146
|
width?: number;
|
|
122
|
-
/**
|
|
147
|
+
/**
|
|
148
|
+
* Video format for example, mp4, hls. Required.
|
|
149
|
+
* @maxLength 50
|
|
150
|
+
*/
|
|
123
151
|
format?: string;
|
|
124
|
-
/**
|
|
152
|
+
/**
|
|
153
|
+
* Video quality for example 480p, 720p.
|
|
154
|
+
* @maxLength 50
|
|
155
|
+
*/
|
|
125
156
|
quality?: string | null;
|
|
126
|
-
/**
|
|
157
|
+
/**
|
|
158
|
+
* Video filename.
|
|
159
|
+
* @maxLength 512
|
|
160
|
+
*/
|
|
127
161
|
filename?: string | null;
|
|
128
162
|
}
|
|
129
163
|
interface Link {
|