@kapeta/local-cluster-service 0.67.3 → 0.67.4
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,10 @@
|
|
1
|
+
## [0.67.4](https://github.com/kapetacom/local-cluster-service/compare/v0.67.3...v0.67.4) (2024-08-30)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Use theme.md content ([dde00ac](https://github.com/kapetacom/local-cluster-service/commit/dde00accee6226e367b0cff33b66a6e98b27b4f0))
|
7
|
+
|
1
8
|
## [0.67.3](https://github.com/kapetacom/local-cluster-service/compare/v0.67.2...v0.67.3) (2024-08-30)
|
2
9
|
|
3
10
|
|
@@ -303,7 +303,7 @@ router.post('/:handle/ui', async (req, res) => {
|
|
303
303
|
await waitForStormStream(userJourneysStream);
|
304
304
|
// Get the UI shells
|
305
305
|
const shellsStream = await stormClient_1.stormClient.createUIShells({
|
306
|
-
theme: theme
|
306
|
+
theme: theme || undefined,
|
307
307
|
pages: Object.values(uniqueUserJourneyScreens).map((screen) => ({
|
308
308
|
name: screen.name,
|
309
309
|
title: screen.title,
|
@@ -303,7 +303,7 @@ router.post('/:handle/ui', async (req, res) => {
|
|
303
303
|
await waitForStormStream(userJourneysStream);
|
304
304
|
// Get the UI shells
|
305
305
|
const shellsStream = await stormClient_1.stormClient.createUIShells({
|
306
|
-
theme: theme
|
306
|
+
theme: theme || undefined,
|
307
307
|
pages: Object.values(uniqueUserJourneyScreens).map((screen) => ({
|
308
308
|
name: screen.name,
|
309
309
|
title: screen.title,
|
package/package.json
CHANGED
package/src/storm/routes.ts
CHANGED
@@ -364,7 +364,7 @@ router.post('/:handle/ui', async (req: KapetaBodyRequest, res: Response) => {
|
|
364
364
|
// Get the UI shells
|
365
365
|
const shellsStream = await stormClient.createUIShells(
|
366
366
|
{
|
367
|
-
theme: theme
|
367
|
+
theme: theme || undefined,
|
368
368
|
pages: Object.values(uniqueUserJourneyScreens).map((screen) => ({
|
369
369
|
name: screen.name,
|
370
370
|
title: screen.title,
|