@wp-playground/blueprints 1.0.28 → 1.0.29
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.
- package/blueprint-schema-validator.js +8 -6
- package/blueprint-schema.json +3 -3
- package/index.cjs +2 -2
- package/index.cjs.map +1 -1
- package/index.js +3 -3
- package/index.js.map +1 -1
- package/lib/steps/install-plugin.d.ts +1 -1
- package/lib/steps/install-theme.d.ts +1 -1
- package/lib/steps/write-files.d.ts +12 -1
- package/package.json +12 -12
package/index.js
CHANGED
|
@@ -2874,7 +2874,7 @@ for existing apps using this option.`
|
|
|
2874
2874
|
},
|
|
2875
2875
|
pluginZipFile: {
|
|
2876
2876
|
$ref: "#/definitions/FileReference",
|
|
2877
|
-
deprecated: ". Use
|
|
2877
|
+
deprecated: ". Use 'pluginData' instead."
|
|
2878
2878
|
},
|
|
2879
2879
|
options: {
|
|
2880
2880
|
$ref: "#/definitions/InstallPluginOptions",
|
|
@@ -2914,7 +2914,7 @@ for existing apps using this option.`
|
|
|
2914
2914
|
},
|
|
2915
2915
|
themeZipFile: {
|
|
2916
2916
|
$ref: "#/definitions/FileReference",
|
|
2917
|
-
deprecated: ". Use
|
|
2917
|
+
deprecated: ". Use 'themeData' instead."
|
|
2918
2918
|
},
|
|
2919
2919
|
options: {
|
|
2920
2920
|
$ref: "#/definitions/InstallThemeOptions",
|
|
@@ -3285,7 +3285,7 @@ Only the username field is required for user authentication.`
|
|
|
3285
3285
|
},
|
|
3286
3286
|
filesTree: {
|
|
3287
3287
|
$ref: "#/definitions/DirectoryReference",
|
|
3288
|
-
description: "The
|
|
3288
|
+
description: "The 'filesTree' defines the directory structure, supporting 'literal:directory' or 'git:directory' types. The 'name' represents the root directory, while 'files' is an object where keys are file paths, and values contain either file content as a string or nested objects for subdirectories."
|
|
3289
3289
|
}
|
|
3290
3290
|
},
|
|
3291
3291
|
required: ["filesTree", "step", "writeToPath"]
|