@flowcore/sdk 1.26.3 → 1.26.4
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/CHANGELOG.md +7 -0
- package/esm/commands/ai-agent-coordinator/conversation-stream.command.d.ts +1 -1
- package/esm/commands/ai-agent-coordinator/conversation-stream.command.d.ts.map +1 -1
- package/esm/commands/ai-agent-coordinator/conversation-stream.command.js +1 -1
- package/package.json +1 -1
- package/script/commands/ai-agent-coordinator/conversation-stream.command.d.ts +1 -1
- package/script/commands/ai-agent-coordinator/conversation-stream.command.d.ts.map +1 -1
- package/script/commands/ai-agent-coordinator/conversation-stream.command.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [1.26.4](https://github.com/flowcore-io/flowcore-sdk/compare/v1.26.3...v1.26.4) (2025-04-14)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* **ai-agent-coordinator:** :art: make conversationId optional in ConversationStreamConfig ([c0ea7dc](https://github.com/flowcore-io/flowcore-sdk/commit/c0ea7dce6137a957bc2f972ea38709d7f378fa40))
|
|
9
|
+
|
|
3
10
|
## [1.26.3](https://github.com/flowcore-io/flowcore-sdk/compare/v1.26.2...v1.26.3) (2025-04-10)
|
|
4
11
|
|
|
5
12
|
|
|
@@ -4,7 +4,7 @@ import type { WebSocketCommand } from "../../common/websocket-command.js";
|
|
|
4
4
|
* Only requires the conversationId.
|
|
5
5
|
*/
|
|
6
6
|
export interface ConversationStreamConfig {
|
|
7
|
-
conversationId
|
|
7
|
+
conversationId?: string;
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* Payload type for messages sent *to* the Conversation Stream.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation-stream.command.d.ts","sourceRoot":"","sources":["../../../src/commands/ai-agent-coordinator/conversation-stream.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAA;AAEzE;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,cAAc,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"conversation-stream.command.d.ts","sourceRoot":"","sources":["../../../src/commands/ai-agent-coordinator/conversation-stream.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAA;AAEzE;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C,OAAO,EAAE,MAAM,CAAA;CAChB;AAED;;GAEG;AACH,qBAAa,yBACX,YAAW,gBAAgB,CAAC,wBAAwB,EAAE,6BAA6B,CAAC;IACpF,OAAO,CAAC,MAAM,CAA0B;gBAE5B,MAAM,EAAE,wBAAwB;IAO5C,oDAAoD;IACpD,SAAS,IAAI,wBAAwB;IAIrC,kCAAkC;IAClC,mBAAmB,IAAI,MAAM;IAK7B,sCAAsC;IACtC,uBAAuB,IAAI,MAAM;IAKjC,iDAAiD;IACjD,oBAAoB,CAAC,OAAO,EAAE,6BAA6B,GAAG,MAAM;CAOrE"}
|
|
@@ -26,7 +26,7 @@ export class ConversationStreamCommand {
|
|
|
26
26
|
/** Get the WebSocket path segment. */
|
|
27
27
|
getWebSocketPathSegment() {
|
|
28
28
|
// Path includes the conversation ID
|
|
29
|
-
return `api/v1/stream/${this.config.conversationId}`;
|
|
29
|
+
return `api/v1/stream/${this.config.conversationId ? `${this.config.conversationId}` : ""}`;
|
|
30
30
|
}
|
|
31
31
|
/** Serializer function for outgoing payloads. */
|
|
32
32
|
serializeSendPayload(payload) {
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@ import type { WebSocketCommand } from "../../common/websocket-command.js";
|
|
|
4
4
|
* Only requires the conversationId.
|
|
5
5
|
*/
|
|
6
6
|
export interface ConversationStreamConfig {
|
|
7
|
-
conversationId
|
|
7
|
+
conversationId?: string;
|
|
8
8
|
}
|
|
9
9
|
/**
|
|
10
10
|
* Payload type for messages sent *to* the Conversation Stream.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"conversation-stream.command.d.ts","sourceRoot":"","sources":["../../../src/commands/ai-agent-coordinator/conversation-stream.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAA;AAEzE;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,cAAc,EAAE,MAAM,CAAA;
|
|
1
|
+
{"version":3,"file":"conversation-stream.command.d.ts","sourceRoot":"","sources":["../../../src/commands/ai-agent-coordinator/conversation-stream.command.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,EAAE,gBAAgB,EAAE,MAAM,mCAAmC,CAAA;AAEzE;;;GAGG;AACH,MAAM,WAAW,wBAAwB;IACvC,cAAc,CAAC,EAAE,MAAM,CAAA;CACxB;AAED;;GAEG;AACH,MAAM,WAAW,6BAA6B;IAC5C,OAAO,EAAE,MAAM,CAAA;CAChB;AAED;;GAEG;AACH,qBAAa,yBACX,YAAW,gBAAgB,CAAC,wBAAwB,EAAE,6BAA6B,CAAC;IACpF,OAAO,CAAC,MAAM,CAA0B;gBAE5B,MAAM,EAAE,wBAAwB;IAO5C,oDAAoD;IACpD,SAAS,IAAI,wBAAwB;IAIrC,kCAAkC;IAClC,mBAAmB,IAAI,MAAM;IAK7B,sCAAsC;IACtC,uBAAuB,IAAI,MAAM;IAKjC,iDAAiD;IACjD,oBAAoB,CAAC,OAAO,EAAE,6BAA6B,GAAG,MAAM;CAOrE"}
|
|
@@ -29,7 +29,7 @@ class ConversationStreamCommand {
|
|
|
29
29
|
/** Get the WebSocket path segment. */
|
|
30
30
|
getWebSocketPathSegment() {
|
|
31
31
|
// Path includes the conversation ID
|
|
32
|
-
return `api/v1/stream/${this.config.conversationId}`;
|
|
32
|
+
return `api/v1/stream/${this.config.conversationId ? `${this.config.conversationId}` : ""}`;
|
|
33
33
|
}
|
|
34
34
|
/** Serializer function for outgoing payloads. */
|
|
35
35
|
serializeSendPayload(payload) {
|