app-tutor-ai-consumer 1.39.1 → 1.40.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/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [1.40.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.39.1...v1.40.0) (2025-11-17)
2
+
3
+ ### Features
4
+
5
+ - add conversationId on send text message ([6b27c2d](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/6b27c2d78177009a2867df15d5a895232d31a461))
6
+
1
7
  ## [1.39.1](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.39.0...v1.39.1) (2025-11-17)
2
8
 
3
9
  ### Bug Fixes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-tutor-ai-consumer",
3
- "version": "1.39.1",
3
+ "version": "1.40.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "dev": "rspack serve --env=development --config config/rspack/rspack.config.js",
@@ -123,7 +123,7 @@ describe('useSendTextMessage', () => {
123
123
  },
124
124
  externalId: expect.any(String),
125
125
  namespace: defaultSettings.namespace,
126
- sessionId: defaultSettings.sessionId,
126
+ sessionId: defaultSettings.conversationId,
127
127
  userId: String(getProfileMock.data.userId)
128
128
  }
129
129
  }
@@ -109,7 +109,7 @@ function useSendTextMessage() {
109
109
  },
110
110
  externalId: v4(),
111
111
  namespace: settings.namespace,
112
- sessionId: settings.sessionId,
112
+ sessionId: settings.conversationId,
113
113
  userId
114
114
  }
115
115
  }