Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Follow-up solvedac/unofficial-documentation #15

Merged
merged 1 commit into from
Sep 10, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions dist/apis/OtherApi.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 { Schema7 } from '../models/index.js';
import { SolvedAcStatistics } from '../models/index.js';
/**
*
*/
Expand All @@ -19,10 +19,10 @@ export declare class OtherApi extends runtime.BaseAPI {
* solved.ac 통계를 가져옵니다.
* solved.ac 통계 가져오기
*/
getSiteStatsRaw(initOverrides?: RequestInit): Promise<runtime.ApiResponse<Schema7>>;
getSiteStatsRaw(initOverrides?: RequestInit): Promise<runtime.ApiResponse<SolvedAcStatistics>>;
/**
* solved.ac 통계를 가져옵니다.
* solved.ac 통계 가져오기
*/
getSiteStats(initOverrides?: RequestInit): Promise<Schema7>;
getSiteStats(initOverrides?: RequestInit): Promise<SolvedAcStatistics>;
}
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, Schema2 } from '../models/index.js';
import { InlineResponse2001, Schema } 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<Schema2>>;
getProblemByIdRaw(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<runtime.ApiResponse<Schema>>;
/**
* 해당하는 ID의 문제를 가져옵니다.
* ID로 문제 가져오기
*/
getProblemById(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<Schema2>;
getProblemById(requestParameters: GetProblemByIdRequest, initOverrides?: RequestInit): Promise<Schema>;
/**
* 문제 개수를 문제 수준별로 가져옵니다.
* 수준별 문제 수 가져오기
Expand Down
Loading