@opprs/core 2.2.1-canary.ab8623f → 2.2.1-canary.af4b6cf
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/index.d.cts +1 -5
- package/dist/index.d.ts +1 -5
- package/package.json +1 -1
package/dist/index.d.cts
CHANGED
|
@@ -23,10 +23,6 @@ type TournamentFormatType = 'single-elimination' | 'double-elimination' | 'match
|
|
|
23
23
|
* Qualifying format configuration
|
|
24
24
|
*/
|
|
25
25
|
type QualifyingType = 'unlimited' | 'limited' | 'hybrid' | 'none';
|
|
26
|
-
/**
|
|
27
|
-
* Group size for match play formats
|
|
28
|
-
*/
|
|
29
|
-
type GroupSize = 2 | 3 | 4;
|
|
30
26
|
/**
|
|
31
27
|
* Event booster classification
|
|
32
28
|
*/
|
|
@@ -1232,4 +1228,4 @@ declare function validateDateNotFuture(date: Date, fieldName?: string): void;
|
|
|
1232
1228
|
*/
|
|
1233
1229
|
declare function validatePercentage(value: number, fieldName?: string): void;
|
|
1234
1230
|
|
|
1235
|
-
export { DEFAULT_CONSTANTS, type DecayConfig, type EventBoosterType, type
|
|
1231
|
+
export { DEFAULT_CONSTANTS, type DecayConfig, type EventBoosterType, type OPPRConfig, type ParsePlayerCSVOptions, type ParsedPlayer, type PartialOPPRConfig, type Player, type PlayerEvent, type PlayerProfile, type PlayerResult, type PointDistribution, type QualifyingType, type RatingResult, type RatingUpdate, type TGPConfig, type Tournament, type TournamentFormatType, type TournamentResult, type TournamentValue, ValidationError, analyzeEfficiencyTrend, applyEventBooster, applyRDDecay, applyTimeDecay, calculateBaseValue, calculateDaysBetween, calculateDecayMultiplier, calculateDecayedEfficiency, calculateDynamicPoints, calculateEventAge, calculateEventEfficiency, calculateFinalsTGP, calculateFlipFrenzyTGP, calculateLinearPoints, calculateOverallEfficiency, calculatePlayerPoints, calculatePlayerRankingContribution, calculatePlayerRatingContribution, calculatePositionPercentage, calculateQualifyingTGP, calculateRankingTVA, calculateRatingTVA, calculateTGP, calculateTopNEfficiency, calculateTotalTVA, calculateUnlimitedCardTGP, configureOPPR, countRatedPlayers, createNewPlayerRating, determineEventBooster, distributePoints, filterActiveEvents, getDecayMultiplier, getDefaultConfig, getEfficiencyStats, getEventBoosterMultiplier, getEventDecayInfo, getPointsForPosition, getTopRankedPlayers, getTopRatedPlayers, isEventActive, isPlayerRated, isProvisionalRating, parsePlayerCSV, qualifiesForCertified, qualifiesForCertifiedPlus, ratingContributesToTVA, resetConfig, simulateTournamentMatches, updateRating, validateDateNotFuture, validateFinalsEligibility, validateFinalsRequirements, validateMinimumPlayers, validatePercentage, validatePlayer, validatePlayerResults, validatePlayers, validatePrivateTournament, validateTGPConfig, validateTournament };
|
package/dist/index.d.ts
CHANGED
|
@@ -23,10 +23,6 @@ type TournamentFormatType = 'single-elimination' | 'double-elimination' | 'match
|
|
|
23
23
|
* Qualifying format configuration
|
|
24
24
|
*/
|
|
25
25
|
type QualifyingType = 'unlimited' | 'limited' | 'hybrid' | 'none';
|
|
26
|
-
/**
|
|
27
|
-
* Group size for match play formats
|
|
28
|
-
*/
|
|
29
|
-
type GroupSize = 2 | 3 | 4;
|
|
30
26
|
/**
|
|
31
27
|
* Event booster classification
|
|
32
28
|
*/
|
|
@@ -1232,4 +1228,4 @@ declare function validateDateNotFuture(date: Date, fieldName?: string): void;
|
|
|
1232
1228
|
*/
|
|
1233
1229
|
declare function validatePercentage(value: number, fieldName?: string): void;
|
|
1234
1230
|
|
|
1235
|
-
export { DEFAULT_CONSTANTS, type DecayConfig, type EventBoosterType, type
|
|
1231
|
+
export { DEFAULT_CONSTANTS, type DecayConfig, type EventBoosterType, type OPPRConfig, type ParsePlayerCSVOptions, type ParsedPlayer, type PartialOPPRConfig, type Player, type PlayerEvent, type PlayerProfile, type PlayerResult, type PointDistribution, type QualifyingType, type RatingResult, type RatingUpdate, type TGPConfig, type Tournament, type TournamentFormatType, type TournamentResult, type TournamentValue, ValidationError, analyzeEfficiencyTrend, applyEventBooster, applyRDDecay, applyTimeDecay, calculateBaseValue, calculateDaysBetween, calculateDecayMultiplier, calculateDecayedEfficiency, calculateDynamicPoints, calculateEventAge, calculateEventEfficiency, calculateFinalsTGP, calculateFlipFrenzyTGP, calculateLinearPoints, calculateOverallEfficiency, calculatePlayerPoints, calculatePlayerRankingContribution, calculatePlayerRatingContribution, calculatePositionPercentage, calculateQualifyingTGP, calculateRankingTVA, calculateRatingTVA, calculateTGP, calculateTopNEfficiency, calculateTotalTVA, calculateUnlimitedCardTGP, configureOPPR, countRatedPlayers, createNewPlayerRating, determineEventBooster, distributePoints, filterActiveEvents, getDecayMultiplier, getDefaultConfig, getEfficiencyStats, getEventBoosterMultiplier, getEventDecayInfo, getPointsForPosition, getTopRankedPlayers, getTopRatedPlayers, isEventActive, isPlayerRated, isProvisionalRating, parsePlayerCSV, qualifiesForCertified, qualifiesForCertifiedPlus, ratingContributesToTVA, resetConfig, simulateTournamentMatches, updateRating, validateDateNotFuture, validateFinalsEligibility, validateFinalsRequirements, validateMinimumPlayers, validatePercentage, validatePlayer, validatePlayerResults, validatePlayers, validatePrivateTournament, validateTGPConfig, validateTournament };
|
package/package.json
CHANGED