@wp-playground/blueprints 0.5.6 → 0.6.1

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.
@@ -0,0 +1,4 @@
1
+ const e = {};
2
+ export {
3
+ e as default
4
+ };
@@ -0,0 +1 @@
1
+ "use strict";Object.defineProperty(exports,Symbol.toStringTag,{value:"Module"});const e={};exports.default=e;
@@ -373,53 +373,6 @@
373
373
  },
374
374
  "required": ["step", "themeFolderName"]
375
375
  },
376
- {
377
- "type": "object",
378
- "additionalProperties": false,
379
- "properties": {
380
- "progress": {
381
- "type": "object",
382
- "properties": {
383
- "weight": {
384
- "type": "number"
385
- },
386
- "caption": {
387
- "type": "string"
388
- }
389
- },
390
- "additionalProperties": false
391
- },
392
- "step": {
393
- "type": "string",
394
- "const": "applyWordPressPatches"
395
- },
396
- "siteUrl": {
397
- "type": "string"
398
- },
399
- "wordpressPath": {
400
- "type": "string"
401
- },
402
- "addPhpInfo": {
403
- "type": "boolean"
404
- },
405
- "patchSecrets": {
406
- "type": "boolean"
407
- },
408
- "disableSiteHealth": {
409
- "type": "boolean"
410
- },
411
- "disableWpNewBlogNotification": {
412
- "type": "boolean"
413
- },
414
- "prepareForRunningInsideWebBrowser": {
415
- "type": "boolean"
416
- },
417
- "addFetchNetworkTransport": {
418
- "type": "boolean"
419
- }
420
- },
421
- "required": ["step"]
422
- },
423
376
  {
424
377
  "type": "object",
425
378
  "additionalProperties": false,
@@ -515,6 +468,29 @@
515
468
  },
516
469
  "required": ["siteUrl", "step"]
517
470
  },
471
+ {
472
+ "type": "object",
473
+ "additionalProperties": false,
474
+ "properties": {
475
+ "progress": {
476
+ "type": "object",
477
+ "properties": {
478
+ "weight": {
479
+ "type": "number"
480
+ },
481
+ "caption": {
482
+ "type": "string"
483
+ }
484
+ },
485
+ "additionalProperties": false
486
+ },
487
+ "step": {
488
+ "type": "string",
489
+ "const": "enableMultisite"
490
+ }
491
+ },
492
+ "required": ["step"]
493
+ },
518
494
  {
519
495
  "type": "object",
520
496
  "additionalProperties": false,
@@ -1003,16 +979,21 @@
1003
979
  "type": "string",
1004
980
  "const": "unzip"
1005
981
  },
982
+ "zipFile": {
983
+ "$ref": "#/definitions/FileReference",
984
+ "description": "The zip file to extract"
985
+ },
1006
986
  "zipPath": {
1007
987
  "type": "string",
1008
- "description": "The zip file to extract"
988
+ "description": "The path of the zip file to extract",
989
+ "deprecated": "Use zipFile instead."
1009
990
  },
1010
991
  "extractToPath": {
1011
992
  "type": "string",
1012
993
  "description": "The path to extract the zip file to"
1013
994
  }
1014
995
  },
1015
- "required": ["extractToPath", "step", "zipPath"]
996
+ "required": ["extractToPath", "step"]
1016
997
  },
1017
998
  {
1018
999
  "type": "object",
@@ -1240,6 +1221,10 @@
1240
1221
  "code": {
1241
1222
  "type": "string",
1242
1223
  "description": "The code snippet to eval instead of a php file."
1224
+ },
1225
+ "throwOnError": {
1226
+ "type": "boolean",
1227
+ "description": "Whether to throw an error if the PHP process exits with a non-zero code or outputs to stderr."
1243
1228
  }
1244
1229
  },
1245
1230
  "additionalProperties": false