@kapeta/local-cluster-service 0.58.4 → 0.58.5

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.58.5](https://github.com/kapetacom/local-cluster-service/compare/v0.58.4...v0.58.5) (2024-07-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Add title to UserJourney interface ([a8688f3](https://github.com/kapetacom/local-cluster-service/commit/a8688f39a099e619eaecb5888cddda3c96e68549))
7
+
1
8
  ## [0.58.4](https://github.com/kapetacom/local-cluster-service/compare/v0.58.3...v0.58.4) (2024-07-29)
2
9
 
3
10
 
@@ -291,6 +291,7 @@ export interface UserJourneyScreen {
291
291
  nextScreens: string[];
292
292
  }
293
293
  export interface UserJourney {
294
+ title: string;
294
295
  screens: UserJourneyScreen[];
295
296
  }
296
297
  export interface StormEventUserJourney {
@@ -291,6 +291,7 @@ export interface UserJourneyScreen {
291
291
  nextScreens: string[];
292
292
  }
293
293
  export interface UserJourney {
294
+ title: string;
294
295
  screens: UserJourneyScreen[];
295
296
  }
296
297
  export interface StormEventUserJourney {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.58.4",
3
+ "version": "0.58.5",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -345,6 +345,7 @@ export interface UserJourneyScreen {
345
345
  }
346
346
 
347
347
  export interface UserJourney {
348
+ title: string;
348
349
  screens: UserJourneyScreen[];
349
350
  }
350
351