@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
|
@@ -547,7 +547,7 @@ const schema11 = {
|
|
|
547
547
|
},
|
|
548
548
|
pluginZipFile: {
|
|
549
549
|
$ref: '#/definitions/FileReference',
|
|
550
|
-
deprecated:
|
|
550
|
+
deprecated: ". Use 'pluginData' instead.",
|
|
551
551
|
},
|
|
552
552
|
options: {
|
|
553
553
|
$ref: '#/definitions/InstallPluginOptions',
|
|
@@ -589,7 +589,7 @@ const schema11 = {
|
|
|
589
589
|
},
|
|
590
590
|
themeZipFile: {
|
|
591
591
|
$ref: '#/definitions/FileReference',
|
|
592
|
-
deprecated:
|
|
592
|
+
deprecated: ". Use 'themeData' instead.",
|
|
593
593
|
},
|
|
594
594
|
options: {
|
|
595
595
|
$ref: '#/definitions/InstallThemeOptions',
|
|
@@ -984,7 +984,8 @@ const schema11 = {
|
|
|
984
984
|
},
|
|
985
985
|
filesTree: {
|
|
986
986
|
$ref: '#/definitions/DirectoryReference',
|
|
987
|
-
description:
|
|
987
|
+
description:
|
|
988
|
+
"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.",
|
|
988
989
|
},
|
|
989
990
|
},
|
|
990
991
|
required: ['filesTree', 'step', 'writeToPath'],
|
|
@@ -3255,7 +3256,7 @@ const schema22 = {
|
|
|
3255
3256
|
},
|
|
3256
3257
|
pluginZipFile: {
|
|
3257
3258
|
$ref: '#/definitions/FileReference',
|
|
3258
|
-
deprecated:
|
|
3259
|
+
deprecated: ". Use 'pluginData' instead.",
|
|
3259
3260
|
},
|
|
3260
3261
|
options: {
|
|
3261
3262
|
$ref: '#/definitions/InstallPluginOptions',
|
|
@@ -3296,7 +3297,7 @@ const schema22 = {
|
|
|
3296
3297
|
},
|
|
3297
3298
|
themeZipFile: {
|
|
3298
3299
|
$ref: '#/definitions/FileReference',
|
|
3299
|
-
deprecated:
|
|
3300
|
+
deprecated: ". Use 'themeData' instead.",
|
|
3300
3301
|
},
|
|
3301
3302
|
options: {
|
|
3302
3303
|
$ref: '#/definitions/InstallThemeOptions',
|
|
@@ -3672,7 +3673,8 @@ const schema22 = {
|
|
|
3672
3673
|
},
|
|
3673
3674
|
filesTree: {
|
|
3674
3675
|
$ref: '#/definitions/DirectoryReference',
|
|
3675
|
-
description:
|
|
3676
|
+
description:
|
|
3677
|
+
"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.",
|
|
3676
3678
|
},
|
|
3677
3679
|
},
|
|
3678
3680
|
required: ['filesTree', 'step', 'writeToPath'],
|
package/blueprint-schema.json
CHANGED
|
@@ -658,7 +658,7 @@
|
|
|
658
658
|
},
|
|
659
659
|
"pluginZipFile": {
|
|
660
660
|
"$ref": "#/definitions/FileReference",
|
|
661
|
-
"deprecated": ". Use
|
|
661
|
+
"deprecated": ". Use 'pluginData' instead."
|
|
662
662
|
},
|
|
663
663
|
"options": {
|
|
664
664
|
"$ref": "#/definitions/InstallPluginOptions",
|
|
@@ -706,7 +706,7 @@
|
|
|
706
706
|
},
|
|
707
707
|
"themeZipFile": {
|
|
708
708
|
"$ref": "#/definitions/FileReference",
|
|
709
|
-
"deprecated": ". Use
|
|
709
|
+
"deprecated": ". Use 'themeData' instead."
|
|
710
710
|
},
|
|
711
711
|
"options": {
|
|
712
712
|
"$ref": "#/definitions/InstallThemeOptions",
|
|
@@ -1215,7 +1215,7 @@
|
|
|
1215
1215
|
},
|
|
1216
1216
|
"filesTree": {
|
|
1217
1217
|
"$ref": "#/definitions/DirectoryReference",
|
|
1218
|
-
"description": "The
|
|
1218
|
+
"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."
|
|
1219
1219
|
}
|
|
1220
1220
|
},
|
|
1221
1221
|
"required": ["filesTree", "step", "writeToPath"]
|