Changeset 3212301
- Timestamp:
- 12/23/2024 06:55:58 PM (14 months ago)
- Location:
- wp-openapi/trunk
- Files:
-
- 4 edited
-
readme.txt (modified) (1 diff)
-
src/Spec/Operation.php (modified) (1 diff)
-
vendor/composer/installed.php (modified) (2 diffs)
-
wp-openapi.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
wp-openapi/trunk/readme.txt
r3209384 r3212301 5 5 Tested up to: 6.6.2 6 6 Requires PHP: 7.1 7 Stable tag: 1.0.1 77 Stable tag: 1.0.18 8 8 License: GPLv3 9 9 License URI: https://www.gnu.org/licenses/gpl-3.0.html -
wp-openapi/trunk/src/Spec/Operation.php
r3209384 r3212301 172 172 private function addRequestSchemaProperties( $name, $values ) { 173 173 $data = array(); 174 $pick = array( 'type', 'required', 'description' ); 174 $pick = array( 175 '$schema', 176 '$id', 177 '$ref', 178 '$comment', 179 "title", 180 "description", 181 "default", 182 "examples", 183 "definitions", 184 "type", 185 "enum", 186 "const", 187 "allOf", 188 "anyOf", 189 "oneOf", 190 "not", 191 "if", 192 "then", 193 "else", 194 "properties", 195 "required", 196 "additionalProperties", 197 "patternProperties", 198 "dependencies", 199 "propertyNames", 200 "items", 201 "additionalItems", 202 "contains", 203 "minProperties", 204 "maxProperties", 205 "minItems", 206 "maxItems", 207 "uniqueItems", 208 "minLength", 209 "maxLength", 210 "pattern", 211 "format", 212 "contentMediaType", 213 "contentEncoding", 214 "multipleOf", 215 "maximum", 216 "exclusiveMaximum", 217 "minimum", 218 "exclusiveMinimum", 219 ); 175 220 foreach ( $pick as $valueName ) { 176 221 if ( isset( $values[ $valueName ] ) ) { -
wp-openapi/trunk/vendor/composer/installed.php
r3209384 r3212301 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 5ae91d2bcfaeccbd133dab6845533b70d887d267',6 'reference' => 'ae068eabaa087f0e2273ddbcfd0d05dca72b0bb9', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 5ae91d2bcfaeccbd133dab6845533b70d887d267',16 'reference' => 'ae068eabaa087f0e2273ddbcfd0d05dca72b0bb9', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
wp-openapi/trunk/wp-openapi.php
r3209384 r3212301 10 10 * Plugin Name: WP OpenAPI 11 11 * Plugin URI: https://github.com/moon0326/wp-openapi 12 * Version: 1.0.1 712 * Version: 1.0.18 13 13 * Author: Moon K 14 14 * Author URI: https://github.com/moon0326
Note: See TracChangeset
for help on using the changeset viewer.