futbol-in-core 1.0.12 → 1.0.14
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/types/Competicion/PartidoDTO.d.ts +10 -0
- package/dist/types/Competicion/PartidoDTO.js +1 -0
- package/dist/types/Competicion/index.d.ts +1 -0
- package/dist/types/Competicion/index.js +1 -0
- package/dist/types/Spot/SpotDTO.d.ts +24 -0
- package/dist/types/Spot/SpotDTO.js +1 -0
- package/dist/types/Spot/index.d.ts +2 -0
- package/dist/types/Spot/index.js +2 -0
- package/dist/types/User/OperadorDTO.d.ts +16 -0
- package/dist/types/User/OperadorDTO.js +1 -0
- package/dist/types/User/UsuarioEnRanking.d.ts +9 -0
- package/dist/types/User/UsuarioEnRanking.js +1 -0
- package/dist/types/User/index.d.ts +2 -0
- package/dist/types/User/index.js +2 -0
- package/dist/types/index.d.ts +9 -9
- package/dist/types/index.js +9 -9
- package/package.json +1 -1
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
import { DistribucionFutbolin, TipoFutbolin, TipoLugar } from "../../enum";
|
|
2
|
+
export interface SpotDTO {
|
|
3
|
+
id: string;
|
|
4
|
+
nombre: string;
|
|
5
|
+
direccion: string;
|
|
6
|
+
ciudad: string;
|
|
7
|
+
googlePlaceId: string;
|
|
8
|
+
coordinates: [number, number];
|
|
9
|
+
tipoLugar: TipoLugar;
|
|
10
|
+
tipoFutbolin: TipoFutbolin;
|
|
11
|
+
distribucion: DistribucionFutbolin;
|
|
12
|
+
comentarios: string;
|
|
13
|
+
addedByUserId: string;
|
|
14
|
+
idOperador: string | null;
|
|
15
|
+
verificado: null | {
|
|
16
|
+
correcto: boolean;
|
|
17
|
+
idUser: string;
|
|
18
|
+
fechaVerificacion: Date;
|
|
19
|
+
};
|
|
20
|
+
votes: {
|
|
21
|
+
up: string[];
|
|
22
|
+
down: string[];
|
|
23
|
+
};
|
|
24
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
import { TipoFutbolin } from "../../enum";
|
|
2
|
+
export interface OperadorDTO {
|
|
3
|
+
id: string;
|
|
4
|
+
usuarios: string[];
|
|
5
|
+
bio: string;
|
|
6
|
+
enlaces: string[];
|
|
7
|
+
nombreComercial: string;
|
|
8
|
+
telefonos: Array<{
|
|
9
|
+
persona: string;
|
|
10
|
+
numero: string;
|
|
11
|
+
}>;
|
|
12
|
+
ciudad: string;
|
|
13
|
+
futbolines: TipoFutbolin[];
|
|
14
|
+
logo: string;
|
|
15
|
+
fondo: string;
|
|
16
|
+
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
export {};
|
package/dist/types/User/index.js
CHANGED
package/dist/types/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
1
|
+
export * from "./Competicion";
|
|
2
|
+
export * from "./Equipo";
|
|
3
|
+
export * from "./Error/Error";
|
|
4
|
+
export * from "./Logros/Logro";
|
|
5
|
+
export * from "./MapItem/IMapItem";
|
|
6
|
+
export * from "./Notificaciones/INotificaciones";
|
|
7
|
+
export * from "./Request/TypedRequest";
|
|
8
|
+
export * from "./Spot";
|
|
9
|
+
export * from "./User";
|
package/dist/types/index.js
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
export * from
|
|
2
|
-
export * from
|
|
3
|
-
export * from
|
|
4
|
-
export * from
|
|
5
|
-
export * from
|
|
6
|
-
export * from
|
|
7
|
-
export * from
|
|
8
|
-
export * from
|
|
9
|
-
export * from
|
|
1
|
+
export * from "./Competicion";
|
|
2
|
+
export * from "./Equipo";
|
|
3
|
+
export * from "./Error/Error";
|
|
4
|
+
export * from "./Logros/Logro";
|
|
5
|
+
export * from "./MapItem/IMapItem";
|
|
6
|
+
export * from "./Notificaciones/INotificaciones";
|
|
7
|
+
export * from "./Request/TypedRequest";
|
|
8
|
+
export * from "./Spot";
|
|
9
|
+
export * from "./User";
|