Skip to content

Commit 043ac8d

Browse files
committed
v2 APIのタグ検索を削除
1 parent b388043 commit 043ac8d

File tree

2 files changed

+0
-3
lines changed

2 files changed

+0
-3
lines changed

src/client/Qiita.ts

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ export class Qiita extends Gateway {
129129
* @param options.page ページ番号 (1から100まで)
130130
* @param options.perPage 1ページあたりに含まれる要素数 (1から100まで)
131131
* @param options.sort 並び順 (countで投稿数順、nameで名前順)
132-
* @param options.q [ドキュメント記載無し] 検索クエリ
133132
* @return タグ一覧を返す非同期反復可能オブジェクト
134133
*/
135134
public fetchTags = (options?: options.FetchTagsOptions) => {

src/client/options.ts

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,6 @@ export interface PaginationOptions {
1010
export interface FetchTagsOptions extends PaginationOptions {
1111
/** 並び順 (countで投稿数順、nameで名前順) */
1212
sort?: 'count'|'name';
13-
/** [ドキュメント記載無し] 検索クエリ */
14-
q?: string;
1513
}
1614

1715
export interface CreateTemplateOptions {

0 commit comments

Comments
 (0)