Skip to content

Commit

Permalink
Follow-up solvedac/unofficial-documentation (#21)
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 14, 2021
1 parent bd69246 commit aff8b4a
Show file tree
Hide file tree
Showing 5 changed files with 47 additions and 65 deletions.
6 changes: 6 additions & 0 deletions dist/models/index.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -232,6 +232,12 @@ export interface FullUser {
* @interface FullUserAllOf
*/
export interface FullUserAllOf {
/**
* 사용자의 순위입니다.
* @type {number}
* @memberof FullUserAllOf
*/
rank?: number;
/**
* 라이벌 여부입니다.
* @type {boolean}
Expand Down
55 changes: 19 additions & 36 deletions dist/models/mod.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,16 @@ export interface Badge {
*/
displayDescription: string;
}
/**
* 클래스 치장입니다.
* @export
* @enum {string}
*/
export declare enum ClassDecoration {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
* 사용자 정보입니다.
* @export
Expand Down Expand Up @@ -174,11 +184,11 @@ export interface FullUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof FullUser
*/
classDecoration: FullUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand Down Expand Up @@ -216,15 +226,6 @@ export interface FullUser {
*/
isReverseRival?: boolean;
}
/**
* @export
* @enum {string}
*/
export declare enum FullUserClassDecorationEnum {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
*
* @export
Expand Down Expand Up @@ -960,11 +961,11 @@ export interface RankedUser {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof RankedUser
*/
classDecoration: RankedUserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -990,15 +991,6 @@ export interface RankedUser {
*/
rank?: number;
}
/**
* @export
* @enum {string}
*/
export declare enum RankedUserClassDecorationEnum {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
*
* @export
Expand Down Expand Up @@ -1404,11 +1396,11 @@ export interface User {
*/
_class: number;
/**
* 사용자가 취득한 Class의 수준입니다.
* @type {string}
*
* @type {ClassDecoration}
* @memberof User
*/
classDecoration: UserClassDecorationEnum;
classDecoration: ClassDecoration;
/**
* 사용자의 라이벌 수입니다.
* @type {number}
Expand All @@ -1428,15 +1420,6 @@ export interface User {
*/
maxStreak: number;
}
/**
* @export
* @enum {string}
*/
export declare enum UserClassDecorationEnum {
None = "none",
Silver = "silver",
Gold = "gold"
}
/**
* 사용자의 배경 사진입니다.
* @export
Expand Down
39 changes: 10 additions & 29 deletions dist/models/mod.js
Original file line number Diff line number Diff line change
@@ -1,13 +1,14 @@
/**
* @export
* @enum {string}
*/
export var FullUserClassDecorationEnum;
(function (FullUserClassDecorationEnum) {
FullUserClassDecorationEnum["None"] = "none";
FullUserClassDecorationEnum["Silver"] = "silver";
FullUserClassDecorationEnum["Gold"] = "gold";
})(FullUserClassDecorationEnum || (FullUserClassDecorationEnum = {}));
* 클래스 치장입니다.
* @export
* @enum {string}
*/
export var ClassDecoration;
(function (ClassDecoration) {
ClassDecoration["None"] = "none";
ClassDecoration["Silver"] = "silver";
ClassDecoration["Gold"] = "gold";
})(ClassDecoration || (ClassDecoration = {}));
/**
* 난이도 아이콘 표시 정책입니다.
* @export
Expand Down Expand Up @@ -44,16 +45,6 @@ export var OrganizationTypeEnum;
* @export
* @enum {string}
*/
export var RankedUserClassDecorationEnum;
(function (RankedUserClassDecorationEnum) {
RankedUserClassDecorationEnum["None"] = "none";
RankedUserClassDecorationEnum["Silver"] = "silver";
RankedUserClassDecorationEnum["Gold"] = "gold";
})(RankedUserClassDecorationEnum || (RankedUserClassDecorationEnum = {}));
/**
* @export
* @enum {string}
*/
export var SettingsScreenThemeEnum;
(function (SettingsScreenThemeEnum) {
SettingsScreenThemeEnum["Default"] = "default";
Expand All @@ -73,13 +64,3 @@ export var SettingsProblemSortByEnum;
SettingsProblemSortByEnum["AverageTry"] = "average_try";
SettingsProblemSortByEnum["Random"] = "random";
})(SettingsProblemSortByEnum || (SettingsProblemSortByEnum = {}));
/**
* @export
* @enum {string}
*/
export var UserClassDecorationEnum;
(function (UserClassDecorationEnum) {
UserClassDecorationEnum["None"] = "none";
UserClassDecorationEnum["Silver"] = "silver";
UserClassDecorationEnum["Gold"] = "gold";
})(UserClassDecorationEnum || (UserClassDecorationEnum = {}));
6 changes: 6 additions & 0 deletions src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,12 @@ export interface FullUser {
* @interface FullUserAllOf
*/
export interface FullUserAllOf {
/**
* 사용자의 순위입니다.
* @type {number}
* @memberof FullUserAllOf
*/
rank?: number;
/**
* 라이벌 여부입니다.
* @type {boolean}
Expand Down
6 changes: 6 additions & 0 deletions src/models/mod.ts
Original file line number Diff line number Diff line change
Expand Up @@ -234,6 +234,12 @@ export interface FullUser {
* @interface FullUserAllOf
*/
export interface FullUserAllOf {
/**
* 사용자의 순위입니다.
* @type {number}
* @memberof FullUserAllOf
*/
rank?: number;
/**
* 라이벌 여부입니다.
* @type {boolean}
Expand Down

0 comments on commit aff8b4a

Please sign in to comment.