APA reference - why is the "unpublished thesis" tag missing?

good day, @vmartel08 here are the sample snippets:

in main.typ

The proper citation for unpublished thesis/dissertation is "Lastname, F. M. (Year)._ Title of dissertation/thesis_ [Unpublished doctoral dissertation/master’s thesis]. Name of Institution Awarding the Degree." @Masters2010@PhD2015

#bibliography("biblio.bib", style: "apa",
title: "Refs")

in biblio.bib

@mastersthesis{Masters2010,
  title     = {Master's Thesis Title},
  author    = {LastName, Masters Author},
  school    = {University of Bergen},
  year      = {2010},
  month     = {May},
  type      = {Master's thesis},
  annote    = {[Unpublished master's thesis]}
}

@phdthesis{PhD2015,
  title     = {PhD Dissertation Title},
  author    = {LastName, Doctorate Another Author},
  school    = {Tokyo University},
  year      = {2015},
  month     = {May},
  addendum  = {[Unpublished doctoral dissertation]}
}

rendered file:

the note/addendum are missing.

thank you.