@wp-playground/blueprints 0.6.1 → 0.6.3

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.
@@ -1101,6 +1101,48 @@
1101
1101
  }
1102
1102
  },
1103
1103
  "required": ["data", "path", "step"]
1104
+ },
1105
+ {
1106
+ "type": "object",
1107
+ "additionalProperties": false,
1108
+ "properties": {
1109
+ "progress": {
1110
+ "type": "object",
1111
+ "properties": {
1112
+ "weight": {
1113
+ "type": "number"
1114
+ },
1115
+ "caption": {
1116
+ "type": "string"
1117
+ }
1118
+ },
1119
+ "additionalProperties": false
1120
+ },
1121
+ "step": {
1122
+ "type": "string",
1123
+ "const": "wp-cli",
1124
+ "description": "The step identifier."
1125
+ },
1126
+ "command": {
1127
+ "anyOf": [
1128
+ {
1129
+ "type": "string"
1130
+ },
1131
+ {
1132
+ "type": "array",
1133
+ "items": {
1134
+ "type": "string"
1135
+ }
1136
+ }
1137
+ ],
1138
+ "description": "The WP CLI command to run."
1139
+ },
1140
+ "wpCliPath": {
1141
+ "type": "string",
1142
+ "description": "wp-cli.phar path"
1143
+ }
1144
+ },
1145
+ "required": ["command", "step"]
1104
1146
  }
1105
1147
  ]
1106
1148
  },