@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 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;
@@ -81,6 +81,7 @@ router.post('/:handle/ui', async (req, res) => {
81
81
  path: screen.path,
82
82
  description: screen.requirements,
83
83
  name: screen.name,
84
+ title: screen.title,
84
85
  filename: screen.filename,
85
86
  }, innerConversationId);
86
87
  screenStream.on('data', (screenData) => {
@@ -3,6 +3,7 @@ export declare const STORM_ID = "storm";
3
3
  export declare const ConversationIdHeader = "Conversation-Id";
4
4
  export interface UIPagePrompt {
5
5
  name: string;
6
+ title: string;
6
7
  filename: string;
7
8
  prompt: string;
8
9
  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;
@@ -81,6 +81,7 @@ router.post('/:handle/ui', async (req, res) => {
81
81
  path: screen.path,
82
82
  description: screen.requirements,
83
83
  name: screen.name,
84
+ title: screen.title,
84
85
  filename: screen.filename,
85
86
  }, innerConversationId);
86
87
  screenStream.on('data', (screenData) => {
@@ -3,6 +3,7 @@ export declare const STORM_ID = "storm";
3
3
  export declare const ConversationIdHeader = "Conversation-Id";
4
4
  export interface UIPagePrompt {
5
5
  name: string;
6
+ title: string;
6
7
  filename: string;
7
8
  prompt: string;
8
9
  path: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.58.1",
3
+ "version": "0.58.2",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -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;
@@ -104,6 +104,7 @@ router.post('/:handle/ui', async (req: KapetaBodyRequest, res: Response) => {
104
104
  path: screen.path,
105
105
  description: screen.requirements,
106
106
  name: screen.name,
107
+ title: screen.title,
107
108
  filename: screen.filename,
108
109
  },
109
110
  innerConversationId
@@ -22,6 +22,7 @@ export const ConversationIdHeader = 'Conversation-Id';
22
22
 
23
23
  export interface UIPagePrompt {
24
24
  name: string;
25
+ title: string;
25
26
  filename: string;
26
27
  prompt: string;
27
28
  path: string;