@nexusm/sdk 3.0.0 → 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.
- package/README.md +10 -7
- package/dist/index.d.mts +118 -48
- package/dist/index.d.ts +118 -48
- package/dist/index.js +7 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +7 -3
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -1
package/dist/index.mjs
CHANGED
|
@@ -1056,10 +1056,14 @@ var ConversationService = class extends BaseService {
|
|
|
1056
1056
|
return this.http.get("/conversations", params, options?.signal);
|
|
1057
1057
|
}
|
|
1058
1058
|
/**
|
|
1059
|
-
* Retrieve a conversation
|
|
1059
|
+
* Retrieve a conversation.
|
|
1060
1060
|
*
|
|
1061
|
-
*
|
|
1062
|
-
*
|
|
1061
|
+
* v4.0.0 BREAKING: returns `Conversation` — the backend response has no
|
|
1062
|
+
* `messages` array (the previous `ConversationDetail` shape was a
|
|
1063
|
+
* phantom). Fetch messages via {@link getMessages}.
|
|
1064
|
+
*
|
|
1065
|
+
* @param conversationId - Compound conversation ID to retrieve.
|
|
1066
|
+
* @returns The conversation record.
|
|
1063
1067
|
* @throws {ApiError} 404 if the conversation does not exist.
|
|
1064
1068
|
*/
|
|
1065
1069
|
async get(conversationId, options) {
|