@praxisui/page-builder 9.0.0-beta.4 → 9.0.0-beta.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.
@@ -15305,6 +15305,21 @@ class PageBuilderAgenticAuthoringTurnFlow {
15305
15305
  if (event.type === 'result') {
15306
15306
  return this.toResultTurnFromStreamPayload(payload, request, prompt, event);
15307
15307
  }
15308
+ if (event.type === 'intent.resolved') {
15309
+ const assistantMessage = this.readString(payload, 'userFacingUnderstanding')?.trim()
15310
+ || this.readString(payload, 'assistantMessage')?.trim()
15311
+ || undefined;
15312
+ return {
15313
+ state: 'processing',
15314
+ phase: this.phaseForStreamPayload({ ...payload, phase: 'intent.resolve' }),
15315
+ assistantMessage,
15316
+ canApply: false,
15317
+ statusText: assistantMessage ?? this.statusForStreamPayload(payload),
15318
+ errorText: '',
15319
+ preview: null,
15320
+ diagnostics: { intentResolved: payload },
15321
+ };
15322
+ }
15308
15323
  if (event.type === 'error') {
15309
15324
  const message = this.describeStreamError(payload);
15310
15325
  return {
@@ -17974,7 +17989,7 @@ function projectKnowledgeTarget(changeSet, conceptKey) {
17974
17989
  };
17975
17990
  }
17976
17991
 
17977
- const AGENTIC_AUTHORING_TURN_TERMINAL_TIMEOUT_MS = 270_000;
17992
+ const AGENTIC_AUTHORING_TURN_TERMINAL_TIMEOUT_MS = 90_000;
17978
17993
  const AGENTIC_PAGE_COMPOSITION_REQUEST_OUTPUT = 'agenticPageCompositionRequested';
17979
17994
  class DynamicPageBuilderComponent {
17980
17995
  dialog;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@praxisui/page-builder",
3
- "version": "9.0.0-beta.4",
3
+ "version": "9.0.0-beta.5",
4
4
  "description": "Page and widget builder utilities for Praxis UI (grid, dynamic widgets, editors).",
5
5
  "peerDependencies": {
6
6
  "@angular/common": "^21.0.0",
@@ -8,9 +8,9 @@
8
8
  "@angular/forms": "^21.0.0",
9
9
  "@angular/cdk": "^21.0.0",
10
10
  "@angular/material": "^21.0.0",
11
- "@praxisui/ai": "^9.0.0-beta.4",
12
- "@praxisui/core": "^9.0.0-beta.4",
13
- "@praxisui/settings-panel": "^9.0.0-beta.4",
11
+ "@praxisui/ai": "^9.0.0-beta.5",
12
+ "@praxisui/core": "^9.0.0-beta.5",
13
+ "@praxisui/settings-panel": "^9.0.0-beta.5",
14
14
  "rxjs": "~7.8.0"
15
15
  },
16
16
  "dependencies": {