@absolutejs/absolute 0.19.0-beta.960 → 0.19.0-beta.961

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.
@@ -3,6 +3,11 @@ export type SitemapRouteOverride = {
3
3
  changefreq?: ChangeFrequency;
4
4
  priority?: number;
5
5
  lastmod?: string;
6
+ /** Per-route opt-out. When set on a page handler's `sitemap` block
7
+ * (e.g. `sitemap: { exclude: true }`), the route is omitted from
8
+ * the generated sitemap.xml. Use for auth-gated routes, token
9
+ * pages, or anything that shouldn't be crawled. */
10
+ exclude?: boolean;
6
11
  };
7
12
  /** Per-route sitemap metadata, accepted as an optional `sitemap` field
8
13
  * on every framework page-handler input (`handleAngularPageRequest`,
package/package.json CHANGED
@@ -401,5 +401,5 @@
401
401
  ]
402
402
  }
403
403
  },
404
- "version": "0.19.0-beta.960"
404
+ "version": "0.19.0-beta.961"
405
405
  }