Currently I'm trying to get some information of the publishing state of a given page.
Maybe anybody has an idea for this issue.
Thanks in advance
To get information about the page I use pnpjs to retrieve the pages list item as follows:
const itemOfPageEN = (await sp.web.getList(this._sitePagesUrl).items.getById(idOfPageEN))();
console.log(LOG_SOURCE, "itemOfPageEN", itemOfPageEN);
in idOfPageEN
I provide the ID of a translated page, to get the corresponding item back.
In my console.log Output I can not find any attribute, which give me any information about the publishing state of the given page.