Plugin Directory

Changeset 3212301


Ignore:
Timestamp:
12/23/2024 06:55:58 PM (14 months ago)
Author:
moon0326
Message:

Release v1.0.18

Location:
wp-openapi/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • wp-openapi/trunk/readme.txt

    r3209384 r3212301  
    55Tested up to: 6.6.2
    66Requires PHP: 7.1
    7 Stable tag: 1.0.17
     7Stable tag: 1.0.18
    88License: GPLv3
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
  • wp-openapi/trunk/src/Spec/Operation.php

    r3209384 r3212301  
    172172    private function addRequestSchemaProperties( $name, $values ) {
    173173        $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        );
    175220        foreach ( $pick as $valueName ) {
    176221            if ( isset( $values[ $valueName ] ) ) {
  • wp-openapi/trunk/vendor/composer/installed.php

    r3209384 r3212301  
    44        'pretty_version' => 'dev-main',
    55        'version' => 'dev-main',
    6         'reference' => '5ae91d2bcfaeccbd133dab6845533b70d887d267',
     6        'reference' => 'ae068eabaa087f0e2273ddbcfd0d05dca72b0bb9',
    77        'type' => 'library',
    88        'install_path' => __DIR__ . '/../../',
     
    1414            'pretty_version' => 'dev-main',
    1515            'version' => 'dev-main',
    16             'reference' => '5ae91d2bcfaeccbd133dab6845533b70d887d267',
     16            'reference' => 'ae068eabaa087f0e2273ddbcfd0d05dca72b0bb9',
    1717            'type' => 'library',
    1818            'install_path' => __DIR__ . '/../../',
  • wp-openapi/trunk/wp-openapi.php

    r3209384 r3212301  
    1010 * Plugin Name: WP OpenAPI
    1111 * Plugin URI: https://github.com/moon0326/wp-openapi
    12  * Version:     1.0.17
     12 * Version:     1.0.18
    1313 * Author:      Moon K
    1414 * Author URI: https://github.com/moon0326
Note: See TracChangeset for help on using the changeset viewer.