/** * Request serializer for PlatformSkillPointManagementView POST endpoint. */ export type PlatformSkillPointRequest = { /** * Username to update skill points for */ username: string; /** * Platform key identifier */ platform_key: string; /** * Dictionary mapping skill names to point values. Example: {'skill_name': 5} */ point_data: Record; /** * If True, removes all skills not in point_data. If False, only updates specified skills. */ overwrite?: boolean; };