app-tutor-ai-consumer 1.11.0 → 1.13.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.
@@ -19,6 +19,7 @@ env:
19
19
  CLOUDFRONT_URL: https://app-club-microfrontends-prod.cp.hotmart.com
20
20
  SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
21
21
  BRANCH_REF: main
22
+ LANG_ENV: production
22
23
 
23
24
  jobs:
24
25
  deploy-production:
@@ -56,6 +57,22 @@ jobs:
56
57
  - name: Install Dependencies
57
58
  run: npm ci --include=optional
58
59
 
60
+
61
+ - name: Rebuild Cache
62
+ uses: Hotmart-Org/actions/cache@master
63
+ with:
64
+ bucket: buildstaging-pipeline-cache
65
+ cache-key: "${{ hashFiles('package.json') }}"
66
+ rebuild: true
67
+ mount: 'node_modules/'
68
+
69
+ - name: pre-build-production
70
+ run: |
71
+ echo "${{ env.LANG_ENV }}"
72
+ rm -rf public/locales
73
+ mkdir public/locales
74
+ npm run fetch-langs
75
+
59
76
  - name: Build Prod
60
77
  run: npm run build && ls -la ./dist
61
78
 
package/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ # [1.13.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.12.0...v1.13.0) (2025-07-21)
2
+
3
+ ### Features
4
+
5
+ - adding env values to production ([ec891e2](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/ec891e2692769a44e54e83ebeb6cb024c0f99cd1))
6
+
7
+ # [1.12.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.11.0...v1.12.0) (2025-07-21)
8
+
9
+ ### Features
10
+
11
+ - adding fetch langs and cache in production pipeline ([459ced7](https://github.com/Hotmart-Org/app-tutor-ai-consumer/commit/459ced7e9c9eca164b855416d4da99f255e02275))
12
+
1
13
  # [1.11.0](https://github.com/Hotmart-Org/app-tutor-ai-consumer/compare/v1.10.0...v1.11.0) (2025-07-17)
2
14
 
3
15
  ### Features
@@ -27,8 +27,8 @@ FIREBASE_PROJECT_ID=omnichat-cad8c
27
27
  FIREBASE_STORAGE_BUCKET=omnichat-cad8c.appspot.com
28
28
 
29
29
  # C3PO
30
- API_CONVERSATION_URL=
31
- API_AUTH_URL=
30
+ API_CONVERSATION_URL=https://c3po-api-conversations.vulcano.rocks
31
+ API_AUTH_URL=https://c3po-api-auth.vulcano.rocks/v1
32
32
 
33
33
  # VLC
34
34
  USER_VLC=
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "app-tutor-ai-consumer",
3
- "version": "1.11.0",
3
+ "version": "1.13.0",
4
4
  "main": "index.js",
5
5
  "scripts": {
6
6
  "dev": "rspack serve --env=development --config config/rspack/rspack.config.js",