@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.
@@ -204,21 +204,21 @@ interface Tag {
204
204
  * For example: `{"name": "description", "content": "the description itself"}`.
205
205
  */
206
206
  props?: Record<string, any> | null;
207
- /** SEO tag meta data. For example, `{"height": 300, "width": 240}`. */
207
+ /** SEO tag metadata. For example, `{"height": 300, "width": 240}`. */
208
208
  meta?: Record<string, any> | null;
209
209
  /** SEO tag inner content. For example, `<title> inner content </title>`. */
210
210
  children?: string;
211
- /** Whether the tag is a custom tag. */
211
+ /** Whether the tag is a [custom tag](https://support.wix.com/en/article/adding-additional-meta-tags-to-your-sites-pages). */
212
212
  custom?: boolean;
213
- /** Whether the tag is disabled. */
213
+ /** Whether the tag is disabled. If the tag is disabled, people can't find your page when searching for this phrase in search engines. */
214
214
  disabled?: boolean;
215
215
  }
216
216
  interface Settings {
217
217
  /**
218
- * Whether the Auto Redirect feature, which creates `301 redirects` on a slug change, is enabled.
218
+ * 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.
219
219
  *
220
220
  *
221
- * Default: `false` (Auto Redirect is enabled.)
221
+ * Default: `false` (automatical redirect is enabled).
222
222
  */
223
223
  preventAutoRedirect?: boolean;
224
224
  /**