We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8e3422f commit c17726aCopy full SHA for c17726a
src/apis/httpClient/httpClient.ts
@@ -105,6 +105,13 @@ export class HttpClient {
105
});
106
}
107
108
+ privateMeister(data: unknown, requestConfig?: AxiosRequestConfig) {
109
+ return this.api.put("", data, {
110
+ ...HttpClient.clientConfig,
111
+ ...requestConfig,
112
+ });
113
+ }
114
+
115
putByTitle(data: unknown, requestConfig?: AxiosRequestConfig) {
116
return this.api.put("/:title", data, {
117
...HttpClient.clientConfig,
@@ -182,4 +189,5 @@ export default {
182
189
meister: new HttpClient("/api/meister", axiosConfig),
183
190
ranking: new HttpClient("/api/meister/ranking", axiosConfig),
184
191
main: new HttpClient("/api/main", axiosConfig),
192
+ private: new HttpClient("/api/meister/privateRanking", axiosConfig),
185
193
};
0 commit comments