app-tutor-ai-consumer 1.51.0 → 1.52.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.
@@ -25,7 +25,6 @@ jobs:
25
25
  uses: Hotmart-Org/actions/codeartifact@master
26
26
  with:
27
27
  npmrc: ${{ secrets.NPM_RC }}
28
- fontawesome-registry-token: ${{ secrets.FONTAWESOME_REGISTRY_TOKEN }}
29
28
 
30
29
  - name: Restore Cache
31
30
  uses: Hotmart-Org/actions/cache@master
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ # [1.52.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.51.0...v1.52.0) (2026-01-19)
2
+
3
+ ### Features
4
+
5
+ - send sessionId on tutor send message ([aac00a7](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/aac00a7eda569b90b90ea3947e3b7a7bbeab37c7))
6
+
1
7
  # [1.51.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.50.0...v1.51.0) (2026-01-13)
2
8
 
3
9
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-tutor-ai-consumer",
3
- "version": "1.51.0",
3
+ "version": "1.52.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.conversationId,
126
+ sessionId: defaultSettings.sessionId,
127
127
  userId: String(getProfileMock.data.userId)
128
128
  }
129
129
  }
@@ -110,7 +110,7 @@ function useSendTextMessage() {
110
110
  },
111
111
  externalId: v4(),
112
112
  namespace: settings.namespace,
113
- sessionId: settings.conversationId,
113
+ sessionId: isAgentMode ? settings.conversationId : settings.sessionId,
114
114
  userId
115
115
  }
116
116
  }