@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 ? `// filename: theme.css\n${theme}` : undefined,
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 ? `// filename: theme.css\n${theme}` : undefined,
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.67.3",
3
+ "version": "0.67.4",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -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 ? `// filename: theme.css\n${theme}` : undefined,
367
+ theme: theme || undefined,
368
368
  pages: Object.values(uniqueUserJourneyScreens).map((screen) => ({
369
369
  name: screen.name,
370
370
  title: screen.title,
@@ -43,7 +43,7 @@ export interface UIPagePrompt {
43
43
  description: string;
44
44
  storage_prefix: string;
45
45
  shell_page?: string;
46
- // contents of theme.css
46
+ // contents of theme.md
47
47
  theme?: string;
48
48
  }
49
49