\WP_REST_Server::CREATABLE, 'callback' => [ $this, 'get_response' ], 'permission_callback' => [ Middleware::class, 'is_authorized' ], 'args' => [ 'business_description' => [ 'description' => __( 'The business description for a given store.', 'woocommerce' ), 'type' => 'string', ], ], ], 'schema' => [ $this->schema, 'get_public_item_schema' ], 'allow_batch' => [ 'v1' => true ], ]; } /** * Update the last business description. * * @param \WP_REST_Request $request Request object. * * @return bool|string|\WP_Error|\WP_REST_Response */ protected function get_route_post_response( \WP_REST_Request $request ) { $business_description = $request->get_param( 'business_description' ); if ( ! $business_description ) { return $this->error_to_response( new \WP_Error( 'invalid_business_description', __( 'Invalid business description.', 'woocommerce' ) ) ); } update_option( 'last_business_description_with_ai_content_generated', $business_description ); return rest_ensure_response( array( 'ai_content_generated' => true, ) ); } }