@wix/auto_sdk_portfolio_projects 1.0.25 → 1.0.26
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 +5 -9
- package/build/cjs/index.typings.js.map +1 -1
- package/build/cjs/meta.d.ts +5 -5
- package/build/es/index.mjs.map +1 -1
- package/build/es/index.typings.d.mts +5 -9
- package/build/es/index.typings.mjs.map +1 -1
- package/build/es/meta.d.mts +5 -5
- package/build/internal/cjs/index.js.map +1 -1
- package/build/internal/cjs/index.typings.d.ts +5 -9
- package/build/internal/cjs/index.typings.js.map +1 -1
- package/build/internal/cjs/meta.d.ts +5 -5
- package/build/internal/es/index.mjs.map +1 -1
- package/build/internal/es/index.typings.d.mts +5 -9
- package/build/internal/es/index.typings.mjs.map +1 -1
- package/build/internal/es/meta.d.mts +5 -5
- package/package.json +2 -2
|
@@ -233,21 +233,21 @@ interface Tag {
|
|
|
233
233
|
* For example: `{"name": "description", "content": "the description itself"}`.
|
|
234
234
|
*/
|
|
235
235
|
props?: Record<string, any> | null;
|
|
236
|
-
/** SEO tag
|
|
236
|
+
/** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
|
|
237
237
|
meta?: Record<string, any> | null;
|
|
238
238
|
/** SEO tag inner content. For example, `<title> inner content </title>`. */
|
|
239
239
|
children?: string;
|
|
240
|
-
/** Whether the tag is a custom tag. */
|
|
240
|
+
/** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
|
|
241
241
|
custom?: boolean;
|
|
242
|
-
/** Whether the tag is disabled. */
|
|
242
|
+
/** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
|
|
243
243
|
disabled?: boolean;
|
|
244
244
|
}
|
|
245
245
|
interface Settings {
|
|
246
246
|
/**
|
|
247
|
-
* Whether the
|
|
247
|
+
* Whether the [automatical redirect visits](https://support.wix.com/en/article/customizing-your-pages-seo-settings-in-the-seo-panel) from the old URL to the new one is enabled.
|
|
248
248
|
*
|
|
249
249
|
*
|
|
250
|
-
* Default: `false` (
|
|
250
|
+
* Default: `false` (automatical redirect is enabled).
|
|
251
251
|
*/
|
|
252
252
|
preventAutoRedirect?: boolean;
|
|
253
253
|
/**
|
|
@@ -1423,7 +1423,6 @@ declare function createProject(project: Project): Promise<NonNullablePaths<Proje
|
|
|
1423
1423
|
* @requiredField projectId
|
|
1424
1424
|
* @permissionId PORTFOLIO.PROJECT_READ
|
|
1425
1425
|
* @applicableIdentity APP
|
|
1426
|
-
* @applicableIdentity VISITOR
|
|
1427
1426
|
* @returns The requested project.
|
|
1428
1427
|
* @fqn com.wixpress.portfolio.projects.ProjectsService.GetProject
|
|
1429
1428
|
*/
|
|
@@ -1437,7 +1436,6 @@ interface GetProjectOptions {
|
|
|
1437
1436
|
* @public
|
|
1438
1437
|
* @permissionId PORTFOLIO.PROJECT_READ
|
|
1439
1438
|
* @applicableIdentity APP
|
|
1440
|
-
* @applicableIdentity VISITOR
|
|
1441
1439
|
* @fqn com.wixpress.portfolio.projects.ProjectsService.ListProjects
|
|
1442
1440
|
*/
|
|
1443
1441
|
declare function listProjects(options?: ListProjectsOptions): Promise<NonNullablePaths<ListProjectsResponse, `projects` | `projects.${number}.coverImage.focalPoint.x` | `projects.${number}.coverImage.focalPoint.y` | `projects.${number}.seoData.settings.preventAutoRedirect` | `projects.${number}.watermark.position` | `projects.${number}.watermark.size` | `projects.${number}.watermark.opacity` | `projects.${number}.watermark.imageUrl`, 6>>;
|
|
@@ -1563,7 +1561,6 @@ declare function deleteProject(projectId: string): Promise<NonNullablePaths<Dele
|
|
|
1563
1561
|
* @public
|
|
1564
1562
|
* @permissionId PORTFOLIO.PROJECT_READ
|
|
1565
1563
|
* @applicableIdentity APP
|
|
1566
|
-
* @applicableIdentity VISITOR
|
|
1567
1564
|
* @fqn com.wixpress.portfolio.projects.ProjectsService.QueryProjects
|
|
1568
1565
|
*/
|
|
1569
1566
|
declare function queryProjects(options?: QueryProjectsOptions): ProjectsQueryBuilder;
|
|
@@ -1668,7 +1665,6 @@ interface UpdateProjectOrderInCollectionIdentifiers {
|
|
|
1668
1665
|
* @requiredField query
|
|
1669
1666
|
* @permissionId PORTFOLIO.PROJECT_READ
|
|
1670
1667
|
* @applicableIdentity APP
|
|
1671
|
-
* @applicableIdentity VISITOR
|
|
1672
1668
|
* @fqn com.wixpress.portfolio.projects.ProjectsService.QueryProjectsWithCollectionInfo
|
|
1673
1669
|
* @deprecated
|
|
1674
1670
|
*/
|