@kapeta/local-cluster-service 0.58.1 → 0.58.2
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 +7 -0
- package/dist/cjs/src/storm/events.d.ts +2 -0
- package/dist/cjs/src/storm/routes.js +1 -0
- package/dist/cjs/src/storm/stormClient.d.ts +1 -0
- package/dist/esm/src/storm/events.d.ts +2 -0
- package/dist/esm/src/storm/routes.js +1 -0
- package/dist/esm/src/storm/stormClient.d.ts +1 -0
- package/package.json +1 -1
- package/src/storm/events.ts +2 -0
- package/src/storm/routes.ts +1 -0
- package/src/storm/stormClient.ts +1 -0
package/CHANGELOG.md
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.58.2](https://github.com/kapetacom/local-cluster-service/compare/v0.58.1...v0.58.2) (2024-07-25)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* Include title in journeys and pages ([16def8d](https://github.com/kapetacom/local-cluster-service/commit/16def8d726fb3b922ffc6934ce59c981996c3523))
|
7
|
+
|
1
8
|
## [0.58.1](https://github.com/kapetacom/local-cluster-service/compare/v0.58.0...v0.58.1) (2024-07-24)
|
2
9
|
|
3
10
|
|
@@ -268,6 +268,7 @@ export interface StormEventPhases {
|
|
268
268
|
}
|
269
269
|
export interface Page {
|
270
270
|
name: string;
|
271
|
+
title: string;
|
271
272
|
description: string;
|
272
273
|
content: string;
|
273
274
|
path: string;
|
@@ -282,6 +283,7 @@ export interface StormEventPage {
|
|
282
283
|
}
|
283
284
|
export interface UserJourneyScreen {
|
284
285
|
name: string;
|
286
|
+
title: string;
|
285
287
|
filename: string;
|
286
288
|
requirements: string;
|
287
289
|
path: string;
|
@@ -268,6 +268,7 @@ export interface StormEventPhases {
|
|
268
268
|
}
|
269
269
|
export interface Page {
|
270
270
|
name: string;
|
271
|
+
title: string;
|
271
272
|
description: string;
|
272
273
|
content: string;
|
273
274
|
path: string;
|
@@ -282,6 +283,7 @@ export interface StormEventPage {
|
|
282
283
|
}
|
283
284
|
export interface UserJourneyScreen {
|
284
285
|
name: string;
|
286
|
+
title: string;
|
285
287
|
filename: string;
|
286
288
|
requirements: string;
|
287
289
|
path: string;
|
package/package.json
CHANGED
package/src/storm/events.ts
CHANGED
@@ -318,6 +318,7 @@ export interface StormEventPhases {
|
|
318
318
|
|
319
319
|
export interface Page {
|
320
320
|
name: string;
|
321
|
+
title: string;
|
321
322
|
description: string;
|
322
323
|
content: string;
|
323
324
|
path: string;
|
@@ -335,6 +336,7 @@ export interface StormEventPage {
|
|
335
336
|
|
336
337
|
export interface UserJourneyScreen {
|
337
338
|
name: string;
|
339
|
+
title: string;
|
338
340
|
filename: string;
|
339
341
|
requirements: string;
|
340
342
|
path: string;
|
package/src/storm/routes.ts
CHANGED