@voicenter-team/nuxt-llms-generator 0.1.3 → 0.1.4

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.
@@ -735,9 +735,9 @@ class TemplateCleanup {
735
735
  if (!currentPageIds.has(pageId)) {
736
736
  orphanedTemplates.push({
737
737
  pageId,
738
- templateAlias: templateData.metadata.templateAlias,
739
- lastUpdated: new Date(templateData.metadata.lastUpdated),
740
- url: templateData.metadata.pageId,
738
+ templateAlias: templateData.templateAlias,
739
+ lastUpdated: new Date(templateData.lastUpdated),
740
+ url: templateData.pageId,
741
741
  // URL stored in pageId field from cache
742
742
  reason: "page_deleted"
743
743
  });
@@ -760,8 +760,8 @@ class TemplateCleanup {
760
760
  if (pageContent?.hidePage === "1" || pageContent?.hidePage === 1) {
761
761
  hiddenTemplates.push({
762
762
  pageId,
763
- templateAlias: templateData.metadata.templateAlias,
764
- lastUpdated: new Date(templateData.metadata.lastUpdated),
763
+ templateAlias: templateData.templateAlias,
764
+ lastUpdated: new Date(templateData.lastUpdated),
765
765
  url: urlItem.url,
766
766
  reason: "page_hidden"
767
767
  });
package/dist/module.json CHANGED
@@ -4,5 +4,5 @@
4
4
  "compatibility": {
5
5
  "nuxt": "^3.0.0"
6
6
  },
7
- "version": "0.1.3"
7
+ "version": "0.1.4"
8
8
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@voicenter-team/nuxt-llms-generator",
3
- "version": "0.1.3",
3
+ "version": "0.1.4",
4
4
  "description": "Nuxt 3 module for automatically generating AI-optimized documentation files (llms.txt, llms-full.txt, and individual .md files) from Umbraco CMS data using Anthropic's Claude API.",
5
5
  "repository": "your-org/my-module",
6
6
  "license": "MIT",