I have added the new country codes to my local (and possibly not up-to-date) MyAppSales project. It looks like it is working, but since I haven't sold in all new regions since the recent changes by Apple, I can't check that they definitely all get processed and show up now. (New Zealand and Switzerland show up for me. I haven't sold in Norway and Mexico recently.) If someone has read write access to the myappsales github repo and wants to test and incorporate my changes drop me a note.
Cheers,
António
P.S.
Note that the new regions are defined in a somewhat arbitrary sequence. See below how I defined them, tagging them onto the add of the list. I won't run my changes on my real MyAppSales copy on my iPhone until I know this (or something else) is the definition that goes into the main myappsales github repo.
typedef enum {
ReportRegionUnknown = 0,
ReportRegionUSA = 1,
ReportRegionEurope = 2,
ReportRegionCanada = 3,
ReportRegionAustralia = 4,
ReportRegionUK = 5,
ReportRegionJapan = 6,
ReportRegionRestOfWorld = 7,
ReportRegionMexico = 8,
ReportRegionSwitzerland = 9,
ReportRegionNorway = 10,
ReportRegionNewZealand = 11} ReportRegion;
----------------------------------------------------
It is better to light a candle than to curse the darkness
----------------------------------------------------