@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
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.d.mts
CHANGED
|
@@ -107,14 +107,14 @@ declare const queryProjectsWithCollectionInfo: MaybeContext<BuildRESTFunction<ty
|
|
|
107
107
|
/**
|
|
108
108
|
* Triggered when a project is created.
|
|
109
109
|
*/
|
|
110
|
-
declare const onProjectCreated: BuildEventDefinition<typeof onProjectCreated$1
|
|
110
|
+
declare const onProjectCreated: BuildEventDefinition<typeof onProjectCreated$1> & typeof onProjectCreated$1;
|
|
111
111
|
/**
|
|
112
112
|
* Triggered when a project is deleted.
|
|
113
113
|
*/
|
|
114
|
-
declare const onProjectDeleted: BuildEventDefinition<typeof onProjectDeleted$1
|
|
114
|
+
declare const onProjectDeleted: BuildEventDefinition<typeof onProjectDeleted$1> & typeof onProjectDeleted$1;
|
|
115
115
|
/**
|
|
116
116
|
* Triggered when a project is updated.
|
|
117
117
|
*/
|
|
118
|
-
declare const onProjectUpdated: BuildEventDefinition<typeof onProjectUpdated$1
|
|
118
|
+
declare const onProjectUpdated: BuildEventDefinition<typeof onProjectUpdated$1> & typeof onProjectUpdated$1;
|
|
119
119
|
|
|
120
120
|
export { BulkUpdateProjectsOptions, BulkUpdateProjectsResponse, DeleteProjectResponse, GetProjectOptions, ListProjectsOptions, ListProjectsResponse, Project, ProjectCreatedEnvelope, ProjectDeletedEnvelope, ProjectUpdatedEnvelope, ProjectsQueryBuilder, QueryProjectWithCollectionInfoResponse, QueryProjectsOptions, QueryProjectsWithCollectionInfoOptions, QueryV2, UpdateProject, UpdateProjectOrderInCollectionIdentifiers, UpdateProjectOrderInCollectionResponse, bulkUpdateProjects, createProject, deleteProject, getProject, listProjects, onProjectCreated, onProjectDeleted, onProjectUpdated, queryProjects, queryProjectsWithCollectionInfo, updateProject, updateProjectOrderInCollection };
|