rhythia-api 182.0.0 → 185.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.prettierrc.json +6 -6
- package/api/addCollectionMap.ts +82 -82
- package/api/approveMap.ts +78 -78
- package/api/chartPublicStats.ts +32 -32
- package/api/createBeatmap.ts +168 -156
- package/api/createBeatmapPage.ts +64 -64
- package/api/createClan.ts +81 -81
- package/api/createCollection.ts +58 -58
- package/api/deleteBeatmapPage.ts +77 -72
- package/api/deleteCollection.ts +59 -59
- package/api/deleteCollectionMap.ts +71 -71
- package/api/editAboutMe.ts +91 -91
- package/api/editClan.ts +90 -90
- package/api/editCollection.ts +77 -77
- package/api/editProfile.ts +123 -123
- package/api/getAvatarUploadUrl.ts +85 -85
- package/api/getBadgedUsers.ts +56 -56
- package/api/getBeatmapComments.ts +57 -57
- package/api/getBeatmapPage.ts +106 -106
- package/api/getBeatmapPageById.ts +99 -99
- package/api/getBeatmapStarRating.ts +53 -53
- package/api/getBeatmaps.ts +159 -159
- package/api/getClan.ts +77 -77
- package/api/getCollection.ts +130 -130
- package/api/getCollections.ts +130 -126
- package/api/getLeaderboard.ts +136 -136
- package/api/getMapUploadUrl.ts +93 -93
- package/api/getPassToken.ts +55 -55
- package/api/getProfile.ts +146 -146
- package/api/getPublicStats.ts +180 -180
- package/api/getRawStarRating.ts +57 -57
- package/api/getScore.ts +85 -85
- package/api/getTimestamp.ts +23 -23
- package/api/getUserScores.ts +175 -175
- package/api/nominateMap.ts +82 -69
- package/api/postBeatmapComment.ts +59 -59
- package/api/rankMapsArchive.ts +64 -64
- package/api/searchUsers.ts +56 -56
- package/api/setPasskey.ts +59 -59
- package/api/submitScore.ts +433 -433
- package/api/updateBeatmapPage.ts +229 -229
- package/handleApi.ts +20 -20
- package/index.html +2 -2
- package/index.ts +866 -864
- package/package.json +2 -2
- package/types/database.ts +114 -1
- package/utils/getUserBySession.ts +48 -48
- package/utils/requestUtils.ts +87 -87
- package/utils/security.ts +20 -20
- package/utils/star-calc/index.ts +72 -72
- package/utils/star-calc/osuUtils.ts +53 -53
- package/utils/star-calc/sspmParser.ts +398 -398
- package/utils/star-calc/sspmv1Parser.ts +165 -165
- package/utils/supabase.ts +13 -13
- package/utils/test +4 -4
- package/utils/validateToken.ts +7 -7
- package/vercel.json +12 -12
- package/package-lock.json +0 -8913
package/index.ts
CHANGED
|
@@ -1,1032 +1,1034 @@
|
|
|
1
1
|
import { handleApi } from "./handleApi"
|
|
2
2
|
|
|
3
|
-
// ./api/
|
|
4
|
-
|
|
5
|
-
/*
|
|
6
|
-
export const Schema = {
|
|
7
|
-
input: z.strictObject({
|
|
8
|
-
session: z.string(),
|
|
9
|
-
collection: z.number(),
|
|
10
|
-
beatmapPage: z.number(),
|
|
11
|
-
}),
|
|
12
|
-
output: z.object({
|
|
13
|
-
error: z.string().optional(),
|
|
14
|
-
}),
|
|
15
|
-
};*/
|
|
16
|
-
import { Schema as AddCollectionMap } from "./api/addCollectionMap"
|
|
17
|
-
export { Schema as SchemaAddCollectionMap } from "./api/addCollectionMap"
|
|
18
|
-
export const addCollectionMap = handleApi({url:"/api/addCollectionMap",...AddCollectionMap})
|
|
19
|
-
|
|
20
|
-
// ./api/approveMap.ts API
|
|
21
|
-
|
|
22
|
-
/*
|
|
23
|
-
export const Schema = {
|
|
24
|
-
input: z.strictObject({
|
|
25
|
-
session: z.string(),
|
|
26
|
-
mapId: z.number(),
|
|
27
|
-
}),
|
|
28
|
-
output: z.object({
|
|
29
|
-
error: z.string().optional(),
|
|
30
|
-
}),
|
|
31
|
-
};*/
|
|
32
|
-
import { Schema as ApproveMap } from "./api/approveMap"
|
|
33
|
-
export { Schema as SchemaApproveMap } from "./api/approveMap"
|
|
34
|
-
export const approveMap = handleApi({url:"/api/approveMap",...ApproveMap})
|
|
35
|
-
|
|
36
|
-
// ./api/chartPublicStats.ts API
|
|
3
|
+
// ./api/getPassToken.ts API
|
|
37
4
|
|
|
38
5
|
/*
|
|
39
|
-
export const Schema = {
|
|
40
|
-
input: z.strictObject({
|
|
41
|
-
|
|
6
|
+
export const Schema = {
|
|
7
|
+
input: z.strictObject({
|
|
8
|
+
data: z.object({
|
|
9
|
+
email: z.string(),
|
|
10
|
+
passkey: z.string(),
|
|
11
|
+
computerName: z.string(),
|
|
12
|
+
}),
|
|
13
|
+
}),
|
|
14
|
+
output: z.object({
|
|
15
|
+
token: z.string().optional(),
|
|
16
|
+
error: z.string().optional(),
|
|
17
|
+
}),
|
|
42
18
|
};*/
|
|
43
|
-
import { Schema as
|
|
44
|
-
export { Schema as
|
|
45
|
-
export const
|
|
19
|
+
import { Schema as GetPassToken } from "./api/getPassToken"
|
|
20
|
+
export { Schema as SchemaGetPassToken } from "./api/getPassToken"
|
|
21
|
+
export const getPassToken = handleApi({url:"/api/getPassToken",...GetPassToken})
|
|
46
22
|
|
|
47
|
-
// ./api/
|
|
23
|
+
// ./api/getMapUploadUrl.ts API
|
|
48
24
|
|
|
49
25
|
/*
|
|
50
|
-
export const Schema = {
|
|
51
|
-
input: z.strictObject({
|
|
52
|
-
|
|
53
|
-
session: z.string(),
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
26
|
+
export const Schema = {
|
|
27
|
+
input: z.strictObject({
|
|
28
|
+
mapName: z.string().optional(),
|
|
29
|
+
session: z.string(),
|
|
30
|
+
contentLength: z.number(),
|
|
31
|
+
contentType: z.string(),
|
|
32
|
+
intrinsicToken: z.string(),
|
|
33
|
+
}),
|
|
34
|
+
output: z.strictObject({
|
|
35
|
+
error: z.string().optional(),
|
|
36
|
+
url: z.string().optional(),
|
|
37
|
+
objectKey: z.string().optional(),
|
|
38
|
+
}),
|
|
60
39
|
};*/
|
|
61
|
-
import { Schema as
|
|
62
|
-
export { Schema as
|
|
63
|
-
export const
|
|
40
|
+
import { Schema as GetMapUploadUrl } from "./api/getMapUploadUrl"
|
|
41
|
+
export { Schema as SchemaGetMapUploadUrl } from "./api/getMapUploadUrl"
|
|
42
|
+
export const getMapUploadUrl = handleApi({url:"/api/getMapUploadUrl",...GetMapUploadUrl})
|
|
64
43
|
|
|
65
|
-
// ./api/
|
|
44
|
+
// ./api/createCollection.ts API
|
|
66
45
|
|
|
67
46
|
/*
|
|
68
|
-
export const Schema = {
|
|
69
|
-
input: z.strictObject({
|
|
70
|
-
session: z.string(),
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
id: z.number()
|
|
75
|
-
|
|
47
|
+
export const Schema = {
|
|
48
|
+
input: z.strictObject({
|
|
49
|
+
session: z.string(),
|
|
50
|
+
title: z.string(),
|
|
51
|
+
}),
|
|
52
|
+
output: z.object({
|
|
53
|
+
id: z.number(),
|
|
54
|
+
error: z.string().optional(),
|
|
55
|
+
}),
|
|
76
56
|
};*/
|
|
77
|
-
import { Schema as
|
|
78
|
-
export { Schema as
|
|
79
|
-
export const
|
|
57
|
+
import { Schema as CreateCollection } from "./api/createCollection"
|
|
58
|
+
export { Schema as SchemaCreateCollection } from "./api/createCollection"
|
|
59
|
+
export const createCollection = handleApi({url:"/api/createCollection",...CreateCollection})
|
|
80
60
|
|
|
81
|
-
// ./api/
|
|
61
|
+
// ./api/deleteCollectionMap.ts API
|
|
82
62
|
|
|
83
63
|
/*
|
|
84
|
-
export const Schema = {
|
|
85
|
-
input: z.strictObject({
|
|
86
|
-
session: z.string(),
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
}),
|
|
90
|
-
output: z.object({
|
|
91
|
-
error: z.string().optional(),
|
|
92
|
-
}),
|
|
64
|
+
export const Schema = {
|
|
65
|
+
input: z.strictObject({
|
|
66
|
+
session: z.string(),
|
|
67
|
+
collection: z.number(),
|
|
68
|
+
beatmapPage: z.number(),
|
|
69
|
+
}),
|
|
70
|
+
output: z.object({
|
|
71
|
+
error: z.string().optional(),
|
|
72
|
+
}),
|
|
93
73
|
};*/
|
|
94
|
-
import { Schema as
|
|
95
|
-
export { Schema as
|
|
96
|
-
export const
|
|
74
|
+
import { Schema as DeleteCollectionMap } from "./api/deleteCollectionMap"
|
|
75
|
+
export { Schema as SchemaDeleteCollectionMap } from "./api/deleteCollectionMap"
|
|
76
|
+
export const deleteCollectionMap = handleApi({url:"/api/deleteCollectionMap",...DeleteCollectionMap})
|
|
97
77
|
|
|
98
|
-
// ./api/
|
|
78
|
+
// ./api/getAvatarUploadUrl.ts API
|
|
99
79
|
|
|
100
80
|
/*
|
|
101
|
-
export const Schema = {
|
|
102
|
-
input: z.strictObject({
|
|
103
|
-
session: z.string(),
|
|
104
|
-
|
|
105
|
-
|
|
106
|
-
|
|
107
|
-
|
|
108
|
-
|
|
109
|
-
|
|
81
|
+
export const Schema = {
|
|
82
|
+
input: z.strictObject({
|
|
83
|
+
session: z.string(),
|
|
84
|
+
contentLength: z.number(),
|
|
85
|
+
contentType: z.string(),
|
|
86
|
+
intrinsicToken: z.string(),
|
|
87
|
+
}),
|
|
88
|
+
output: z.strictObject({
|
|
89
|
+
error: z.string().optional(),
|
|
90
|
+
url: z.string().optional(),
|
|
91
|
+
objectKey: z.string().optional(),
|
|
92
|
+
}),
|
|
110
93
|
};*/
|
|
111
|
-
import { Schema as
|
|
112
|
-
export { Schema as
|
|
113
|
-
export const
|
|
94
|
+
import { Schema as GetAvatarUploadUrl } from "./api/getAvatarUploadUrl"
|
|
95
|
+
export { Schema as SchemaGetAvatarUploadUrl } from "./api/getAvatarUploadUrl"
|
|
96
|
+
export const getAvatarUploadUrl = handleApi({url:"/api/getAvatarUploadUrl",...GetAvatarUploadUrl})
|
|
114
97
|
|
|
115
|
-
// ./api/
|
|
98
|
+
// ./api/approveMap.ts API
|
|
116
99
|
|
|
117
100
|
/*
|
|
118
|
-
export const Schema = {
|
|
119
|
-
input: z.strictObject({
|
|
120
|
-
session: z.string(),
|
|
121
|
-
|
|
122
|
-
}),
|
|
123
|
-
output: z.
|
|
124
|
-
error: z.string().optional(),
|
|
125
|
-
}),
|
|
101
|
+
export const Schema = {
|
|
102
|
+
input: z.strictObject({
|
|
103
|
+
session: z.string(),
|
|
104
|
+
mapId: z.number(),
|
|
105
|
+
}),
|
|
106
|
+
output: z.object({
|
|
107
|
+
error: z.string().optional(),
|
|
108
|
+
}),
|
|
126
109
|
};*/
|
|
127
|
-
import { Schema as
|
|
128
|
-
export { Schema as
|
|
129
|
-
export const
|
|
110
|
+
import { Schema as ApproveMap } from "./api/approveMap"
|
|
111
|
+
export { Schema as SchemaApproveMap } from "./api/approveMap"
|
|
112
|
+
export const approveMap = handleApi({url:"/api/approveMap",...ApproveMap})
|
|
130
113
|
|
|
131
|
-
// ./api/
|
|
114
|
+
// ./api/nominateMap.ts API
|
|
132
115
|
|
|
133
116
|
/*
|
|
134
|
-
export const Schema = {
|
|
135
|
-
input: z.strictObject({
|
|
136
|
-
session: z.string(),
|
|
137
|
-
|
|
138
|
-
}),
|
|
139
|
-
output: z.object({
|
|
140
|
-
error: z.string().optional(),
|
|
141
|
-
}),
|
|
117
|
+
export const Schema = {
|
|
118
|
+
input: z.strictObject({
|
|
119
|
+
session: z.string(),
|
|
120
|
+
mapId: z.number(),
|
|
121
|
+
}),
|
|
122
|
+
output: z.object({
|
|
123
|
+
error: z.string().optional(),
|
|
124
|
+
}),
|
|
142
125
|
};*/
|
|
143
|
-
import { Schema as
|
|
144
|
-
export { Schema as
|
|
145
|
-
export const
|
|
126
|
+
import { Schema as NominateMap } from "./api/nominateMap"
|
|
127
|
+
export { Schema as SchemaNominateMap } from "./api/nominateMap"
|
|
128
|
+
export const nominateMap = handleApi({url:"/api/nominateMap",...NominateMap})
|
|
146
129
|
|
|
147
|
-
// ./api/
|
|
130
|
+
// ./api/createBeatmapPage.ts API
|
|
148
131
|
|
|
149
132
|
/*
|
|
150
|
-
export const Schema = {
|
|
151
|
-
input: z.strictObject({
|
|
152
|
-
session: z.string(),
|
|
153
|
-
|
|
154
|
-
|
|
155
|
-
|
|
156
|
-
|
|
157
|
-
|
|
158
|
-
}),
|
|
133
|
+
export const Schema = {
|
|
134
|
+
input: z.strictObject({
|
|
135
|
+
session: z.string(),
|
|
136
|
+
}),
|
|
137
|
+
output: z.strictObject({
|
|
138
|
+
error: z.string().optional(),
|
|
139
|
+
id: z.number().optional(),
|
|
140
|
+
}),
|
|
159
141
|
};*/
|
|
160
|
-
import { Schema as
|
|
161
|
-
export { Schema as
|
|
162
|
-
export const
|
|
142
|
+
import { Schema as CreateBeatmapPage } from "./api/createBeatmapPage"
|
|
143
|
+
export { Schema as SchemaCreateBeatmapPage } from "./api/createBeatmapPage"
|
|
144
|
+
export const createBeatmapPage = handleApi({url:"/api/createBeatmapPage",...CreateBeatmapPage})
|
|
163
145
|
|
|
164
146
|
// ./api/editAboutMe.ts API
|
|
165
147
|
|
|
166
148
|
/*
|
|
167
|
-
export const Schema = {
|
|
168
|
-
input: z.strictObject({
|
|
169
|
-
session: z.string(),
|
|
170
|
-
data: z.object({
|
|
171
|
-
about_me: z.string().optional(),
|
|
172
|
-
}),
|
|
173
|
-
}),
|
|
174
|
-
output: z.object({
|
|
175
|
-
error: z.string().optional(),
|
|
176
|
-
}),
|
|
149
|
+
export const Schema = {
|
|
150
|
+
input: z.strictObject({
|
|
151
|
+
session: z.string(),
|
|
152
|
+
data: z.object({
|
|
153
|
+
about_me: z.string().optional(),
|
|
154
|
+
}),
|
|
155
|
+
}),
|
|
156
|
+
output: z.object({
|
|
157
|
+
error: z.string().optional(),
|
|
158
|
+
}),
|
|
177
159
|
};*/
|
|
178
160
|
import { Schema as EditAboutMe } from "./api/editAboutMe"
|
|
179
161
|
export { Schema as SchemaEditAboutMe } from "./api/editAboutMe"
|
|
180
162
|
export const editAboutMe = handleApi({url:"/api/editAboutMe",...EditAboutMe})
|
|
181
163
|
|
|
182
|
-
// ./api/
|
|
164
|
+
// ./api/chartPublicStats.ts API
|
|
183
165
|
|
|
184
166
|
/*
|
|
185
|
-
export const Schema = {
|
|
186
|
-
input: z.strictObject({
|
|
187
|
-
|
|
188
|
-
id: z.number(),
|
|
189
|
-
name: z.string(),
|
|
190
|
-
avatar_url: z.string(),
|
|
191
|
-
description: z.string(),
|
|
192
|
-
acronym: z.string(),
|
|
193
|
-
}),
|
|
194
|
-
output: z.object({
|
|
195
|
-
error: z.string().optional(),
|
|
196
|
-
}),
|
|
167
|
+
export const Schema = {
|
|
168
|
+
input: z.strictObject({}),
|
|
169
|
+
output: z.object({}),
|
|
197
170
|
};*/
|
|
198
|
-
import { Schema as
|
|
199
|
-
export { Schema as
|
|
200
|
-
export const
|
|
171
|
+
import { Schema as ChartPublicStats } from "./api/chartPublicStats"
|
|
172
|
+
export { Schema as SchemaChartPublicStats } from "./api/chartPublicStats"
|
|
173
|
+
export const chartPublicStats = handleApi({url:"/api/chartPublicStats",...ChartPublicStats})
|
|
201
174
|
|
|
202
|
-
// ./api/
|
|
175
|
+
// ./api/rankMapsArchive.ts API
|
|
203
176
|
|
|
204
177
|
/*
|
|
205
|
-
export const Schema = {
|
|
206
|
-
input: z.strictObject({
|
|
207
|
-
session: z.string(),
|
|
208
|
-
|
|
209
|
-
|
|
210
|
-
|
|
211
|
-
|
|
212
|
-
}),
|
|
213
|
-
output: z.object({
|
|
214
|
-
error: z.string().optional(),
|
|
215
|
-
}),
|
|
178
|
+
export const Schema = {
|
|
179
|
+
input: z.strictObject({
|
|
180
|
+
session: z.string(),
|
|
181
|
+
mapId: z.number(),
|
|
182
|
+
}),
|
|
183
|
+
output: z.object({
|
|
184
|
+
error: z.string().optional(),
|
|
185
|
+
}),
|
|
216
186
|
};*/
|
|
217
|
-
import { Schema as
|
|
218
|
-
export { Schema as
|
|
219
|
-
export const
|
|
187
|
+
import { Schema as RankMapsArchive } from "./api/rankMapsArchive"
|
|
188
|
+
export { Schema as SchemaRankMapsArchive } from "./api/rankMapsArchive"
|
|
189
|
+
export const rankMapsArchive = handleApi({url:"/api/rankMapsArchive",...RankMapsArchive})
|
|
220
190
|
|
|
221
|
-
// ./api/
|
|
191
|
+
// ./api/getRawStarRating.ts API
|
|
222
192
|
|
|
223
193
|
/*
|
|
224
|
-
export const Schema = {
|
|
225
|
-
input: z.strictObject({
|
|
226
|
-
session: z.string(),
|
|
227
|
-
|
|
228
|
-
|
|
229
|
-
|
|
230
|
-
|
|
231
|
-
|
|
232
|
-
|
|
233
|
-
|
|
234
|
-
|
|
235
|
-
|
|
194
|
+
export const Schema = {
|
|
195
|
+
input: z.strictObject({
|
|
196
|
+
session: z.string(),
|
|
197
|
+
rawMap: z.string(),
|
|
198
|
+
}),
|
|
199
|
+
output: z.object({
|
|
200
|
+
error: z.string().optional(),
|
|
201
|
+
beatmap: z
|
|
202
|
+
.object({
|
|
203
|
+
starRating: z.number().nullable().optional(),
|
|
204
|
+
})
|
|
205
|
+
.optional(),
|
|
206
|
+
}),
|
|
236
207
|
};*/
|
|
237
|
-
import { Schema as
|
|
238
|
-
export { Schema as
|
|
239
|
-
export const
|
|
208
|
+
import { Schema as GetRawStarRating } from "./api/getRawStarRating"
|
|
209
|
+
export { Schema as SchemaGetRawStarRating } from "./api/getRawStarRating"
|
|
210
|
+
export const getRawStarRating = handleApi({url:"/api/getRawStarRating",...GetRawStarRating})
|
|
240
211
|
|
|
241
|
-
// ./api/
|
|
212
|
+
// ./api/createClan.ts API
|
|
242
213
|
|
|
243
214
|
/*
|
|
244
|
-
export const Schema = {
|
|
245
|
-
input: z.strictObject({
|
|
246
|
-
session: z.string(),
|
|
247
|
-
|
|
248
|
-
|
|
249
|
-
|
|
250
|
-
|
|
251
|
-
|
|
252
|
-
|
|
253
|
-
url: z.string().optional(),
|
|
254
|
-
objectKey: z.string().optional(),
|
|
255
|
-
}),
|
|
215
|
+
export const Schema = {
|
|
216
|
+
input: z.strictObject({
|
|
217
|
+
session: z.string(),
|
|
218
|
+
name: z.string(),
|
|
219
|
+
acronym: z.string(),
|
|
220
|
+
}),
|
|
221
|
+
output: z.object({
|
|
222
|
+
error: z.string().optional(),
|
|
223
|
+
}),
|
|
256
224
|
};*/
|
|
257
|
-
import { Schema as
|
|
258
|
-
export { Schema as
|
|
259
|
-
export const
|
|
225
|
+
import { Schema as CreateClan } from "./api/createClan"
|
|
226
|
+
export { Schema as SchemaCreateClan } from "./api/createClan"
|
|
227
|
+
export const createClan = handleApi({url:"/api/createClan",...CreateClan})
|
|
260
228
|
|
|
261
|
-
// ./api/
|
|
229
|
+
// ./api/setPasskey.ts API
|
|
262
230
|
|
|
263
231
|
/*
|
|
264
|
-
export const Schema = {
|
|
265
|
-
input: z.strictObject({
|
|
266
|
-
|
|
267
|
-
|
|
268
|
-
|
|
269
|
-
|
|
270
|
-
|
|
271
|
-
|
|
272
|
-
|
|
273
|
-
|
|
274
|
-
id: z.number(),
|
|
275
|
-
username: z.string().nullable(),
|
|
276
|
-
})
|
|
277
|
-
)
|
|
278
|
-
.optional(),
|
|
279
|
-
}),
|
|
232
|
+
export const Schema = {
|
|
233
|
+
input: z.strictObject({
|
|
234
|
+
session: z.string(),
|
|
235
|
+
data: z.object({
|
|
236
|
+
passkey: z.string(),
|
|
237
|
+
}),
|
|
238
|
+
}),
|
|
239
|
+
output: z.object({
|
|
240
|
+
error: z.string().optional(),
|
|
241
|
+
}),
|
|
280
242
|
};*/
|
|
281
|
-
import { Schema as
|
|
282
|
-
export { Schema as
|
|
283
|
-
export const
|
|
243
|
+
import { Schema as SetPasskey } from "./api/setPasskey"
|
|
244
|
+
export { Schema as SchemaSetPasskey } from "./api/setPasskey"
|
|
245
|
+
export const setPasskey = handleApi({url:"/api/setPasskey",...SetPasskey})
|
|
284
246
|
|
|
285
|
-
// ./api/
|
|
247
|
+
// ./api/getPublicStats.ts API
|
|
286
248
|
|
|
287
249
|
/*
|
|
288
|
-
export const Schema = {
|
|
289
|
-
input: z.strictObject({
|
|
290
|
-
|
|
291
|
-
|
|
292
|
-
|
|
293
|
-
|
|
294
|
-
|
|
295
|
-
|
|
296
|
-
|
|
297
|
-
|
|
298
|
-
|
|
299
|
-
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
250
|
+
export const Schema = {
|
|
251
|
+
input: z.strictObject({}),
|
|
252
|
+
output: z.object({
|
|
253
|
+
profiles: z.number(),
|
|
254
|
+
beatmaps: z.number(),
|
|
255
|
+
scores: z.number(),
|
|
256
|
+
onlineUsers: z.number(),
|
|
257
|
+
countChart: z.array(
|
|
258
|
+
z.object({
|
|
259
|
+
type: z.string(),
|
|
260
|
+
value: z.number(),
|
|
261
|
+
})
|
|
262
|
+
),
|
|
263
|
+
lastBeatmaps: z.array(
|
|
264
|
+
z.object({
|
|
265
|
+
id: z.number().nullable().optional(),
|
|
266
|
+
nominations: z.array(z.number()).nullable().optional(),
|
|
267
|
+
playcount: z.number().nullable().optional(),
|
|
268
|
+
created_at: z.string().nullable().optional(),
|
|
269
|
+
difficulty: z.number().nullable().optional(),
|
|
270
|
+
noteCount: z.number().nullable().optional(),
|
|
271
|
+
length: z.number().nullable().optional(),
|
|
272
|
+
title: z.string().nullable().optional(),
|
|
273
|
+
ranked: z.boolean().nullable().optional(),
|
|
274
|
+
beatmapFile: z.string().nullable().optional(),
|
|
275
|
+
image: z.string().nullable().optional(),
|
|
276
|
+
starRating: z.number().nullable().optional(),
|
|
277
|
+
owner: z.number().nullable().optional(),
|
|
278
|
+
ownerUsername: z.string().nullable().optional(),
|
|
279
|
+
ownerAvatar: z.string().nullable().optional(),
|
|
280
|
+
status: z.string().nullable().optional(),
|
|
281
|
+
})
|
|
282
|
+
),
|
|
283
|
+
topUsers: z.array(
|
|
284
|
+
z.object({
|
|
285
|
+
username: z.string(),
|
|
286
|
+
id: z.number(),
|
|
287
|
+
avatar_url: z.string(),
|
|
288
|
+
skill_points: z.number(),
|
|
289
|
+
})
|
|
290
|
+
),
|
|
291
|
+
lastComments: z.array(
|
|
292
|
+
z.object({
|
|
293
|
+
owner: z.number(),
|
|
294
|
+
content: z.string(),
|
|
295
|
+
username: z.string(),
|
|
296
|
+
beatmapTitle: z.string(),
|
|
297
|
+
beatmapPage: z.number(),
|
|
298
|
+
})
|
|
299
|
+
),
|
|
300
|
+
}),
|
|
308
301
|
};*/
|
|
309
|
-
import { Schema as
|
|
310
|
-
export { Schema as
|
|
311
|
-
export const
|
|
302
|
+
import { Schema as GetPublicStats } from "./api/getPublicStats"
|
|
303
|
+
export { Schema as SchemaGetPublicStats } from "./api/getPublicStats"
|
|
304
|
+
export const getPublicStats = handleApi({url:"/api/getPublicStats",...GetPublicStats})
|
|
312
305
|
|
|
313
|
-
// ./api/
|
|
306
|
+
// ./api/getUserScores.ts API
|
|
314
307
|
|
|
315
308
|
/*
|
|
316
|
-
export const Schema = {
|
|
317
|
-
input: z.strictObject({
|
|
318
|
-
session: z.string(),
|
|
319
|
-
id: z.number(),
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
309
|
+
export const Schema = {
|
|
310
|
+
input: z.strictObject({
|
|
311
|
+
session: z.string(),
|
|
312
|
+
id: z.number(),
|
|
313
|
+
limit: z.number().default(10),
|
|
314
|
+
}),
|
|
315
|
+
output: z.object({
|
|
316
|
+
error: z.string().optional(),
|
|
317
|
+
lastDay: z
|
|
318
|
+
.array(
|
|
319
|
+
z.object({
|
|
320
|
+
awarded_sp: z.number().nullable(),
|
|
321
|
+
beatmapHash: z.string().nullable(),
|
|
322
|
+
created_at: z.string(),
|
|
323
|
+
id: z.number(),
|
|
324
|
+
misses: z.number().nullable(),
|
|
325
|
+
passed: z.boolean().nullable(),
|
|
326
|
+
songId: z.string().nullable(),
|
|
327
|
+
userId: z.number().nullable(),
|
|
328
|
+
beatmapDifficulty: z.number().optional().nullable(),
|
|
329
|
+
beatmapNotes: z.number().optional().nullable(),
|
|
330
|
+
beatmapTitle: z.string().optional().nullable(),
|
|
331
|
+
speed: z.number().optional().nullable(),
|
|
332
|
+
spin: z.boolean().optional().nullable(),
|
|
333
|
+
})
|
|
334
|
+
)
|
|
335
|
+
.optional(),
|
|
336
|
+
top: z
|
|
337
|
+
.array(
|
|
338
|
+
z.object({
|
|
339
|
+
awarded_sp: z.number().nullable(),
|
|
340
|
+
beatmapHash: z.string().nullable(),
|
|
341
|
+
created_at: z.string(),
|
|
342
|
+
id: z.number(),
|
|
343
|
+
misses: z.number().nullable(),
|
|
344
|
+
passed: z.boolean().nullable(),
|
|
345
|
+
rank: z.string().nullable(),
|
|
346
|
+
songId: z.string().nullable(),
|
|
347
|
+
userId: z.number().nullable(),
|
|
348
|
+
beatmapDifficulty: z.number().optional().nullable(),
|
|
349
|
+
beatmapNotes: z.number().optional().nullable(),
|
|
350
|
+
beatmapTitle: z.string().optional().nullable(),
|
|
351
|
+
speed: z.number().optional().nullable(),
|
|
352
|
+
spin: z.boolean().optional().nullable(),
|
|
353
|
+
})
|
|
354
|
+
)
|
|
355
|
+
.optional(),
|
|
356
|
+
stats: z
|
|
357
|
+
.object({
|
|
358
|
+
totalScores: z.number(),
|
|
359
|
+
spinScores: z.number(),
|
|
360
|
+
})
|
|
361
|
+
.optional(),
|
|
362
|
+
}),
|
|
348
363
|
};*/
|
|
349
|
-
import { Schema as
|
|
350
|
-
export { Schema as
|
|
351
|
-
export const
|
|
364
|
+
import { Schema as GetUserScores } from "./api/getUserScores"
|
|
365
|
+
export { Schema as SchemaGetUserScores } from "./api/getUserScores"
|
|
366
|
+
export const getUserScores = handleApi({url:"/api/getUserScores",...GetUserScores})
|
|
352
367
|
|
|
353
|
-
// ./api/
|
|
368
|
+
// ./api/editProfile.ts API
|
|
354
369
|
|
|
355
370
|
/*
|
|
356
|
-
export const Schema = {
|
|
357
|
-
input: z.strictObject({
|
|
358
|
-
session: z.string(),
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
362
|
-
|
|
363
|
-
|
|
364
|
-
|
|
365
|
-
|
|
366
|
-
|
|
367
|
-
|
|
368
|
-
created_at: z.string().nullable().optional(),
|
|
369
|
-
updated_at: z.number().nullable().optional(),
|
|
370
|
-
difficulty: z.number().nullable().optional(),
|
|
371
|
-
noteCount: z.number().nullable().optional(),
|
|
372
|
-
length: z.number().nullable().optional(),
|
|
373
|
-
title: z.string().nullable().optional(),
|
|
374
|
-
ranked: z.boolean().nullable().optional(),
|
|
375
|
-
beatmapFile: z.string().nullable().optional(),
|
|
376
|
-
image: z.string().nullable().optional(),
|
|
377
|
-
starRating: z.number().nullable().optional(),
|
|
378
|
-
owner: z.number().nullable().optional(),
|
|
379
|
-
ownerUsername: z.string().nullable().optional(),
|
|
380
|
-
ownerAvatar: z.string().nullable().optional(),
|
|
381
|
-
status: z.string().nullable().optional(),
|
|
382
|
-
})
|
|
383
|
-
.optional(),
|
|
384
|
-
}),
|
|
371
|
+
export const Schema = {
|
|
372
|
+
input: z.strictObject({
|
|
373
|
+
session: z.string(),
|
|
374
|
+
data: z.object({
|
|
375
|
+
avatar_url: z.string().optional(),
|
|
376
|
+
profile_image: z.string().optional(),
|
|
377
|
+
username: z.string().optional(),
|
|
378
|
+
}),
|
|
379
|
+
}),
|
|
380
|
+
output: z.object({
|
|
381
|
+
error: z.string().optional(),
|
|
382
|
+
}),
|
|
385
383
|
};*/
|
|
386
|
-
import { Schema as
|
|
387
|
-
export { Schema as
|
|
388
|
-
export const
|
|
384
|
+
import { Schema as EditProfile } from "./api/editProfile"
|
|
385
|
+
export { Schema as SchemaEditProfile } from "./api/editProfile"
|
|
386
|
+
export const editProfile = handleApi({url:"/api/editProfile",...EditProfile})
|
|
389
387
|
|
|
390
|
-
// ./api/
|
|
388
|
+
// ./api/getScore.ts API
|
|
391
389
|
|
|
392
390
|
/*
|
|
393
|
-
export const Schema = {
|
|
394
|
-
input: z.strictObject({
|
|
395
|
-
session: z.string(),
|
|
396
|
-
|
|
397
|
-
|
|
398
|
-
|
|
399
|
-
|
|
400
|
-
|
|
401
|
-
|
|
402
|
-
|
|
403
|
-
|
|
404
|
-
|
|
405
|
-
|
|
406
|
-
|
|
407
|
-
|
|
408
|
-
|
|
409
|
-
|
|
410
|
-
|
|
411
|
-
|
|
412
|
-
|
|
413
|
-
|
|
414
|
-
z.
|
|
415
|
-
|
|
416
|
-
|
|
417
|
-
|
|
418
|
-
|
|
419
|
-
noteCount: z.number().nullable().optional(),
|
|
420
|
-
length: z.number().nullable().optional(),
|
|
421
|
-
title: z.string().nullable().optional(),
|
|
422
|
-
ranked: z.boolean().nullable().optional(),
|
|
423
|
-
beatmapFile: z.string().nullable().optional(),
|
|
424
|
-
image: z.string().nullable().optional(),
|
|
425
|
-
starRating: z.number().nullable().optional(),
|
|
426
|
-
owner: z.number().nullable().optional(),
|
|
427
|
-
ownerUsername: z.string().nullable().optional(),
|
|
428
|
-
ownerAvatar: z.string().nullable().optional(),
|
|
429
|
-
status: z.string().nullable().optional(),
|
|
430
|
-
tags: z.string().nullable().optional(),
|
|
431
|
-
})
|
|
432
|
-
)
|
|
433
|
-
.optional(),
|
|
434
|
-
}),
|
|
391
|
+
export const Schema = {
|
|
392
|
+
input: z.strictObject({
|
|
393
|
+
session: z.string(),
|
|
394
|
+
id: z.number(),
|
|
395
|
+
}),
|
|
396
|
+
output: z.object({
|
|
397
|
+
error: z.string().optional(),
|
|
398
|
+
score: z
|
|
399
|
+
.object({
|
|
400
|
+
awarded_sp: z.number().nullable(),
|
|
401
|
+
beatmapHash: z.string().nullable(),
|
|
402
|
+
created_at: z.string(),
|
|
403
|
+
id: z.number(),
|
|
404
|
+
misses: z.number().nullable(),
|
|
405
|
+
passed: z.boolean().nullable(),
|
|
406
|
+
songId: z.string().nullable(),
|
|
407
|
+
userId: z.number().nullable(),
|
|
408
|
+
beatmapDifficulty: z.number().optional().nullable(),
|
|
409
|
+
beatmapNotes: z.number().optional().nullable(),
|
|
410
|
+
beatmapTitle: z.string().optional().nullable(),
|
|
411
|
+
username: z.string().optional().nullable(),
|
|
412
|
+
speed: z.number().optional().nullable(),
|
|
413
|
+
spin: z.boolean().optional().nullable(),
|
|
414
|
+
})
|
|
415
|
+
.optional(),
|
|
416
|
+
}),
|
|
435
417
|
};*/
|
|
436
|
-
import { Schema as
|
|
437
|
-
export { Schema as
|
|
438
|
-
export const
|
|
418
|
+
import { Schema as GetScore } from "./api/getScore"
|
|
419
|
+
export { Schema as SchemaGetScore } from "./api/getScore"
|
|
420
|
+
export const getScore = handleApi({url:"/api/getScore",...GetScore})
|
|
439
421
|
|
|
440
|
-
// ./api/
|
|
422
|
+
// ./api/deleteBeatmapPage.ts API
|
|
441
423
|
|
|
442
424
|
/*
|
|
443
|
-
export const Schema = {
|
|
444
|
-
input: z.strictObject({
|
|
445
|
-
session: z.string(),
|
|
446
|
-
|
|
447
|
-
}),
|
|
448
|
-
output: z.
|
|
449
|
-
error: z.string().optional(),
|
|
450
|
-
|
|
451
|
-
.object({
|
|
452
|
-
starRating: z.number().nullable().optional(),
|
|
453
|
-
})
|
|
454
|
-
.optional(),
|
|
455
|
-
}),
|
|
425
|
+
export const Schema = {
|
|
426
|
+
input: z.strictObject({
|
|
427
|
+
session: z.string(),
|
|
428
|
+
id: z.number(),
|
|
429
|
+
}),
|
|
430
|
+
output: z.strictObject({
|
|
431
|
+
error: z.string().optional(),
|
|
432
|
+
}),
|
|
456
433
|
};*/
|
|
457
|
-
import { Schema as
|
|
458
|
-
export { Schema as
|
|
459
|
-
export const
|
|
434
|
+
import { Schema as DeleteBeatmapPage } from "./api/deleteBeatmapPage"
|
|
435
|
+
export { Schema as SchemaDeleteBeatmapPage } from "./api/deleteBeatmapPage"
|
|
436
|
+
export const deleteBeatmapPage = handleApi({url:"/api/deleteBeatmapPage",...DeleteBeatmapPage})
|
|
460
437
|
|
|
461
|
-
// ./api/
|
|
438
|
+
// ./api/getBadgedUsers.ts API
|
|
462
439
|
|
|
463
440
|
/*
|
|
464
|
-
export const Schema = {
|
|
465
|
-
input: z.strictObject({
|
|
466
|
-
|
|
467
|
-
|
|
468
|
-
|
|
469
|
-
|
|
470
|
-
|
|
471
|
-
|
|
472
|
-
|
|
473
|
-
|
|
474
|
-
|
|
475
|
-
|
|
476
|
-
|
|
477
|
-
|
|
478
|
-
|
|
479
|
-
|
|
480
|
-
about_me: z.string().nullable(),
|
|
481
|
-
avatar_url: z.string().nullable(),
|
|
482
|
-
profile_image: z.string().nullable(),
|
|
483
|
-
badges: z.any().nullable(),
|
|
484
|
-
created_at: z.number().nullable(),
|
|
485
|
-
flag: z.string().nullable(),
|
|
486
|
-
id: z.number(),
|
|
487
|
-
uid: z.string().nullable(),
|
|
488
|
-
ban: z.string().nullable(),
|
|
489
|
-
username: z.string().nullable(),
|
|
490
|
-
verified: z.boolean().nullable(),
|
|
491
|
-
play_count: z.number().nullable(),
|
|
492
|
-
skill_points: z.number().nullable(),
|
|
493
|
-
squares_hit: z.number().nullable(),
|
|
494
|
-
total_score: z.number().nullable(),
|
|
495
|
-
})
|
|
496
|
-
),
|
|
497
|
-
}),
|
|
441
|
+
export const Schema = {
|
|
442
|
+
input: z.strictObject({
|
|
443
|
+
badge: z.string(),
|
|
444
|
+
}),
|
|
445
|
+
output: z.object({
|
|
446
|
+
error: z.string().optional(),
|
|
447
|
+
leaderboard: z
|
|
448
|
+
.array(
|
|
449
|
+
z.object({
|
|
450
|
+
flag: z.string().nullable(),
|
|
451
|
+
id: z.number(),
|
|
452
|
+
username: z.string().nullable(),
|
|
453
|
+
})
|
|
454
|
+
)
|
|
455
|
+
.optional(),
|
|
456
|
+
}),
|
|
498
457
|
};*/
|
|
499
|
-
import { Schema as
|
|
500
|
-
export { Schema as
|
|
501
|
-
export const
|
|
458
|
+
import { Schema as GetBadgedUsers } from "./api/getBadgedUsers"
|
|
459
|
+
export { Schema as SchemaGetBadgedUsers } from "./api/getBadgedUsers"
|
|
460
|
+
export const getBadgedUsers = handleApi({url:"/api/getBadgedUsers",...GetBadgedUsers})
|
|
502
461
|
|
|
503
|
-
// ./api/
|
|
462
|
+
// ./api/getBeatmapComments.ts API
|
|
504
463
|
|
|
505
464
|
/*
|
|
506
|
-
export const Schema = {
|
|
507
|
-
input: z.strictObject({
|
|
508
|
-
|
|
509
|
-
|
|
510
|
-
|
|
511
|
-
|
|
512
|
-
|
|
513
|
-
|
|
514
|
-
|
|
515
|
-
|
|
516
|
-
|
|
517
|
-
|
|
518
|
-
|
|
519
|
-
|
|
520
|
-
|
|
521
|
-
|
|
522
|
-
|
|
523
|
-
|
|
524
|
-
|
|
525
|
-
|
|
526
|
-
length: z.number().nullable().optional(),
|
|
527
|
-
title: z.string().nullable().optional(),
|
|
528
|
-
ranked: z.boolean().nullable().optional(),
|
|
529
|
-
beatmapFile: z.string().nullable().optional(),
|
|
530
|
-
image: z.string().nullable().optional(),
|
|
531
|
-
starRating: z.number().nullable().optional(),
|
|
532
|
-
owner: z.number().nullable().optional(),
|
|
533
|
-
ownerUsername: z.string().nullable().optional(),
|
|
534
|
-
status: z.string().nullable().optional(),
|
|
535
|
-
tags: z.string().nullable().optional(),
|
|
536
|
-
})
|
|
537
|
-
),
|
|
538
|
-
}),
|
|
539
|
-
error: z.string().optional(),
|
|
540
|
-
}),
|
|
465
|
+
export const Schema = {
|
|
466
|
+
input: z.strictObject({
|
|
467
|
+
page: z.number(),
|
|
468
|
+
}),
|
|
469
|
+
output: z.strictObject({
|
|
470
|
+
error: z.string().optional(),
|
|
471
|
+
comments: z.array(
|
|
472
|
+
z.object({
|
|
473
|
+
beatmapPage: z.number(),
|
|
474
|
+
content: z.string().nullable(),
|
|
475
|
+
owner: z.number(),
|
|
476
|
+
created_at: z.string(),
|
|
477
|
+
profiles: z.object({
|
|
478
|
+
avatar_url: z.string().nullable(),
|
|
479
|
+
username: z.string().nullable(),
|
|
480
|
+
badges: z.any().nullable(),
|
|
481
|
+
}),
|
|
482
|
+
})
|
|
483
|
+
),
|
|
484
|
+
}),
|
|
541
485
|
};*/
|
|
542
|
-
import { Schema as
|
|
543
|
-
export { Schema as
|
|
544
|
-
export const
|
|
486
|
+
import { Schema as GetBeatmapComments } from "./api/getBeatmapComments"
|
|
487
|
+
export { Schema as SchemaGetBeatmapComments } from "./api/getBeatmapComments"
|
|
488
|
+
export const getBeatmapComments = handleApi({url:"/api/getBeatmapComments",...GetBeatmapComments})
|
|
545
489
|
|
|
546
490
|
// ./api/getCollections.ts API
|
|
547
491
|
|
|
548
492
|
/*
|
|
549
|
-
export const Schema = {
|
|
550
|
-
input: z.strictObject({
|
|
551
|
-
session: z.string(),
|
|
552
|
-
page: z.number().optional().default(1),
|
|
553
|
-
itemsPerPage: z.number().optional().default(10),
|
|
554
|
-
|
|
555
|
-
|
|
556
|
-
|
|
557
|
-
|
|
558
|
-
|
|
559
|
-
|
|
560
|
-
|
|
561
|
-
|
|
562
|
-
|
|
563
|
-
|
|
564
|
-
|
|
565
|
-
|
|
566
|
-
|
|
567
|
-
|
|
568
|
-
|
|
569
|
-
|
|
570
|
-
|
|
571
|
-
|
|
572
|
-
|
|
573
|
-
|
|
574
|
-
|
|
575
|
-
|
|
576
|
-
|
|
493
|
+
export const Schema = {
|
|
494
|
+
input: z.strictObject({
|
|
495
|
+
session: z.string(),
|
|
496
|
+
page: z.number().optional().default(1),
|
|
497
|
+
itemsPerPage: z.number().optional().default(10),
|
|
498
|
+
owner: z.number().optional(), // Added owner field
|
|
499
|
+
search: z.string().optional(), // Added string field
|
|
500
|
+
}),
|
|
501
|
+
output: z.object({
|
|
502
|
+
collections: z.array(
|
|
503
|
+
z.object({
|
|
504
|
+
id: z.number(),
|
|
505
|
+
title: z.string(),
|
|
506
|
+
description: z.string(),
|
|
507
|
+
owner: z.number(),
|
|
508
|
+
ownerUsername: z.string(),
|
|
509
|
+
ownerAvatarUrl: z.string(),
|
|
510
|
+
beatmapCount: z.number(),
|
|
511
|
+
starRatingDistribution: z.array(
|
|
512
|
+
z.object({
|
|
513
|
+
stars: z.number(),
|
|
514
|
+
count: z.number(),
|
|
515
|
+
})
|
|
516
|
+
),
|
|
517
|
+
createdAt: z.string(),
|
|
518
|
+
})
|
|
519
|
+
),
|
|
520
|
+
totalPages: z.number(),
|
|
521
|
+
error: z.string().optional(),
|
|
522
|
+
}),
|
|
577
523
|
};*/
|
|
578
524
|
import { Schema as GetCollections } from "./api/getCollections"
|
|
579
525
|
export { Schema as SchemaGetCollections } from "./api/getCollections"
|
|
580
526
|
export const getCollections = handleApi({url:"/api/getCollections",...GetCollections})
|
|
581
527
|
|
|
582
|
-
// ./api/
|
|
528
|
+
// ./api/getTimestamp.ts API
|
|
583
529
|
|
|
584
530
|
/*
|
|
585
|
-
export const Schema = {
|
|
586
|
-
input: z.strictObject({
|
|
587
|
-
|
|
588
|
-
|
|
589
|
-
|
|
590
|
-
spin: z.boolean().default(false),
|
|
591
|
-
}),
|
|
592
|
-
output: z.object({
|
|
593
|
-
error: z.string().optional(),
|
|
594
|
-
total: z.number(),
|
|
595
|
-
viewPerPage: z.number(),
|
|
596
|
-
currentPage: z.number(),
|
|
597
|
-
userPosition: z.number(),
|
|
598
|
-
leaderboard: z
|
|
599
|
-
.array(
|
|
600
|
-
z.object({
|
|
601
|
-
flag: z.string().nullable(),
|
|
602
|
-
id: z.number(),
|
|
603
|
-
username: z.string().nullable(),
|
|
604
|
-
play_count: z.number().nullable(),
|
|
605
|
-
skill_points: z.number().nullable(),
|
|
606
|
-
spin_skill_points: z.number().nullable(),
|
|
607
|
-
total_score: z.number().nullable(),
|
|
608
|
-
clans: z
|
|
609
|
-
.object({
|
|
610
|
-
id: z.number(),
|
|
611
|
-
acronym: z.string(),
|
|
612
|
-
})
|
|
613
|
-
.optional()
|
|
614
|
-
.nullable(),
|
|
615
|
-
})
|
|
616
|
-
)
|
|
617
|
-
.optional(),
|
|
618
|
-
}),
|
|
531
|
+
export const Schema = {
|
|
532
|
+
input: z.strictObject({}),
|
|
533
|
+
output: z.object({
|
|
534
|
+
time: z.number(),
|
|
535
|
+
}),
|
|
619
536
|
};*/
|
|
620
|
-
import { Schema as
|
|
621
|
-
export { Schema as
|
|
622
|
-
export const
|
|
537
|
+
import { Schema as GetTimestamp } from "./api/getTimestamp"
|
|
538
|
+
export { Schema as SchemaGetTimestamp } from "./api/getTimestamp"
|
|
539
|
+
export const getTimestamp = handleApi({url:"/api/getTimestamp",...GetTimestamp})
|
|
623
540
|
|
|
624
|
-
// ./api/
|
|
541
|
+
// ./api/deleteCollection.ts API
|
|
625
542
|
|
|
626
543
|
/*
|
|
627
|
-
export const Schema = {
|
|
628
|
-
input: z.strictObject({
|
|
629
|
-
|
|
630
|
-
|
|
631
|
-
|
|
632
|
-
|
|
633
|
-
|
|
634
|
-
}),
|
|
635
|
-
output: z.strictObject({
|
|
636
|
-
error: z.string().optional(),
|
|
637
|
-
url: z.string().optional(),
|
|
638
|
-
objectKey: z.string().optional(),
|
|
639
|
-
}),
|
|
544
|
+
export const Schema = {
|
|
545
|
+
input: z.strictObject({
|
|
546
|
+
session: z.string(),
|
|
547
|
+
collection: z.number(),
|
|
548
|
+
}),
|
|
549
|
+
output: z.object({
|
|
550
|
+
error: z.string().optional(),
|
|
551
|
+
}),
|
|
640
552
|
};*/
|
|
641
|
-
import { Schema as
|
|
642
|
-
export { Schema as
|
|
643
|
-
export const
|
|
553
|
+
import { Schema as DeleteCollection } from "./api/deleteCollection"
|
|
554
|
+
export { Schema as SchemaDeleteCollection } from "./api/deleteCollection"
|
|
555
|
+
export const deleteCollection = handleApi({url:"/api/deleteCollection",...DeleteCollection})
|
|
644
556
|
|
|
645
|
-
// ./api/
|
|
557
|
+
// ./api/editCollection.ts API
|
|
646
558
|
|
|
647
559
|
/*
|
|
648
|
-
export const Schema = {
|
|
649
|
-
input: z.strictObject({
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
}),
|
|
656
|
-
output: z.object({
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
}),
|
|
560
|
+
export const Schema = {
|
|
561
|
+
input: z.strictObject({
|
|
562
|
+
session: z.string(),
|
|
563
|
+
collection: z.number(),
|
|
564
|
+
title: z.string(),
|
|
565
|
+
description: z.string(),
|
|
566
|
+
isList: z.boolean(),
|
|
567
|
+
}),
|
|
568
|
+
output: z.object({
|
|
569
|
+
error: z.string().optional(),
|
|
570
|
+
}),
|
|
660
571
|
};*/
|
|
661
|
-
import { Schema as
|
|
662
|
-
export { Schema as
|
|
663
|
-
export const
|
|
572
|
+
import { Schema as EditCollection } from "./api/editCollection"
|
|
573
|
+
export { Schema as SchemaEditCollection } from "./api/editCollection"
|
|
574
|
+
export const editCollection = handleApi({url:"/api/editCollection",...EditCollection})
|
|
664
575
|
|
|
665
|
-
// ./api/
|
|
576
|
+
// ./api/getBeatmaps.ts API
|
|
666
577
|
|
|
667
578
|
/*
|
|
668
|
-
export const Schema = {
|
|
669
|
-
input: z.strictObject({
|
|
670
|
-
session: z.string(),
|
|
671
|
-
|
|
672
|
-
|
|
673
|
-
|
|
674
|
-
|
|
675
|
-
|
|
676
|
-
|
|
677
|
-
|
|
678
|
-
|
|
679
|
-
|
|
680
|
-
|
|
681
|
-
|
|
682
|
-
|
|
683
|
-
|
|
684
|
-
|
|
685
|
-
|
|
686
|
-
|
|
687
|
-
|
|
688
|
-
|
|
689
|
-
|
|
690
|
-
|
|
691
|
-
|
|
692
|
-
|
|
693
|
-
|
|
694
|
-
|
|
695
|
-
.
|
|
696
|
-
|
|
697
|
-
|
|
698
|
-
|
|
699
|
-
.optional()
|
|
700
|
-
.nullable(),
|
|
701
|
-
|
|
702
|
-
|
|
703
|
-
|
|
579
|
+
export const Schema = {
|
|
580
|
+
input: z.strictObject({
|
|
581
|
+
session: z.string(),
|
|
582
|
+
textFilter: z.string().optional(),
|
|
583
|
+
authorFilter: z.string().optional(),
|
|
584
|
+
tagsFilter: z.string().optional(),
|
|
585
|
+
page: z.number().default(1),
|
|
586
|
+
maxStars: z.number().optional(),
|
|
587
|
+
minLength: z.number().optional(),
|
|
588
|
+
maxLength: z.number().optional(),
|
|
589
|
+
minStars: z.number().optional(),
|
|
590
|
+
creator: z.number().optional(),
|
|
591
|
+
status: z.string().optional(),
|
|
592
|
+
}),
|
|
593
|
+
output: z.object({
|
|
594
|
+
error: z.string().optional(),
|
|
595
|
+
total: z.number(),
|
|
596
|
+
viewPerPage: z.number(),
|
|
597
|
+
currentPage: z.number(),
|
|
598
|
+
beatmaps: z
|
|
599
|
+
.array(
|
|
600
|
+
z.object({
|
|
601
|
+
id: z.number(),
|
|
602
|
+
playcount: z.number().nullable().optional(),
|
|
603
|
+
created_at: z.string().nullable().optional(),
|
|
604
|
+
difficulty: z.number().nullable().optional(),
|
|
605
|
+
noteCount: z.number().nullable().optional(),
|
|
606
|
+
length: z.number().nullable().optional(),
|
|
607
|
+
title: z.string().nullable().optional(),
|
|
608
|
+
ranked: z.boolean().nullable().optional(),
|
|
609
|
+
beatmapFile: z.string().nullable().optional(),
|
|
610
|
+
image: z.string().nullable().optional(),
|
|
611
|
+
starRating: z.number().nullable().optional(),
|
|
612
|
+
owner: z.number().nullable().optional(),
|
|
613
|
+
ownerUsername: z.string().nullable().optional(),
|
|
614
|
+
ownerAvatar: z.string().nullable().optional(),
|
|
615
|
+
status: z.string().nullable().optional(),
|
|
616
|
+
tags: z.string().nullable().optional(),
|
|
617
|
+
})
|
|
618
|
+
)
|
|
619
|
+
.optional(),
|
|
620
|
+
}),
|
|
704
621
|
};*/
|
|
705
|
-
import { Schema as
|
|
706
|
-
export { Schema as
|
|
707
|
-
export const
|
|
622
|
+
import { Schema as GetBeatmaps } from "./api/getBeatmaps"
|
|
623
|
+
export { Schema as SchemaGetBeatmaps } from "./api/getBeatmaps"
|
|
624
|
+
export const getBeatmaps = handleApi({url:"/api/getBeatmaps",...GetBeatmaps})
|
|
708
625
|
|
|
709
|
-
// ./api/
|
|
626
|
+
// ./api/postBeatmapComment.ts API
|
|
710
627
|
|
|
711
628
|
/*
|
|
712
|
-
export const Schema = {
|
|
713
|
-
input: z.strictObject({
|
|
714
|
-
|
|
715
|
-
|
|
716
|
-
|
|
717
|
-
|
|
718
|
-
|
|
719
|
-
|
|
720
|
-
|
|
721
|
-
type: z.string(),
|
|
722
|
-
value: z.number(),
|
|
723
|
-
})
|
|
724
|
-
),
|
|
725
|
-
lastBeatmaps: z.array(
|
|
726
|
-
z.object({
|
|
727
|
-
id: z.number().nullable().optional(),
|
|
728
|
-
nominations: z.array(z.number()).nullable().optional(),
|
|
729
|
-
playcount: z.number().nullable().optional(),
|
|
730
|
-
created_at: z.string().nullable().optional(),
|
|
731
|
-
difficulty: z.number().nullable().optional(),
|
|
732
|
-
noteCount: z.number().nullable().optional(),
|
|
733
|
-
length: z.number().nullable().optional(),
|
|
734
|
-
title: z.string().nullable().optional(),
|
|
735
|
-
ranked: z.boolean().nullable().optional(),
|
|
736
|
-
beatmapFile: z.string().nullable().optional(),
|
|
737
|
-
image: z.string().nullable().optional(),
|
|
738
|
-
starRating: z.number().nullable().optional(),
|
|
739
|
-
owner: z.number().nullable().optional(),
|
|
740
|
-
ownerUsername: z.string().nullable().optional(),
|
|
741
|
-
ownerAvatar: z.string().nullable().optional(),
|
|
742
|
-
status: z.string().nullable().optional(),
|
|
743
|
-
})
|
|
744
|
-
),
|
|
745
|
-
topUsers: z.array(
|
|
746
|
-
z.object({
|
|
747
|
-
username: z.string(),
|
|
748
|
-
id: z.number(),
|
|
749
|
-
avatar_url: z.string(),
|
|
750
|
-
skill_points: z.number(),
|
|
751
|
-
})
|
|
752
|
-
),
|
|
753
|
-
lastComments: z.array(
|
|
754
|
-
z.object({
|
|
755
|
-
owner: z.number(),
|
|
756
|
-
content: z.string(),
|
|
757
|
-
username: z.string(),
|
|
758
|
-
beatmapTitle: z.string(),
|
|
759
|
-
beatmapPage: z.number(),
|
|
760
|
-
})
|
|
761
|
-
),
|
|
762
|
-
}),
|
|
629
|
+
export const Schema = {
|
|
630
|
+
input: z.strictObject({
|
|
631
|
+
session: z.string(),
|
|
632
|
+
page: z.number(),
|
|
633
|
+
content: z.string(),
|
|
634
|
+
}),
|
|
635
|
+
output: z.strictObject({
|
|
636
|
+
error: z.string().optional(),
|
|
637
|
+
}),
|
|
763
638
|
};*/
|
|
764
|
-
import { Schema as
|
|
765
|
-
export { Schema as
|
|
766
|
-
export const
|
|
639
|
+
import { Schema as PostBeatmapComment } from "./api/postBeatmapComment"
|
|
640
|
+
export { Schema as SchemaPostBeatmapComment } from "./api/postBeatmapComment"
|
|
641
|
+
export const postBeatmapComment = handleApi({url:"/api/postBeatmapComment",...PostBeatmapComment})
|
|
767
642
|
|
|
768
|
-
// ./api/
|
|
643
|
+
// ./api/getProfile.ts API
|
|
769
644
|
|
|
770
645
|
/*
|
|
771
|
-
export const Schema = {
|
|
772
|
-
input: z.strictObject({
|
|
773
|
-
session: z.string(),
|
|
774
|
-
|
|
775
|
-
}),
|
|
776
|
-
output: z.object({
|
|
777
|
-
error: z.string().optional(),
|
|
778
|
-
|
|
779
|
-
.object({
|
|
780
|
-
|
|
781
|
-
|
|
782
|
-
|
|
783
|
-
|
|
646
|
+
export const Schema = {
|
|
647
|
+
input: z.strictObject({
|
|
648
|
+
session: z.string(),
|
|
649
|
+
id: z.number().nullable().optional(),
|
|
650
|
+
}),
|
|
651
|
+
output: z.object({
|
|
652
|
+
error: z.string().optional(),
|
|
653
|
+
user: z
|
|
654
|
+
.object({
|
|
655
|
+
about_me: z.string().nullable(),
|
|
656
|
+
avatar_url: z.string().nullable(),
|
|
657
|
+
profile_image: z.string().nullable(),
|
|
658
|
+
badges: z.any().nullable(),
|
|
659
|
+
created_at: z.number().nullable(),
|
|
660
|
+
flag: z.string().nullable(),
|
|
661
|
+
id: z.number(),
|
|
662
|
+
uid: z.string().nullable(),
|
|
663
|
+
ban: z.string().nullable(),
|
|
664
|
+
username: z.string().nullable(),
|
|
665
|
+
verified: z.boolean().nullable(),
|
|
666
|
+
play_count: z.number().nullable(),
|
|
667
|
+
skill_points: z.number().nullable(),
|
|
668
|
+
squares_hit: z.number().nullable(),
|
|
669
|
+
total_score: z.number().nullable(),
|
|
670
|
+
position: z.number().nullable(),
|
|
671
|
+
is_online: z.boolean(),
|
|
672
|
+
clans: z
|
|
673
|
+
.object({
|
|
674
|
+
id: z.number(),
|
|
675
|
+
acronym: z.string(),
|
|
676
|
+
})
|
|
677
|
+
.optional()
|
|
678
|
+
.nullable(),
|
|
679
|
+
})
|
|
680
|
+
.optional(),
|
|
681
|
+
}),
|
|
784
682
|
};*/
|
|
785
|
-
import { Schema as
|
|
786
|
-
export { Schema as
|
|
787
|
-
export const
|
|
683
|
+
import { Schema as GetProfile } from "./api/getProfile"
|
|
684
|
+
export { Schema as SchemaGetProfile } from "./api/getProfile"
|
|
685
|
+
export const getProfile = handleApi({url:"/api/getProfile",...GetProfile})
|
|
788
686
|
|
|
789
|
-
// ./api/
|
|
687
|
+
// ./api/editClan.ts API
|
|
790
688
|
|
|
791
689
|
/*
|
|
792
|
-
export const Schema = {
|
|
793
|
-
input: z.strictObject({
|
|
794
|
-
session: z.string(),
|
|
795
|
-
id: z.number(),
|
|
796
|
-
|
|
797
|
-
|
|
798
|
-
|
|
799
|
-
|
|
800
|
-
|
|
801
|
-
|
|
802
|
-
|
|
803
|
-
|
|
804
|
-
id: z.number(),
|
|
805
|
-
misses: z.number().nullable(),
|
|
806
|
-
passed: z.boolean().nullable(),
|
|
807
|
-
songId: z.string().nullable(),
|
|
808
|
-
userId: z.number().nullable(),
|
|
809
|
-
beatmapDifficulty: z.number().optional().nullable(),
|
|
810
|
-
beatmapNotes: z.number().optional().nullable(),
|
|
811
|
-
beatmapTitle: z.string().optional().nullable(),
|
|
812
|
-
username: z.string().optional().nullable(),
|
|
813
|
-
speed: z.number().optional().nullable(),
|
|
814
|
-
spin: z.boolean().optional().nullable(),
|
|
815
|
-
})
|
|
816
|
-
.optional(),
|
|
817
|
-
}),
|
|
690
|
+
export const Schema = {
|
|
691
|
+
input: z.strictObject({
|
|
692
|
+
session: z.string(),
|
|
693
|
+
id: z.number(),
|
|
694
|
+
name: z.string(),
|
|
695
|
+
avatar_url: z.string(),
|
|
696
|
+
description: z.string(),
|
|
697
|
+
acronym: z.string(),
|
|
698
|
+
}),
|
|
699
|
+
output: z.object({
|
|
700
|
+
error: z.string().optional(),
|
|
701
|
+
}),
|
|
818
702
|
};*/
|
|
819
|
-
import { Schema as
|
|
820
|
-
export { Schema as
|
|
821
|
-
export const
|
|
703
|
+
import { Schema as EditClan } from "./api/editClan"
|
|
704
|
+
export { Schema as SchemaEditClan } from "./api/editClan"
|
|
705
|
+
export const editClan = handleApi({url:"/api/editClan",...EditClan})
|
|
822
706
|
|
|
823
|
-
// ./api/
|
|
707
|
+
// ./api/getClan.ts API
|
|
824
708
|
|
|
825
709
|
/*
|
|
826
|
-
export const Schema = {
|
|
827
|
-
input: z.strictObject({
|
|
828
|
-
|
|
829
|
-
|
|
830
|
-
}),
|
|
710
|
+
export const Schema = {
|
|
711
|
+
input: z.strictObject({
|
|
712
|
+
session: z.string(),
|
|
713
|
+
id: z.number(),
|
|
714
|
+
}),
|
|
715
|
+
output: z.object({
|
|
716
|
+
error: z.string().optional(),
|
|
717
|
+
acronym: z.string(),
|
|
718
|
+
avatar_url: z.string(),
|
|
719
|
+
created_at: z.number(),
|
|
720
|
+
description: z.string(),
|
|
721
|
+
id: z.number(),
|
|
722
|
+
name: z.string(),
|
|
723
|
+
owner: z.number(),
|
|
724
|
+
users: z.array(
|
|
725
|
+
z.object({
|
|
726
|
+
about_me: z.string().nullable(),
|
|
727
|
+
avatar_url: z.string().nullable(),
|
|
728
|
+
profile_image: z.string().nullable(),
|
|
729
|
+
badges: z.any().nullable(),
|
|
730
|
+
created_at: z.number().nullable(),
|
|
731
|
+
flag: z.string().nullable(),
|
|
732
|
+
id: z.number(),
|
|
733
|
+
uid: z.string().nullable(),
|
|
734
|
+
ban: z.string().nullable(),
|
|
735
|
+
username: z.string().nullable(),
|
|
736
|
+
verified: z.boolean().nullable(),
|
|
737
|
+
play_count: z.number().nullable(),
|
|
738
|
+
skill_points: z.number().nullable(),
|
|
739
|
+
squares_hit: z.number().nullable(),
|
|
740
|
+
total_score: z.number().nullable(),
|
|
741
|
+
})
|
|
742
|
+
),
|
|
743
|
+
}),
|
|
831
744
|
};*/
|
|
832
|
-
import { Schema as
|
|
833
|
-
export { Schema as
|
|
834
|
-
export const
|
|
745
|
+
import { Schema as GetClan } from "./api/getClan"
|
|
746
|
+
export { Schema as SchemaGetClan } from "./api/getClan"
|
|
747
|
+
export const getClan = handleApi({url:"/api/getClan",...GetClan})
|
|
835
748
|
|
|
836
|
-
// ./api/
|
|
749
|
+
// ./api/getBeatmapPageById.ts API
|
|
837
750
|
|
|
838
751
|
/*
|
|
839
|
-
export const Schema = {
|
|
840
|
-
input: z.strictObject({
|
|
841
|
-
session: z.string(),
|
|
842
|
-
|
|
843
|
-
|
|
844
|
-
|
|
845
|
-
|
|
846
|
-
|
|
847
|
-
|
|
848
|
-
|
|
849
|
-
z.
|
|
850
|
-
|
|
851
|
-
|
|
852
|
-
|
|
853
|
-
|
|
854
|
-
|
|
855
|
-
|
|
856
|
-
|
|
857
|
-
|
|
858
|
-
|
|
859
|
-
|
|
860
|
-
|
|
861
|
-
|
|
862
|
-
|
|
863
|
-
|
|
864
|
-
|
|
865
|
-
|
|
866
|
-
|
|
867
|
-
|
|
868
|
-
z.object({
|
|
869
|
-
awarded_sp: z.number().nullable(),
|
|
870
|
-
beatmapHash: z.string().nullable(),
|
|
871
|
-
created_at: z.string(),
|
|
872
|
-
id: z.number(),
|
|
873
|
-
misses: z.number().nullable(),
|
|
874
|
-
passed: z.boolean().nullable(),
|
|
875
|
-
rank: z.string().nullable(),
|
|
876
|
-
songId: z.string().nullable(),
|
|
877
|
-
userId: z.number().nullable(),
|
|
878
|
-
beatmapDifficulty: z.number().optional().nullable(),
|
|
879
|
-
beatmapNotes: z.number().optional().nullable(),
|
|
880
|
-
beatmapTitle: z.string().optional().nullable(),
|
|
881
|
-
speed: z.number().optional().nullable(),
|
|
882
|
-
spin: z.boolean().optional().nullable(),
|
|
883
|
-
})
|
|
884
|
-
)
|
|
885
|
-
.optional(),
|
|
886
|
-
stats: z
|
|
887
|
-
.object({
|
|
888
|
-
totalScores: z.number(),
|
|
889
|
-
spinScores: z.number(),
|
|
890
|
-
})
|
|
891
|
-
.optional(),
|
|
892
|
-
}),
|
|
752
|
+
export const Schema = {
|
|
753
|
+
input: z.strictObject({
|
|
754
|
+
session: z.string(),
|
|
755
|
+
mapId: z.string(),
|
|
756
|
+
}),
|
|
757
|
+
output: z.object({
|
|
758
|
+
error: z.string().optional(),
|
|
759
|
+
beatmap: z
|
|
760
|
+
.object({
|
|
761
|
+
id: z.number().nullable().optional(),
|
|
762
|
+
nominations: z.array(z.number()).nullable().optional(),
|
|
763
|
+
playcount: z.number().nullable().optional(),
|
|
764
|
+
created_at: z.string().nullable().optional(),
|
|
765
|
+
updated_at: z.number().nullable().optional(),
|
|
766
|
+
difficulty: z.number().nullable().optional(),
|
|
767
|
+
noteCount: z.number().nullable().optional(),
|
|
768
|
+
length: z.number().nullable().optional(),
|
|
769
|
+
title: z.string().nullable().optional(),
|
|
770
|
+
ranked: z.boolean().nullable().optional(),
|
|
771
|
+
beatmapFile: z.string().nullable().optional(),
|
|
772
|
+
image: z.string().nullable().optional(),
|
|
773
|
+
starRating: z.number().nullable().optional(),
|
|
774
|
+
owner: z.number().nullable().optional(),
|
|
775
|
+
ownerUsername: z.string().nullable().optional(),
|
|
776
|
+
ownerAvatar: z.string().nullable().optional(),
|
|
777
|
+
status: z.string().nullable().optional(),
|
|
778
|
+
})
|
|
779
|
+
.optional(),
|
|
780
|
+
}),
|
|
893
781
|
};*/
|
|
894
|
-
import { Schema as
|
|
895
|
-
export { Schema as
|
|
896
|
-
export const
|
|
782
|
+
import { Schema as GetBeatmapPageById } from "./api/getBeatmapPageById"
|
|
783
|
+
export { Schema as SchemaGetBeatmapPageById } from "./api/getBeatmapPageById"
|
|
784
|
+
export const getBeatmapPageById = handleApi({url:"/api/getBeatmapPageById",...GetBeatmapPageById})
|
|
897
785
|
|
|
898
|
-
// ./api/
|
|
786
|
+
// ./api/getBeatmapPage.ts API
|
|
899
787
|
|
|
900
788
|
/*
|
|
901
|
-
export const Schema = {
|
|
902
|
-
input: z.strictObject({
|
|
903
|
-
session: z.string(),
|
|
904
|
-
|
|
905
|
-
}),
|
|
906
|
-
output: z.object({
|
|
907
|
-
error: z.string().optional(),
|
|
908
|
-
|
|
789
|
+
export const Schema = {
|
|
790
|
+
input: z.strictObject({
|
|
791
|
+
session: z.string(),
|
|
792
|
+
id: z.number(),
|
|
793
|
+
}),
|
|
794
|
+
output: z.object({
|
|
795
|
+
error: z.string().optional(),
|
|
796
|
+
beatmap: z
|
|
797
|
+
.object({
|
|
798
|
+
id: z.number().nullable().optional(),
|
|
799
|
+
nominations: z.array(z.number()).nullable().optional(),
|
|
800
|
+
playcount: z.number().nullable().optional(),
|
|
801
|
+
created_at: z.string().nullable().optional(),
|
|
802
|
+
updated_at: z.number().nullable().optional(),
|
|
803
|
+
difficulty: z.number().nullable().optional(),
|
|
804
|
+
noteCount: z.number().nullable().optional(),
|
|
805
|
+
length: z.number().nullable().optional(),
|
|
806
|
+
title: z.string().nullable().optional(),
|
|
807
|
+
ranked: z.boolean().nullable().optional(),
|
|
808
|
+
beatmapFile: z.string().nullable().optional(),
|
|
809
|
+
image: z.string().nullable().optional(),
|
|
810
|
+
imageLarge: z.string().nullable().optional(),
|
|
811
|
+
starRating: z.number().nullable().optional(),
|
|
812
|
+
owner: z.number().nullable().optional(),
|
|
813
|
+
ownerUsername: z.string().nullable().optional(),
|
|
814
|
+
ownerAvatar: z.string().nullable().optional(),
|
|
815
|
+
status: z.string().nullable().optional(),
|
|
816
|
+
description: z.string().nullable().optional(),
|
|
817
|
+
tags: z.string().nullable().optional(),
|
|
818
|
+
})
|
|
819
|
+
.optional(),
|
|
820
|
+
}),
|
|
909
821
|
};*/
|
|
910
|
-
import { Schema as
|
|
911
|
-
export { Schema as
|
|
912
|
-
export const
|
|
822
|
+
import { Schema as GetBeatmapPage } from "./api/getBeatmapPage"
|
|
823
|
+
export { Schema as SchemaGetBeatmapPage } from "./api/getBeatmapPage"
|
|
824
|
+
export const getBeatmapPage = handleApi({url:"/api/getBeatmapPage",...GetBeatmapPage})
|
|
913
825
|
|
|
914
|
-
// ./api/
|
|
826
|
+
// ./api/createBeatmap.ts API
|
|
915
827
|
|
|
916
828
|
/*
|
|
917
|
-
export const Schema = {
|
|
918
|
-
input: z.strictObject({
|
|
919
|
-
|
|
920
|
-
|
|
921
|
-
|
|
922
|
-
}),
|
|
923
|
-
output: z.strictObject({
|
|
924
|
-
|
|
925
|
-
|
|
829
|
+
export const Schema = {
|
|
830
|
+
input: z.strictObject({
|
|
831
|
+
url: z.string(),
|
|
832
|
+
session: z.string(),
|
|
833
|
+
updateFlag: z.boolean().optional(),
|
|
834
|
+
}),
|
|
835
|
+
output: z.strictObject({
|
|
836
|
+
hash: z.string().optional(),
|
|
837
|
+
error: z.string().optional(),
|
|
838
|
+
}),
|
|
926
839
|
};*/
|
|
927
|
-
import { Schema as
|
|
928
|
-
export { Schema as
|
|
929
|
-
export const
|
|
840
|
+
import { Schema as CreateBeatmap } from "./api/createBeatmap"
|
|
841
|
+
export { Schema as SchemaCreateBeatmap } from "./api/createBeatmap"
|
|
842
|
+
export const createBeatmap = handleApi({url:"/api/createBeatmap",...CreateBeatmap})
|
|
930
843
|
|
|
931
|
-
// ./api/
|
|
844
|
+
// ./api/getLeaderboard.ts API
|
|
932
845
|
|
|
933
846
|
/*
|
|
934
|
-
export const Schema = {
|
|
935
|
-
input: z.strictObject({
|
|
936
|
-
session: z.string(),
|
|
937
|
-
|
|
938
|
-
|
|
939
|
-
|
|
940
|
-
|
|
941
|
-
|
|
847
|
+
export const Schema = {
|
|
848
|
+
input: z.strictObject({
|
|
849
|
+
session: z.string(),
|
|
850
|
+
page: z.number().default(1),
|
|
851
|
+
flag: z.string().optional(),
|
|
852
|
+
spin: z.boolean().default(false),
|
|
853
|
+
}),
|
|
854
|
+
output: z.object({
|
|
855
|
+
error: z.string().optional(),
|
|
856
|
+
total: z.number(),
|
|
857
|
+
viewPerPage: z.number(),
|
|
858
|
+
currentPage: z.number(),
|
|
859
|
+
userPosition: z.number(),
|
|
860
|
+
leaderboard: z
|
|
861
|
+
.array(
|
|
862
|
+
z.object({
|
|
863
|
+
flag: z.string().nullable(),
|
|
864
|
+
id: z.number(),
|
|
865
|
+
username: z.string().nullable(),
|
|
866
|
+
play_count: z.number().nullable(),
|
|
867
|
+
skill_points: z.number().nullable(),
|
|
868
|
+
spin_skill_points: z.number().nullable(),
|
|
869
|
+
total_score: z.number().nullable(),
|
|
870
|
+
clans: z
|
|
871
|
+
.object({
|
|
872
|
+
id: z.number(),
|
|
873
|
+
acronym: z.string(),
|
|
874
|
+
})
|
|
875
|
+
.optional()
|
|
876
|
+
.nullable(),
|
|
877
|
+
})
|
|
878
|
+
)
|
|
879
|
+
.optional(),
|
|
880
|
+
}),
|
|
942
881
|
};*/
|
|
943
|
-
import { Schema as
|
|
944
|
-
export { Schema as
|
|
945
|
-
export const
|
|
882
|
+
import { Schema as GetLeaderboard } from "./api/getLeaderboard"
|
|
883
|
+
export { Schema as SchemaGetLeaderboard } from "./api/getLeaderboard"
|
|
884
|
+
export const getLeaderboard = handleApi({url:"/api/getLeaderboard",...GetLeaderboard})
|
|
946
885
|
|
|
947
|
-
// ./api/
|
|
886
|
+
// ./api/getBeatmapStarRating.ts API
|
|
948
887
|
|
|
949
888
|
/*
|
|
950
|
-
export const Schema = {
|
|
951
|
-
input: z.strictObject({
|
|
952
|
-
|
|
953
|
-
|
|
954
|
-
|
|
955
|
-
|
|
956
|
-
|
|
957
|
-
|
|
958
|
-
|
|
959
|
-
|
|
960
|
-
|
|
961
|
-
|
|
962
|
-
|
|
963
|
-
.optional(),
|
|
964
|
-
}),
|
|
889
|
+
export const Schema = {
|
|
890
|
+
input: z.strictObject({
|
|
891
|
+
session: z.string(),
|
|
892
|
+
mapId: z.string(),
|
|
893
|
+
}),
|
|
894
|
+
output: z.object({
|
|
895
|
+
error: z.string().optional(),
|
|
896
|
+
beatmap: z
|
|
897
|
+
.object({
|
|
898
|
+
starRating: z.number().nullable().optional(),
|
|
899
|
+
})
|
|
900
|
+
.optional(),
|
|
901
|
+
}),
|
|
965
902
|
};*/
|
|
966
|
-
import { Schema as
|
|
967
|
-
export { Schema as
|
|
968
|
-
export const
|
|
903
|
+
import { Schema as GetBeatmapStarRating } from "./api/getBeatmapStarRating"
|
|
904
|
+
export { Schema as SchemaGetBeatmapStarRating } from "./api/getBeatmapStarRating"
|
|
905
|
+
export const getBeatmapStarRating = handleApi({url:"/api/getBeatmapStarRating",...GetBeatmapStarRating})
|
|
969
906
|
|
|
970
|
-
// ./api/
|
|
907
|
+
// ./api/searchUsers.ts API
|
|
971
908
|
|
|
972
909
|
/*
|
|
973
|
-
export const Schema = {
|
|
974
|
-
input: z.strictObject({
|
|
975
|
-
|
|
976
|
-
|
|
977
|
-
|
|
978
|
-
|
|
979
|
-
|
|
980
|
-
|
|
981
|
-
|
|
982
|
-
|
|
910
|
+
export const Schema = {
|
|
911
|
+
input: z.strictObject({
|
|
912
|
+
text: z.string(),
|
|
913
|
+
}),
|
|
914
|
+
output: z.object({
|
|
915
|
+
error: z.string().optional(),
|
|
916
|
+
results: z
|
|
917
|
+
.array(
|
|
918
|
+
z.object({
|
|
919
|
+
id: z.number(),
|
|
920
|
+
username: z.string().nullable(),
|
|
921
|
+
})
|
|
922
|
+
)
|
|
923
|
+
.optional(),
|
|
924
|
+
}),
|
|
983
925
|
};*/
|
|
984
|
-
import { Schema as
|
|
985
|
-
export { Schema as
|
|
986
|
-
export const
|
|
926
|
+
import { Schema as SearchUsers } from "./api/searchUsers"
|
|
927
|
+
export { Schema as SchemaSearchUsers } from "./api/searchUsers"
|
|
928
|
+
export const searchUsers = handleApi({url:"/api/searchUsers",...SearchUsers})
|
|
987
929
|
|
|
988
930
|
// ./api/submitScore.ts API
|
|
989
931
|
|
|
990
932
|
/*
|
|
991
|
-
export const Schema = {
|
|
992
|
-
input: z.strictObject({
|
|
993
|
-
session: z.string(),
|
|
994
|
-
data: z.strictObject({
|
|
995
|
-
token: z.string(),
|
|
996
|
-
relayHwid: z.string(),
|
|
997
|
-
songId: z.string(),
|
|
998
|
-
misses: z.number(),
|
|
999
|
-
hits: z.number(),
|
|
1000
|
-
mapHash: z.string(),
|
|
1001
|
-
speed: z.number(),
|
|
1002
|
-
mods: z.array(z.string()),
|
|
1003
|
-
additionalData: z.any(),
|
|
1004
|
-
spin: z.boolean(),
|
|
1005
|
-
virtualStars: z.number(),
|
|
1006
|
-
}),
|
|
1007
|
-
}),
|
|
1008
|
-
output: z.object({
|
|
1009
|
-
error: z.string().optional(),
|
|
1010
|
-
}),
|
|
933
|
+
export const Schema = {
|
|
934
|
+
input: z.strictObject({
|
|
935
|
+
session: z.string(),
|
|
936
|
+
data: z.strictObject({
|
|
937
|
+
token: z.string(),
|
|
938
|
+
relayHwid: z.string(),
|
|
939
|
+
songId: z.string(),
|
|
940
|
+
misses: z.number(),
|
|
941
|
+
hits: z.number(),
|
|
942
|
+
mapHash: z.string(),
|
|
943
|
+
speed: z.number(),
|
|
944
|
+
mods: z.array(z.string()),
|
|
945
|
+
additionalData: z.any(),
|
|
946
|
+
spin: z.boolean(),
|
|
947
|
+
virtualStars: z.number(),
|
|
948
|
+
}),
|
|
949
|
+
}),
|
|
950
|
+
output: z.object({
|
|
951
|
+
error: z.string().optional(),
|
|
952
|
+
}),
|
|
1011
953
|
};*/
|
|
1012
954
|
import { Schema as SubmitScore } from "./api/submitScore"
|
|
1013
955
|
export { Schema as SchemaSubmitScore } from "./api/submitScore"
|
|
1014
956
|
export const submitScore = handleApi({url:"/api/submitScore",...SubmitScore})
|
|
1015
957
|
|
|
958
|
+
// ./api/addCollectionMap.ts API
|
|
959
|
+
|
|
960
|
+
/*
|
|
961
|
+
export const Schema = {
|
|
962
|
+
input: z.strictObject({
|
|
963
|
+
session: z.string(),
|
|
964
|
+
collection: z.number(),
|
|
965
|
+
beatmapPage: z.number(),
|
|
966
|
+
}),
|
|
967
|
+
output: z.object({
|
|
968
|
+
error: z.string().optional(),
|
|
969
|
+
}),
|
|
970
|
+
};*/
|
|
971
|
+
import { Schema as AddCollectionMap } from "./api/addCollectionMap"
|
|
972
|
+
export { Schema as SchemaAddCollectionMap } from "./api/addCollectionMap"
|
|
973
|
+
export const addCollectionMap = handleApi({url:"/api/addCollectionMap",...AddCollectionMap})
|
|
974
|
+
|
|
975
|
+
// ./api/getCollection.ts API
|
|
976
|
+
|
|
977
|
+
/*
|
|
978
|
+
export const Schema = {
|
|
979
|
+
input: z.strictObject({
|
|
980
|
+
session: z.string(),
|
|
981
|
+
collection: z.number(),
|
|
982
|
+
}),
|
|
983
|
+
output: z.object({
|
|
984
|
+
collection: z.object({
|
|
985
|
+
title: z.string(),
|
|
986
|
+
description: z.string(),
|
|
987
|
+
owner: z.object({
|
|
988
|
+
id: z.number(),
|
|
989
|
+
username: z.string(),
|
|
990
|
+
}),
|
|
991
|
+
isList: z.boolean(),
|
|
992
|
+
beatmaps: z.array(
|
|
993
|
+
z.object({
|
|
994
|
+
id: z.number(),
|
|
995
|
+
playcount: z.number().nullable().optional(),
|
|
996
|
+
created_at: z.string().nullable().optional(),
|
|
997
|
+
difficulty: z.number().nullable().optional(),
|
|
998
|
+
length: z.number().nullable().optional(),
|
|
999
|
+
title: z.string().nullable().optional(),
|
|
1000
|
+
ranked: z.boolean().nullable().optional(),
|
|
1001
|
+
beatmapFile: z.string().nullable().optional(),
|
|
1002
|
+
image: z.string().nullable().optional(),
|
|
1003
|
+
starRating: z.number().nullable().optional(),
|
|
1004
|
+
owner: z.number().nullable().optional(),
|
|
1005
|
+
ownerUsername: z.string().nullable().optional(),
|
|
1006
|
+
status: z.string().nullable().optional(),
|
|
1007
|
+
tags: z.string().nullable().optional(),
|
|
1008
|
+
})
|
|
1009
|
+
),
|
|
1010
|
+
}),
|
|
1011
|
+
error: z.string().optional(),
|
|
1012
|
+
}),
|
|
1013
|
+
};*/
|
|
1014
|
+
import { Schema as GetCollection } from "./api/getCollection"
|
|
1015
|
+
export { Schema as SchemaGetCollection } from "./api/getCollection"
|
|
1016
|
+
export const getCollection = handleApi({url:"/api/getCollection",...GetCollection})
|
|
1017
|
+
|
|
1016
1018
|
// ./api/updateBeatmapPage.ts API
|
|
1017
1019
|
|
|
1018
1020
|
/*
|
|
1019
|
-
export const Schema = {
|
|
1020
|
-
input: z.strictObject({
|
|
1021
|
-
session: z.string(),
|
|
1022
|
-
id: z.number(),
|
|
1023
|
-
beatmapHash: z.string().optional(),
|
|
1024
|
-
tags: z.string().optional(),
|
|
1025
|
-
description: z.string().optional(),
|
|
1026
|
-
}),
|
|
1027
|
-
output: z.strictObject({
|
|
1028
|
-
error: z.string().optional(),
|
|
1029
|
-
}),
|
|
1021
|
+
export const Schema = {
|
|
1022
|
+
input: z.strictObject({
|
|
1023
|
+
session: z.string(),
|
|
1024
|
+
id: z.number(),
|
|
1025
|
+
beatmapHash: z.string().optional(),
|
|
1026
|
+
tags: z.string().optional(),
|
|
1027
|
+
description: z.string().optional(),
|
|
1028
|
+
}),
|
|
1029
|
+
output: z.strictObject({
|
|
1030
|
+
error: z.string().optional(),
|
|
1031
|
+
}),
|
|
1030
1032
|
};*/
|
|
1031
1033
|
import { Schema as UpdateBeatmapPage } from "./api/updateBeatmapPage"
|
|
1032
1034
|
export { Schema as SchemaUpdateBeatmapPage } from "./api/updateBeatmapPage"
|