@proteos/sdk 0.26.0 → 0.26.2

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.
package/dist/index.cjs CHANGED
@@ -1237,6 +1237,9 @@ var MeetingServiceImpl = class {
1237
1237
  remove(conversationId) {
1238
1238
  return this.client.request("DELETE", `${CONVERSATION_BASE_PATH}/meetings/${encodeURIComponent(conversationId)}`);
1239
1239
  }
1240
+ summarize(conversationId) {
1241
+ return this.client.request("POST", `${CONVERSATION_BASE_PATH}/meetings/${encodeURIComponent(conversationId)}/summarize`);
1242
+ }
1240
1243
  };
1241
1244
  var ConnectionServiceImpl = class {
1242
1245
  constructor(client) {