@@ -27,6 +27,7 @@ class IPublishedFileService extends AbstractInterface
27
27
* @param int32 $language Language to search in and also what gets returned. Defaults to English.
28
28
* @param {message} $required_kv_tags Required key-value tags to match on.
29
29
* @param bool $totalonly (Optional) If true, only return the total number of files that satisfy this query.
30
+ * @param bool $ids_only (Optional) If true, only return the published file ids of files that satisfy this query.
30
31
* @param bool $return_vote_data Return vote data
31
32
* @param bool $return_tags Return tags in the file details
32
33
* @param bool $return_kv_tags Return key-value tags in the file details
@@ -36,8 +37,8 @@ class IPublishedFileService extends AbstractInterface
36
37
* @param bool $return_for_sale_data Return pricing information, if applicable
37
38
* @param bool $return_metadata Populate the metadata
38
39
*/
39
- public function QueryFilesV1 ($ query_type , $ page , $ numperpage = null , $ creator_appid , $ appid , $ requiredtags , $ excludedtags , $ match_all_tags = null , $ required_flags , $ omitted_flags , $ search_text , $ filetype , $ child_publishedfileid , $ days , $ include_recent_votes_only , $ cache_max_age_seconds = null , $ language = null , $ required_kv_tags , $ totalonly , $ return_vote_data , $ return_tags , $ return_kv_tags , $ return_previews , $ return_children , $ return_short_description , $ return_for_sale_data , $ return_metadata = null )
40
+ public function QueryFilesV1 ($ query_type , $ page , $ numperpage = null , $ creator_appid , $ appid , $ requiredtags , $ excludedtags , $ match_all_tags = null , $ required_flags , $ omitted_flags , $ search_text , $ filetype , $ child_publishedfileid , $ days , $ include_recent_votes_only , $ cache_max_age_seconds = null , $ language = null , $ required_kv_tags , $ totalonly , $ ids_only , $ return_vote_data , $ return_tags , $ return_kv_tags , $ return_previews , $ return_children , $ return_short_description , $ return_for_sale_data , $ return_metadata = null )
40
41
{
41
- return $ this ->_call (__METHOD__ , 'GET ' , array ('query_type ' => $ query_type , 'page ' => $ page , 'numperpage ' => $ numperpage , 'creator_appid ' => $ creator_appid , 'appid ' => $ appid , 'requiredtags ' => $ requiredtags , 'excludedtags ' => $ excludedtags , 'match_all_tags ' => $ match_all_tags , 'required_flags ' => $ required_flags , 'omitted_flags ' => $ omitted_flags , 'search_text ' => $ search_text , 'filetype ' => $ filetype , 'child_publishedfileid ' => $ child_publishedfileid , 'days ' => $ days , 'include_recent_votes_only ' => $ include_recent_votes_only , 'cache_max_age_seconds ' => $ cache_max_age_seconds , 'language ' => $ language , 'required_kv_tags ' => $ required_kv_tags , 'totalonly ' => $ totalonly , 'return_vote_data ' => $ return_vote_data , 'return_tags ' => $ return_tags , 'return_kv_tags ' => $ return_kv_tags , 'return_previews ' => $ return_previews , 'return_children ' => $ return_children , 'return_short_description ' => $ return_short_description , 'return_for_sale_data ' => $ return_for_sale_data , 'return_metadata ' => $ return_metadata ));
42
+ return $ this ->_call (__METHOD__ , 'GET ' , array ('query_type ' => $ query_type , 'page ' => $ page , 'numperpage ' => $ numperpage , 'creator_appid ' => $ creator_appid , 'appid ' => $ appid , 'requiredtags ' => $ requiredtags , 'excludedtags ' => $ excludedtags , 'match_all_tags ' => $ match_all_tags , 'required_flags ' => $ required_flags , 'omitted_flags ' => $ omitted_flags , 'search_text ' => $ search_text , 'filetype ' => $ filetype , 'child_publishedfileid ' => $ child_publishedfileid , 'days ' => $ days , 'include_recent_votes_only ' => $ include_recent_votes_only , 'cache_max_age_seconds ' => $ cache_max_age_seconds , 'language ' => $ language , 'required_kv_tags ' => $ required_kv_tags , 'totalonly ' => $ totalonly , 'ids_only ' => $ ids_only , 'return_vote_data ' => $ return_vote_data , 'return_tags ' => $ return_tags , 'return_kv_tags ' => $ return_kv_tags , 'return_previews ' => $ return_previews , 'return_children ' => $ return_children , 'return_short_description ' => $ return_short_description , 'return_for_sale_data ' => $ return_for_sale_data , 'return_metadata ' => $ return_metadata ));
42
43
}
43
44
}
0 commit comments