@paroicms/site-generator-plugin 0.18.0 → 0.19.0

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,9 +3,9 @@ import { createSimpleTranslator, } from "@paroicms/public-server-lib";
3
3
  import { updateGeneratedSiteStepSetAsCompleted, } from "../../db/db-write.queries.js";
4
4
  import { createTaskCollector } from "../lib/tasks.js";
5
5
  import { createGeneratedContentReport } from "./content-report.js";
6
- import { addParts, addRegularDocuments, updateRoutingDocument } from "./fill-nodels.js";
6
+ import { addParts, addRegularDocuments, updateRoutingDocument } from "./fill-lnodes.js";
7
7
  import { updateSiteFields } from "./fill-site-fields.js";
8
- import { updateNodelsWithTaxonomies } from "./fill-taxonomy-fields.js";
8
+ import { updateLNodesWithTaxonomies } from "./fill-taxonomy-fields.js";
9
9
  export async function fillSiteWithFakeContent(ctx, stepHandle, { regSite, localizedValues }) {
10
10
  const { service } = ctx;
11
11
  const { fqdn } = regSite;
@@ -28,7 +28,7 @@ export async function fillSiteWithFakeContent(ctx, stepHandle, { regSite, locali
28
28
  const { promise } = tasks.runAll({ maxParallel: 10, rateLimitPerSecond: 3 });
29
29
  const { doneCount, errorMessages } = await promise;
30
30
  const results = report.getResults();
31
- await updateNodelsWithTaxonomies(ctx, {
31
+ await updateLNodesWithTaxonomies(ctx, {
32
32
  siteSchema,
33
33
  idPicker: results.idPicker,
34
34
  fqdn,
@@ -1,4 +1,4 @@
1
- export async function updateNodelsWithTaxonomies(ctx, options) {
1
+ export async function updateLNodesWithTaxonomies(ctx, options) {
2
2
  const { service } = ctx;
3
3
  const { siteSchema, idPicker, fqdn } = options;
4
4
  const { nodeTypes } = siteSchema;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@paroicms/site-generator-plugin",
3
- "version": "0.18.0",
3
+ "version": "0.19.0",
4
4
  "description": "ParoiCMS Site Generator Plugin",
5
5
  "keywords": [
6
6
  "paroicms",
@@ -45,11 +45,11 @@
45
45
  },
46
46
  "devDependencies": {
47
47
  "@paroi/use-async-effect": "~1.0.0",
48
- "@paroicms/connector": "0.40.0",
49
- "@paroicms/internal-anywhere-lib": "1.31.8",
50
- "@paroicms/public-admin-ui-lib": "0.26.8",
51
- "@paroicms/public-anywhere-lib": "0.29.0",
52
- "@paroicms/public-server-lib": "0.38.3",
48
+ "@paroicms/connector": "0.42.0",
49
+ "@paroicms/internal-anywhere-lib": "1.31.9",
50
+ "@paroicms/public-admin-ui-lib": "0.27.0",
51
+ "@paroicms/public-anywhere-lib": "0.30.0",
52
+ "@paroicms/public-server-lib": "0.39.0",
53
53
  "@paroicms/react-ui": "0.3.1",
54
54
  "@types/dom-speech-recognition": "^0.0.6",
55
55
  "@types/node": "~24.0.1",