Skip to content

Commit

Permalink
Follow-up solvedac/unofficial-documentation (#16)
Browse files Browse the repository at this point in the history
Co-authored-by: RanolP <[email protected]>
  • Loading branch information
github-actions[bot] and RanolP authored Sep 10, 2021
1 parent c610bea commit 56be779
Show file tree
Hide file tree
Showing 7 changed files with 174 additions and 1,211 deletions.
6 changes: 3 additions & 3 deletions dist/apis/ProblemApi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
* Do not edit the class manually.
*/
import * as runtime from '../runtime.js';
import { InlineResponse2001, Schema } from '../models/index.js';
import { InlineResponse2001, TaggedProblem } from '../models/index.js';
export interface GetProblemByIdRequest {
problemId: number;
}
Expand All @@ -22,12 +22,12 @@ export declare class ProblemApi extends runtime.BaseAPI {
* 해당하는 ID의 문제를 가져옵니다.
* ID로 문제 가져오기
*/
getProblemByIdRaw(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Schema>>;
getProblemByIdRaw(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<TaggedProblem>>;
/**
* 해당하는 ID의 문제를 가져옵니다.
* ID로 문제 가져오기
*/
getProblemById(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<Schema>;
getProblemById(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<TaggedProblem>;
/**
* 문제 개수를 문제 수준별로 가져옵니다.
* 수준별 문제 수 가져오기
Expand Down
109 changes: 0 additions & 109 deletions dist/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -797,115 +797,6 @@ export interface RankedUserAllOf {
*/
rank?: number;
}
/**
* 문제 정보입니다.
* @export
* @interface Schema
*/
export interface Schema {
/**
* 문제 ID입니다.
* @type {number}
* @memberof Schema
*/
problemId?: number;
/**
* 한국어 문제 제목입니다. HTML 엔티티나 LaTeX 수식을 포함할 수 있습니다.
* @type {string}
* @memberof Schema
*/
titleKo?: string;
/**
* 채점 가능 여부입니다.
* @type {boolean}
* @memberof Schema
*/
isSolvable?: boolean;
/**
* 부분 점수 혹은 서브태스크 문제 여부입니다.
* @type {boolean}
* @memberof Schema
*/
isPartial?: boolean;
/**
* 맞은 사람 수입니다.
* @type {number}
* @memberof Schema
*/
acceptedUserCount?: number;
/**
* Unrated를 0, Bronze V를 1, ... Ruby II를 29, Ruby I을 30으로 표현하는 문제 레벨입니다.
* 자세한 값 정보는 표1. 수치 - 이름 표를 펼쳐 참고하십시오.
*
* <details>
* <summary>
* 표1. 수치 - 이름 표
* </summary>
*
* | 수치 | 이름 |
* | ---: | ------------ |
* | 0 | Unrated |
* | 1 | Bronze V |
* | 2 | Bronze IV |
* | 3 | Bronze III |
* | 4 | Bronze II |
* | 5 | Bronze I |
* | 6 | Silver V |
* | 7 | Silver IV |
* | 8 | Silver III |
* | 9 | Silver II |
* | 10 | Silver I |
* | 11 | Gold V |
* | 12 | Gold IV |
* | 13 | Gold III |
* | 14 | Gold II |
* | 15 | Gold I |
* | 16 | Platinum V |
* | 17 | Platinum IV |
* | 18 | Platinum III |
* | 19 | Platinum II |
* | 20 | Platinum I |
* | 21 | Diamond V |
* | 22 | Diamond IV |
* | 23 | Diamond III |
* | 24 | Diamond II |
* | 25 | Diamond I |
* | 26 | Ruby V |
* | 27 | Ruby IV |
* | 28 | Ruby III |
* | 29 | Ruby II |
* | 30 | Ruby I |
*
* </details>
* @type {number}
* @memberof Schema
*/
level?: number;
/**
* 난이도 기여자의 수입니다.
* @type {number}
* @memberof Schema
*/
votedUserCount?: number;
/**
* 난이도 기여 제한 여부입니다.
* @type {boolean}
* @memberof Schema
*/
isLevelLocked?: boolean;
/**
* 평균 시도 횟수입니다.
* @type {number}
* @memberof Schema
*/
averageTries?: number;
/**
* 태그 목록입니다.
* @type {Array<ProblemTag>}
* @memberof Schema
*/
tags?: Array<ProblemTag>;
}
/**
* 사용자의 solved.ac 설정 정보입니다.
* @export
Expand Down
Loading

0 comments on commit 56be779

Please sign in to comment.