@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/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 with its messages included.
1059
+ * Retrieve a conversation.
1060
1060
  *
1061
- * @param conversationId - UUID of the conversation to retrieve.
1062
- * @returns Conversation detail including the full message list.
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) {