@paroicms/site-generator-plugin 0.31.1 → 0.31.3

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.
@@ -26,6 +26,6 @@ export function createRawContext(service, options) {
26
26
  apiKey: pluginConf.mistralApiKey,
27
27
  }),
28
28
  mistralModelName: "ministral-8b-2512",
29
- anthropicModelName: "claude-sonnet-4-5-20250929",
29
+ anthropicModelName: "claude-sonnet-4-6",
30
30
  };
31
31
  }
@@ -32,6 +32,7 @@ Guidelines for creating the dictionnary YAML:
32
32
  - Default values:
33
33
  - By default, for most of node types, if you are not sure about what could be the best fields, then remember that a document is a webpage and just use a `[htmlContent[@paroicms/tiptap-editor-plugin]]` or `[gallery, "htmlContent[@paroicms/tiptap-editor-plugin]"]`.
34
34
  - Exception for listing pages: For the `home` document type AND for routing documents that have `regularChildren` (like blog index, products index, etc.), use `[introduction[@paroicms/tiptap-editor-plugin]]` instead of `htmlContent`. These pages display a list of child items, so they only need a short introduction, not full HTML content.
35
+ - Gallery field: This website is a **demonstration website**, so the `gallery` field should be used on at least one document type to showcase this feature. Unless the user instructions specify otherwise, include `gallery` on the `home` document type by default (i.e. `[gallery, "introduction[@paroicms/tiptap-editor-plugin]"]`).
35
36
  - Except if there are specific instructions in the website description, here is the default value for the `_site` node type: `["logo", "footerMention[@paroicms/tiptap-editor-plugin]"]`.
36
37
  - This task is about predefined fields only. Custom fields will be added in a further step.
37
38
 
@@ -39,7 +40,7 @@ Here is an example of expected output:
39
40
 
40
41
  <correct_example>
41
42
  _site: [logo, "footerMention[@paroicms/tiptap-editor-plugin]"]
42
- home: ["introduction[@paroicms/tiptap-editor-plugin]"]
43
+ home: [gallery, "introduction[@paroicms/tiptap-editor-plugin]"]
43
44
  posts: ["introduction[@paroicms/tiptap-editor-plugin]"]
44
45
  searchPage: []
45
46
  contactPage: ["introduction[@paroicms/tiptap-editor-plugin]"]