Revert "Fixed type numeric type on products and variations schema"
This commit is contained in:
parent
e949c82339
commit
1ca43e2002
|
@ -441,18 +441,18 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Product_Variations_V
|
||||||
),
|
),
|
||||||
'price' => array(
|
'price' => array(
|
||||||
'description' => __( 'Current variation price.', 'woocommerce-rest-api' ),
|
'description' => __( 'Current variation price.', 'woocommerce-rest-api' ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
),
|
),
|
||||||
'regular_price' => array(
|
'regular_price' => array(
|
||||||
'description' => __( 'Variation regular price.', 'woocommerce-rest-api' ),
|
'description' => __( 'Variation regular price.', 'woocommerce-rest-api' ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'sale_price' => array(
|
'sale_price' => array(
|
||||||
'description' => __( 'Variation sale price.', 'woocommerce-rest-api' ),
|
'description' => __( 'Variation sale price.', 'woocommerce-rest-api' ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'date_on_sale_from' => array(
|
'date_on_sale_from' => array(
|
||||||
|
@ -595,7 +595,7 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Product_Variations_V
|
||||||
'weight' => array(
|
'weight' => array(
|
||||||
/* translators: %s: weight unit */
|
/* translators: %s: weight unit */
|
||||||
'description' => sprintf( __( 'Variation weight (%s).', 'woocommerce-rest-api' ), $weight_unit ),
|
'description' => sprintf( __( 'Variation weight (%s).', 'woocommerce-rest-api' ), $weight_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'dimensions' => array(
|
'dimensions' => array(
|
||||||
|
@ -606,19 +606,19 @@ class WC_REST_Product_Variations_Controller extends WC_REST_Product_Variations_V
|
||||||
'length' => array(
|
'length' => array(
|
||||||
/* translators: %s: dimension unit */
|
/* translators: %s: dimension unit */
|
||||||
'description' => sprintf( __( 'Variation length (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
'description' => sprintf( __( 'Variation length (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'width' => array(
|
'width' => array(
|
||||||
/* translators: %s: dimension unit */
|
/* translators: %s: dimension unit */
|
||||||
'description' => sprintf( __( 'Variation width (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
'description' => sprintf( __( 'Variation width (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'height' => array(
|
'height' => array(
|
||||||
/* translators: %s: dimension unit */
|
/* translators: %s: dimension unit */
|
||||||
'description' => sprintf( __( 'Variation height (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
'description' => sprintf( __( 'Variation height (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
|
@ -786,18 +786,18 @@ class WC_REST_Products_Controller extends WC_REST_Products_V2_Controller {
|
||||||
),
|
),
|
||||||
'price' => array(
|
'price' => array(
|
||||||
'description' => __( 'Current product price.', 'woocommerce-rest-api' ),
|
'description' => __( 'Current product price.', 'woocommerce-rest-api' ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
'readonly' => true,
|
'readonly' => true,
|
||||||
),
|
),
|
||||||
'regular_price' => array(
|
'regular_price' => array(
|
||||||
'description' => __( 'Product regular price.', 'woocommerce-rest-api' ),
|
'description' => __( 'Product regular price.', 'woocommerce-rest-api' ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'sale_price' => array(
|
'sale_price' => array(
|
||||||
'description' => __( 'Product sale price.', 'woocommerce-rest-api' ),
|
'description' => __( 'Product sale price.', 'woocommerce-rest-api' ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'date_on_sale_from' => array(
|
'date_on_sale_from' => array(
|
||||||
|
@ -962,7 +962,7 @@ class WC_REST_Products_Controller extends WC_REST_Products_V2_Controller {
|
||||||
'weight' => array(
|
'weight' => array(
|
||||||
/* translators: %s: weight unit */
|
/* translators: %s: weight unit */
|
||||||
'description' => sprintf( __( 'Product weight (%s).', 'woocommerce-rest-api' ), $weight_unit ),
|
'description' => sprintf( __( 'Product weight (%s).', 'woocommerce-rest-api' ), $weight_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'dimensions' => array(
|
'dimensions' => array(
|
||||||
|
@ -973,19 +973,19 @@ class WC_REST_Products_Controller extends WC_REST_Products_V2_Controller {
|
||||||
'length' => array(
|
'length' => array(
|
||||||
/* translators: %s: dimension unit */
|
/* translators: %s: dimension unit */
|
||||||
'description' => sprintf( __( 'Product length (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
'description' => sprintf( __( 'Product length (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'width' => array(
|
'width' => array(
|
||||||
/* translators: %s: dimension unit */
|
/* translators: %s: dimension unit */
|
||||||
'description' => sprintf( __( 'Product width (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
'description' => sprintf( __( 'Product width (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
'height' => array(
|
'height' => array(
|
||||||
/* translators: %s: dimension unit */
|
/* translators: %s: dimension unit */
|
||||||
'description' => sprintf( __( 'Product height (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
'description' => sprintf( __( 'Product height (%s).', 'woocommerce-rest-api' ), $dimension_unit ),
|
||||||
'type' => 'number',
|
'type' => 'string',
|
||||||
'context' => array( 'view', 'edit' ),
|
'context' => array( 'view', 'edit' ),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
|
|
Loading…
Reference in New Issue