notion-dotnet / notion-sdk-net

A Notion SDK for .Net
MIT License
181 stars 44 forks source link

Added support for button properties. #418

Open kosaku-hayashi opened 1 month ago

kosaku-hayashi commented 1 month ago

Description

Fixes #416

Added support for the new button property added to Notion. (ButtonProperty,ButtonPropertyValue) This fixes a problem that caused an exception when deserializing a query.

The button property information is shown below in JSON, and it appears that the button field is returned as an empty object at this time, even if the button property settings have been customized in Notion. Therefore, the object that receives the button field is implemented as an empty class.

DB property "testBtn":{ "id":"_ri%7C","name":"testBtn","type":"button","button":{ } },

Page property "testBtn":{ "id":"_ri%7C","type":"button","button":{ } },

The existing test code has been modified to support the button property.

Type of change

How Has This Been Tested?

The unit test completed successfully and I tested with my Notion integration that the page and database queries and the search API work properly.

Checklist:

kosaku-hayashi commented 1 month ago

Fixed problems with CodeFactor