@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.
@@ -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 meta data. For example, `{"height": 300, "width": 240}`. */
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 Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
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` (Auto Redirect is enabled.)
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
  */