glitch-javascript-sdk 0.4.1 → 0.4.2
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/dist/cjs/index.js +1 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/package.json +1 -1
- package/src/api/Competitions.ts +1 -1
package/package.json
CHANGED
package/src/api/Competitions.ts
CHANGED
|
@@ -690,7 +690,7 @@ class Competitions {
|
|
|
690
690
|
* @returns promise
|
|
691
691
|
*/
|
|
692
692
|
public static me<T>(competition_id : string, params?: Record<string, any>): AxiosPromise<Response<T>>{
|
|
693
|
-
return Requests.processRoute(CompetitionRoutes.routes.
|
|
693
|
+
return Requests.processRoute(CompetitionRoutes.routes.me, {}, {competition_id : competition_id}, params);
|
|
694
694
|
}
|
|
695
695
|
}
|
|
696
696
|
|