Closed zdne closed 1 year ago
Again related to regression #319 due to wrong docs analysis.
When reproduced, I'm getting
function ListWorkspaceUsers({input, parameters, services}){
const url = `${services.default}/v1/users`;
const options = {
method: 'GET',
query: {
start_cursor: input.start_cursor,
page_size: input.page_size,
},
headers: {
'Content-Type': 'application/json',
'Notion-Version': '2022-06-28',
},
security: 'bearer_token',
};
//...
I can confirm it has been fixed 🙏
The map generated for the Notion no longer includes mandatory
Notion-Version
header. And as such, does not work.Expected Behavior
I get a map with
Notion-Version
header, e.g.:Current Behavior
No version header is in the map, the comlink does not work:
Steps to Reproduce
Your Environment