/** * Operations for WBB. * * > **Superseded:** these hand-written `get*` methods predate the generated * > cross-league ESPN surface. They remain supported for back-compat, but new * > code should prefer the generated `espn_wbb_*` wrappers (e.g. * > `sdv.wbb.espn_wbb_scoreboard()`), which cover far more ESPN * > endpoints and share one maintained codegen pipeline. * * @namespace wbb */ declare const _default: { /** * Gets the Women's College Basketball game play-by-play data for a specified game. * @memberOf wbb * @async * @function * @param {number} id - Game id. * @returns json * @example * const result = await sdv.wbb.getPlayByPlay(401260565); */ getPlayByPlay: (id: any) => Promise<{ id: any; teams: any; plays: any; competitions: any; season: any; boxScore: any; }>; /** * Gets the Women's College Basketball game box score data for a specified game. * @memberOf wbb * @async * @function * @param {number} id - Game id. * @returns json * @example * const result = await sdv.wbb.getBoxScore(401260565); */ getBoxScore: (id: any) => Promise; /** * Gets the Women's College Basketball game summary data for a specified game. * @memberOf wbb * @async * @function * @param {number} id - Game id. * @returns json * @example * const result = await sdv.wbb.getSummary(401260565); */ getSummary: (id: any) => Promise<{ boxScore: any; gameInfo: any; leaders: any; winProbability: any; header: any; plays: any; standings: any; }>; /** * Gets the Women's College Basketball schedule data for a specified date if available. * @memberOf wbb * @async * @function * @param {*} year - Year (YYYY) * @param {*} month - Month (MM) * @param {*} day - Day (DD) * @param {number} group - Group is 50 for Division-I, 51 for Division-II, 52 for Division-III * @param {number} seasontype - Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 * @param {number} limit - Limit on the number of results @default 300 * @returns json * @example * const result = await sdv.wbb.getSchedule( * year = 2021, month = 02, day = 15, group=50 * ) */ getSchedule: ({ year, month, day, groups, seasontype, limit }: { year: any; month: any; day: any; groups?: number; seasontype?: number; limit?: number; }) => Promise; /** * Gets the Women's College Basketball scoreboard data for a specified date if available. * @memberOf wbb * @async * @function * @param {*} year - Year (YYYY) * @param {*} month - Month (MM) * @param {*} day - Day (DD) * @param {number} group - Group is 50 for Division-I, 51 for Division-II, 52 for Division-III * @param {number} seasontype - Pre-Season: 1, Regular Season: 2, Postseason: 3, Off-season: 4 * @param {number} limit - Limit on the number of results @default 300 * @returns json * @example * const result = await sdv.wbb.getScoreboard( * year = 2019, month = 02, day = 15, group=50 * ) */ getScoreboard: ({ year, month, day, group, seasontype, limit }: { year: any; month: any; day: any; group?: number; seasontype?: number; limit?: number; }) => Promise; /** * Gets the list of all Women's College Basketball conferences and their identification info for ESPN. * @memberOf wbb * @async * @function * @param {number} year - Season * @param {number} group - Group is 50 for Division-I, 51 for Division-II, 52 for Division-III * @returns json * @example * const yr = 2021; * const result = await sdv.wbb.getConferences(year = yr, group = 50); */ getConferences: ({ year, group }: { year?: number; group?: number; }) => Promise; /** * Gets the team standings for Women's College Basketball. * @memberOf wbb * @async * @function * @param {number} year - Season * @param {number} group - Group is 50 for Division-I, 51 for Division-II, 52 for Division-III, see wbb.getConferences() for more info * @returns json * @example * const yr = 2020; * const result = await sdv.wbb.getStandings(year = yr); */ getStandings: ({ year, group }: { year?: number; group?: number; }) => Promise; /** * Gets the list of all Women's College Basketball teams their identification info for ESPN. * @memberOf wbb * @async * @function * @param {number} group - Group is 50 for Division I, 51 for Division II, 52 for Division III * @returns json * @example * get list of teams * const result = await sdv.wbb.getTeamList(group=50); */ getTeamList: ({ group }: { group?: number; }) => Promise; /** * Gets the team info for a specific WBB team. * @memberOf wbb * @async * @function * @param {number} id - Team Id * @returns json * @example * const teamId = 52; * const result = await sdv.wbb.getTeamInfo(teamId); */ getTeamInfo: (id: any) => Promise; /** * Gets the team roster information for a specific WBB team. * @memberOf wbb * @async * @function * @param {number} id - Team Id * @returns json * @example * const teamId = 52; * const result = await sdv.wbb.getTeamPlayers(teamId); */ getTeamPlayers: (id: any) => Promise; }; export default _default; //# sourceMappingURL=wbb.service.d.ts.map