Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
dbruidb authored Mar 4, 2024
1 parent 1dd4e38 commit 8333529
Show file tree
Hide file tree
Showing 79 changed files with 1,539 additions and 0 deletions.
6 changes: 6 additions & 0 deletions dist/app.controller.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
import { AppService } from './app.service';
export declare class AppController {
private readonly appService;
constructor(appService: AppService);
getHello(): string;
}
34 changes: 34 additions & 0 deletions dist/app.controller.js

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

1 change: 1 addition & 0 deletions dist/app.controller.js.map

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

2 changes: 2 additions & 0 deletions dist/app.module.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export declare class AppModule {
}
47 changes: 47 additions & 0 deletions dist/app.module.js

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

1 change: 1 addition & 0 deletions dist/app.module.js.map

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

3 changes: 3 additions & 0 deletions dist/app.service.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
export declare class AppService {
getHello(): string;
}
20 changes: 20 additions & 0 deletions dist/app.service.js

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

1 change: 1 addition & 0 deletions dist/app.service.js.map

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

19 changes: 19 additions & 0 deletions dist/banlist/banlist.controller.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
import { BanlistService } from './banlist.service';
import { BanlistEntity } from './banlist.entity';
export declare class BanlistController {
private banlistService;
constructor(banlistService: BanlistService);
get(): Promise<BanlistEntity[]>;
save(nuevo: BanlistEntity): Promise<{
sucess: boolean;
data: BanlistEntity;
}>;
update(id_ban: number, arch: BanlistEntity): Promise<{
sucess: boolean;
data: import("typeorm").UpdateResult;
}>;
delete(id: any): Promise<{
sucess: boolean;
data: string;
}>;
}
94 changes: 94 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.

1 change: 1 addition & 0 deletions dist/banlist/banlist.controller.js.map

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

8 changes: 8 additions & 0 deletions dist/banlist/banlist.entity.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
export declare class BanlistEntity {
id_ban: number;
name: string;
konami_id: string;
limitation: string;
format: string;
date: string;
}
47 changes: 47 additions & 0 deletions dist/banlist/banlist.entity.js

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

1 change: 1 addition & 0 deletions dist/banlist/banlist.entity.js.map

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

2 changes: 2 additions & 0 deletions dist/banlist/banlist.module.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
export declare class BanlistModule {
}
25 changes: 25 additions & 0 deletions dist/banlist/banlist.module.js

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

1 change: 1 addition & 0 deletions dist/banlist/banlist.module.js.map

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

11 changes: 11 additions & 0 deletions dist/banlist/banlist.service.d.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import { BanlistEntity } from './banlist.entity';
import { Repository, UpdateResult } from 'typeorm';
export declare class BanlistService {
private banlistRepository;
constructor(banlistRepository: Repository<BanlistEntity>);
findAll(): Promise<BanlistEntity[]>;
findById(id_ban: number): Promise<BanlistEntity>;
create(nuevo: BanlistEntity): Promise<BanlistEntity>;
update(id_ban: any, nuevo: BanlistEntity): Promise<UpdateResult>;
delete(id_ban: number): Promise<string>;
}
Loading

0 comments on commit 8333529

Please sign in to comment.