Skip to content

Commit

Permalink
main2
Browse files Browse the repository at this point in the history
  • Loading branch information
dbruidb committed Mar 12, 2024
1 parent fb923d4 commit 13c59d9
Show file tree
Hide file tree
Showing 21,962 changed files with 1,044 additions and 2,695,042 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# compiled output
/dist

/node_modules

# Logs
logs
Expand Down
8 changes: 8 additions & 0 deletions dist/app.module.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/app.module.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

10 changes: 10 additions & 0 deletions dist/banlist/banlist.controller.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/banlist/banlist.controller.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 2 additions & 1 deletion dist/banlist/banlist.entity.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/banlist/banlist.entity.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions dist/config/constants.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ export declare const DB_USERNAME = "DB_USERNAME";
export declare const DB_PASSWORD = "DB_PASSWORD";
export declare const DB_DATABASE = "DB_DATABASE";
export declare const JWT_SECRET = "this is a random shit";
export declare enum formats {
DuelLinks = "Duel Links",
MasterDuel = "Master Duel"
}
7 changes: 6 additions & 1 deletion dist/config/constants.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion dist/config/constants.js.map

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

5 changes: 5 additions & 0 deletions dist/players/players.controller.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,15 @@ export declare class PlayersController {
private playersService;
constructor(playersService: PlayersService);
get(): Promise<PlayersEntity[]>;
getbyID(id: number): Promise<PlayersEntity>;
save(nuevo: PlayersEntity): Promise<{
sucess: boolean;
data: PlayersEntity;
}>;
saveBulk(nuevo: PlayersEntity[]): Promise<{
sucess: boolean;
data: PlayersEntity[];
}>;
update(id: number, arch: PlayersEntity): Promise<{
sucess: boolean;
data: import("typeorm").UpdateResult;
Expand Down
44 changes: 44 additions & 0 deletions dist/players/players.controller.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 13c59d9

Please sign in to comment.