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