mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-03-09 15:40:26 +00:00
feat: update endpoints
This commit is contained in:
parent
5369274c6e
commit
bde396c7db
9 changed files with 9 additions and 9 deletions
|
|
@ -3,7 +3,7 @@ import { HydraApi } from "../hydra-api";
|
|||
import { gameRepository } from "@main/repository";
|
||||
|
||||
export const createGame = async (game: Game) => {
|
||||
HydraApi.post(`/games`, {
|
||||
HydraApi.post(`/profile/games`, {
|
||||
objectId: game.objectID,
|
||||
playTimeInMilliseconds: Math.trunc(game.playTimeInMilliseconds),
|
||||
shop: game.shop,
|
||||
|
|
|
|||
|
|
@ -4,7 +4,7 @@ import { steamGamesWorker } from "@main/workers";
|
|||
import { getSteamAppAsset } from "@main/helpers";
|
||||
|
||||
export const mergeWithRemoteGames = async () => {
|
||||
return HydraApi.get("/games")
|
||||
return HydraApi.get("/profile/games")
|
||||
.then(async (response) => {
|
||||
for (const game of response) {
|
||||
const localGame = await gameRepository.findOne({
|
||||
|
|
|
|||
|
|
@ -6,7 +6,7 @@ export const updateGamePlaytime = async (
|
|||
deltaInMillis: number,
|
||||
lastTimePlayed: Date
|
||||
) => {
|
||||
HydraApi.put(`/games/${game.remoteId}`, {
|
||||
HydraApi.put(`/profile/games/${game.remoteId}`, {
|
||||
playTimeDeltaInSeconds: Math.trunc(deltaInMillis / 1000),
|
||||
lastTimePlayed,
|
||||
}).catch(() => {});
|
||||
|
|
|
|||
|
|
@ -14,7 +14,7 @@ export const uploadGamesBatch = async () => {
|
|||
|
||||
for (const chunk of gamesChunks) {
|
||||
await HydraApi.post(
|
||||
"/games/batch",
|
||||
"/profile/games/batch",
|
||||
chunk.map((game) => {
|
||||
return {
|
||||
objectId: game.objectID,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue