@wp-playground/blueprints 3.1.42 → 3.1.44

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.
@@ -721,6 +721,26 @@
721
721
  "$ref": "#/definitions/FileReference",
722
722
  "description": "The file to import"
723
723
  },
724
+ "fetchAttachments": {
725
+ "type": "boolean",
726
+ "description": "Whether to fetch and import attachment files referenced by the WXR file.",
727
+ "default": true
728
+ },
729
+ "rewriteUrls": {
730
+ "type": "boolean",
731
+ "description": "Whether to rewrite imported URLs to the current site URL.",
732
+ "default": true
733
+ },
734
+ "importComments": {
735
+ "type": "boolean",
736
+ "description": "Whether to import comments from the WXR file.",
737
+ "default": true
738
+ },
739
+ "defaultAuthorUsername": {
740
+ "type": "string",
741
+ "description": "The fallback local user for imported authors that cannot be mapped.",
742
+ "default": "admin"
743
+ },
724
744
  "importer": {
725
745
  "type": "string",
726
746
  "enum": ["data-liberation", "default"],
@@ -1486,9 +1506,23 @@
1486
1506
  "type": "boolean",
1487
1507
  "description": "Whether to activate the plugin after installing it."
1488
1508
  },
1509
+ "activationOptions": {
1510
+ "type": "object",
1511
+ "additionalProperties": {},
1512
+ "description": "Parameters to expose to the plugin during its activation hook."
1513
+ },
1514
+ "onError": {
1515
+ "type": "string",
1516
+ "enum": ["skip-plugin", "throw"],
1517
+ "description": "Whether installation/activation failures should abort the Blueprint."
1518
+ },
1489
1519
  "targetFolderName": {
1490
1520
  "type": "string",
1491
1521
  "description": "The name of the folder to install the plugin to. Defaults to guessing from pluginData"
1522
+ },
1523
+ "humanReadableName": {
1524
+ "type": "string",
1525
+ "description": "Human-readable plugin name for progress captions and skip warnings."
1492
1526
  }
1493
1527
  },
1494
1528
  "additionalProperties": false
@@ -1504,9 +1538,18 @@
1504
1538
  "type": "boolean",
1505
1539
  "description": "Whether to import the theme's starter content after installing it."
1506
1540
  },
1541
+ "onError": {
1542
+ "type": "string",
1543
+ "enum": ["skip-theme", "throw"],
1544
+ "description": "Whether installation, activation, or starter-content failures should abort the Blueprint."
1545
+ },
1507
1546
  "targetFolderName": {
1508
1547
  "type": "string",
1509
1548
  "description": "The name of the folder to install the theme to. Defaults to guessing from themeData"
1549
+ },
1550
+ "humanReadableName": {
1551
+ "type": "string",
1552
+ "description": "Human-readable theme name for the progress caption and skip warning."
1510
1553
  }
1511
1554
  },
1512
1555
  "additionalProperties": false