app-tutor-ai-consumer 1.28.0 → 1.29.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.
@@ -124,6 +124,21 @@ jobs:
124
124
  description: 'Deploy: ${{env.APP_NAME}} v${{env.VERSION}} - ${{ github.ref_name }}'
125
125
 
126
126
  - name: Sends chat notification
127
+ uses: Hotmart-Org/actions/notification@master
128
+ with:
129
+ webhook-chat: >-
130
+ https://chat.googleapis.com/v1/spaces/AAAA1sn1iiE/messages?key=AIzaSyDdI0hCZtE6vySjMm-WEfRq3CPzqKqqsHI&token=JVaCKxIPX2oHcZi_KJoCgwFpGg54FxVUNDaB8ll3AQ4
131
+ author: false
132
+ type: Original
133
+ title: Release *@hotmart/${{ env.APP_NAME }}*
134
+ from: |-
135
+ \nAuthor: *${{ github.actor }}*
136
+ Version: *${{ github.ref }}*
137
+ Environment: *Production*
138
+ content: "Message *@hotmart/${{ env.APP_NAME }}* was deployed successfully 🚀 \\n\\n *Sentry Dashboard:* https://hotmart.sentry.io/insights/projects/app-tutor-ai-consumer/?project=4509837136887808&statsPeriod=24h \\n *Repository Release:* https://github.com/Hotmart-Org/${{ env.APP_NAME }}/releases \\n *Projects Map:* https://hotmart.atlassian.net/wiki/spaces/Consumer/pages/423133274/Monitoramento+Club \\n *New Relic Dashboard:* https://one.newrelic.com/dashboards/detail/Mjc1MDN8VklafERBU0hCT0FSRHxkYTo2MTIyNTA5"
139
+
140
+
141
+ - name: Notify Google Chat
127
142
  uses: Hotmart-Org/actions/notification@master
128
143
  with:
129
144
  type: 'Original'
package/CHANGELOG.md CHANGED
@@ -1,3 +1,11 @@
1
+ # [1.29.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.28.1...v1.29.0) (2025-08-29)
2
+
3
+ ### Features
4
+
5
+ - adding club deployment chanel message ([2de3e20](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/2de3e207bc44df5098c205cc086fc7858eb78b1e))
6
+
7
+ ## [1.28.1](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.28.0...v1.28.1) (2025-08-21)
8
+
1
9
  # [1.28.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.27.6...v1.28.0) (2025-08-19)
2
10
 
3
11
  ### Features
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-tutor-ai-consumer",
3
- "version": "1.28.0",
3
+ "version": "1.29.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "dev": "rspack serve --env=development --config config/rspack/rspack.config.js",
@@ -49,7 +49,7 @@ function WidgetHeaderActions({
49
49
  <div
50
50
  className={clsx('flex max-w-max items-center gap-3 text-neutral-700', styles.btnContainer)}>
51
51
  {actionButtons.includes('archive') && (
52
- <Tooltip show={!isMobile} content={t('general.buttons.archive')}>
52
+ <Tooltip show={!isMobile} content={t('general.buttons.archive')} position='bottom'>
53
53
  <Button
54
54
  show={actionButtons.includes('archive')}
55
55
  onClick={handleClickArchive}