@notionhq/client 3.1.3 → 4.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -240,13 +240,19 @@ exports.search = {
240
240
  path: () => `search`,
241
241
  };
242
242
  /**
243
- * Create comment
243
+ * Create a comment
244
244
  */
245
245
  exports.createComment = {
246
246
  method: "post",
247
247
  pathParams: [],
248
248
  queryParams: [],
249
- bodyParams: ["parent", "rich_text", "discussion_id"],
249
+ bodyParams: [
250
+ "rich_text",
251
+ "attachments",
252
+ "display_name",
253
+ "parent",
254
+ "discussion_id",
255
+ ],
250
256
  path: () => `comments`,
251
257
  };
252
258
  /**