@trophyso/node
Version:
NodeJS SDK for the Trophy API
11 lines (10 loc) • 354 B
TypeScript
import type * as TrophyApi from "../index";
/**
* Response containing updated boosts and any issues encountered.
*/
export interface PatchPointsBoostsResponse {
/** Array of successfully updated boosts. */
updated: TrophyApi.AdminPointsBoost[];
/** Array of issues encountered during boost updates. */
issues: TrophyApi.AdminIssue[];
}