You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
760 B
43 lines
760 B
import {
|
|
DATA_URL,
|
|
PROCEDURES,
|
|
} from 'config'
|
|
import { callApi } from 'helpers'
|
|
|
|
const proc = PROCEDURES.get_team_players
|
|
|
|
export type Player = {
|
|
birthday: string | null,
|
|
c_gender: number,
|
|
firstname_eng: string,
|
|
firstname_rus: string,
|
|
height: string | number,
|
|
id: number,
|
|
lastname_eng: string,
|
|
lastname_rus: string,
|
|
nickname_eng: string | number| null,
|
|
nickname_rus: string | number | null,
|
|
sport_id: number,
|
|
weight: string | number | null,
|
|
}
|
|
|
|
export const getTeamPlayers = (
|
|
_p_sport_id: number,
|
|
_p_team_id: number,
|
|
)
|
|
: Promise<Array<Player>> => {
|
|
const config = {
|
|
body: {
|
|
params: {
|
|
_p_sport_id,
|
|
_p_team_id,
|
|
},
|
|
proc,
|
|
},
|
|
}
|
|
|
|
return callApi({
|
|
config,
|
|
url: DATA_URL,
|
|
})
|
|
}
|
|
|