@proteos/sdk 0.26.1 → 0.26.3
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 +3 -0
- package/dist/index.cjs.map +1 -1
- package/dist/index.d.cts +7 -0
- package/dist/index.d.ts +7 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
- package/src/conversation/index.ts +11 -0
package/dist/index.d.cts
CHANGED
|
@@ -2669,6 +2669,13 @@ interface MeetingService {
|
|
|
2669
2669
|
dispatch(request: DispatchMeetingBotRequest): Promise<Conversation>;
|
|
2670
2670
|
/** Make the bot leave the meeting and end the conversation (by conversation id). */
|
|
2671
2671
|
remove(conversationId: string): Promise<Conversation>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Regenerate this meeting conversation's markdown summary from its stored
|
|
2674
|
+
* transcript, overwriting any existing one. Resolves with the updated
|
|
2675
|
+
* conversation (its fresh `summary`). Rejects with `no_transcript` when the
|
|
2676
|
+
* conversation has no completed transcript to summarize.
|
|
2677
|
+
*/
|
|
2678
|
+
summarize(conversationId: string): Promise<Conversation>;
|
|
2672
2679
|
}
|
|
2673
2680
|
/** Configured integration instances (Slack workspace, Gmail grant, …). */
|
|
2674
2681
|
interface ConnectionService {
|
package/dist/index.d.ts
CHANGED
|
@@ -2669,6 +2669,13 @@ interface MeetingService {
|
|
|
2669
2669
|
dispatch(request: DispatchMeetingBotRequest): Promise<Conversation>;
|
|
2670
2670
|
/** Make the bot leave the meeting and end the conversation (by conversation id). */
|
|
2671
2671
|
remove(conversationId: string): Promise<Conversation>;
|
|
2672
|
+
/**
|
|
2673
|
+
* Regenerate this meeting conversation's markdown summary from its stored
|
|
2674
|
+
* transcript, overwriting any existing one. Resolves with the updated
|
|
2675
|
+
* conversation (its fresh `summary`). Rejects with `no_transcript` when the
|
|
2676
|
+
* conversation has no completed transcript to summarize.
|
|
2677
|
+
*/
|
|
2678
|
+
summarize(conversationId: string): Promise<Conversation>;
|
|
2672
2679
|
}
|
|
2673
2680
|
/** Configured integration instances (Slack workspace, Gmail grant, …). */
|
|
2674
2681
|
interface ConnectionService {
|
package/dist/index.js
CHANGED
|
@@ -1236,6 +1236,9 @@ var MeetingServiceImpl = class {
|
|
|
1236
1236
|
remove(conversationId) {
|
|
1237
1237
|
return this.client.request("DELETE", `${CONVERSATION_BASE_PATH}/meetings/${encodeURIComponent(conversationId)}`);
|
|
1238
1238
|
}
|
|
1239
|
+
summarize(conversationId) {
|
|
1240
|
+
return this.client.request("POST", `${CONVERSATION_BASE_PATH}/meetings/${encodeURIComponent(conversationId)}/summarize`);
|
|
1241
|
+
}
|
|
1239
1242
|
};
|
|
1240
1243
|
var ConnectionServiceImpl = class {
|
|
1241
1244
|
constructor(client) {
|