@kapeta/local-cluster-service 0.58.3 → 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,17 @@
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
+
8
+ ## [0.58.4](https://github.com/kapetacom/local-cluster-service/compare/v0.58.3...v0.58.4) (2024-07-29)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * fix provider matching when replacing versions in archetypes ([d0554b2](https://github.com/kapetacom/local-cluster-service/commit/d0554b284a57cd4a436a7f00cbbd698a39ffe071))
14
+
1
15
  ## [0.58.3](https://github.com/kapetacom/local-cluster-service/compare/v0.58.2...v0.58.3) (2024-07-26)
2
16
 
3
17
 
@@ -710,7 +710,7 @@ class StormEventParser {
710
710
  for (const prop in options) {
711
711
  if (options.hasOwnProperty(prop)) {
712
712
  const value = options[prop];
713
- if (value.startsWith(kind)) {
713
+ if (value.indexOf(kind) > 0) {
714
714
  return value;
715
715
  }
716
716
  }
@@ -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 {
@@ -710,7 +710,7 @@ class StormEventParser {
710
710
  for (const prop in options) {
711
711
  if (options.hasOwnProperty(prop)) {
712
712
  const value = options[prop];
713
- if (value.startsWith(kind)) {
713
+ if (value.indexOf(kind) > 0) {
714
714
  return value;
715
715
  }
716
716
  }
@@ -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.3",
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": {
@@ -925,7 +925,7 @@ export class StormEventParser {
925
925
  for (const prop in options) {
926
926
  if (options.hasOwnProperty(prop)) {
927
927
  const value = options[prop];
928
- if (value.startsWith(kind)) {
928
+ if (value.indexOf(kind) > 0) {
929
929
  return value;
930
930
  }
931
931
  }
@@ -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