Description
Describe the bug
When updating a page, status type properties are not updated.
To Reproduce
Steps to reproduce the behavior:
- Retrieve Page from Notion, page in database must include at least 2 properties Status of type status and Updated type Text . Status should be anything but In Progress
- Update Page component, set id with the retrieved page
- Set Properties Types: ["Status", "Updated"]
- Set Properties Values: [ {
"id": "abcc967b-5135-4217-8677-ba840fd8b008",
"name": "In progress",
"color": "blue"
}, "Done"] - Test it
Expected behavior
The page should have the Status and Updated fields updated with the values mentioned in the steps to reproduce.
Screenshots
If applicable, add screenshots to help explain your problem.
Desktop (please complete the following information):
- OS: Windows
- Browser: Chrome
- Version: Version 113.0.5672.63 (Official Build) (64-bit)
Additional context
From what I understand, the Status type is an object with 3 properties as per notion documentation: https://developers.notion.com/reference/page-property-values#status
reviewing the source code of the update_page component, led me to the notion page properties common resource:
https://github.com/PipedreamHQ/pipedream/blob/master/components/notion/common/notion-page-properties.mjs
And it seems that status is not included in the integration.