@praxisui/ai 8.0.0-beta.26 → 8.0.0-beta.28
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/fesm2022/praxisui-ai.mjs +624 -32
- package/index.d.ts +192 -11
- package/package.json +2 -2
package/index.d.ts
CHANGED
|
@@ -18,7 +18,7 @@ declare class PraxisAi {
|
|
|
18
18
|
* Do not edit manually. Run praxis-config-starter/tools/contracts/generate-ai-contract-bindings.js.
|
|
19
19
|
*/
|
|
20
20
|
declare const AI_CONTRACT_VERSION: "v1.1";
|
|
21
|
-
declare const AI_CONTRACT_SCHEMA_HASH: "
|
|
21
|
+
declare const AI_CONTRACT_SCHEMA_HASH: "33c545b58f49404695bf845d2094a5b2858538a54200745f1ecb3ca2d0628f01";
|
|
22
22
|
declare const AI_STREAM_EVENT_SCHEMA_VERSION: "v1";
|
|
23
23
|
declare const AI_DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
|
|
24
24
|
declare const AI_STREAM_EVENT_TYPES: readonly ["status", "thought.step", "heartbeat", "result", "error", "cancelled"];
|
|
@@ -221,6 +221,77 @@ interface AgenticAuthoringQuickReplyContract {
|
|
|
221
221
|
contextHints?: AiContextHintsContract | null;
|
|
222
222
|
[key: string]: AiJsonValue | AiContextHintsContract | undefined;
|
|
223
223
|
}
|
|
224
|
+
interface AgenticAuthoringSemanticSelectedResourceContract {
|
|
225
|
+
resourcePath?: string | null;
|
|
226
|
+
operation?: string | null;
|
|
227
|
+
schemaUrl?: string | null;
|
|
228
|
+
submitUrl?: string | null;
|
|
229
|
+
submitMethod?: string | null;
|
|
230
|
+
[key: string]: AiJsonValue | undefined;
|
|
231
|
+
}
|
|
232
|
+
interface AgenticAuthoringSemanticRetrievalEvidenceContract {
|
|
233
|
+
retrievalSource?: string | null;
|
|
234
|
+
evidence?: string[];
|
|
235
|
+
candidateCount?: number;
|
|
236
|
+
[key: string]: AiJsonValue | undefined;
|
|
237
|
+
}
|
|
238
|
+
interface AgenticAuthoringEvidenceBundleEvidenceContract {
|
|
239
|
+
source?: string | null;
|
|
240
|
+
kind?: string | null;
|
|
241
|
+
ref?: string | null;
|
|
242
|
+
summary?: string | null;
|
|
243
|
+
confidence?: number | null;
|
|
244
|
+
matchedTerms?: string[];
|
|
245
|
+
tenantId?: string | null;
|
|
246
|
+
environment?: string | null;
|
|
247
|
+
releaseId?: string | null;
|
|
248
|
+
[key: string]: AiJsonValue | undefined;
|
|
249
|
+
}
|
|
250
|
+
interface AgenticAuthoringEvidenceBundleContract {
|
|
251
|
+
schemaVersion?: string | null;
|
|
252
|
+
retrievalSource?: string | null;
|
|
253
|
+
evidence?: AgenticAuthoringEvidenceBundleEvidenceContract[];
|
|
254
|
+
evidenceCount?: number;
|
|
255
|
+
[key: string]: AiJsonValue | AgenticAuthoringEvidenceBundleEvidenceContract[] | undefined;
|
|
256
|
+
}
|
|
257
|
+
interface AgenticAuthoringSemanticRefinementContract {
|
|
258
|
+
schemaVersion?: string | null;
|
|
259
|
+
refinementKind?: 'visual_projection' | 'data_source' | 'filtering' | 'layout' | 'metric' | 'copy' | 'governance' | string | null;
|
|
260
|
+
preserve?: string[];
|
|
261
|
+
replace?: Record<string, string>;
|
|
262
|
+
add?: Record<string, string[]>;
|
|
263
|
+
remove?: string[];
|
|
264
|
+
rationale?: string | null;
|
|
265
|
+
confidence?: number | null;
|
|
266
|
+
[key: string]: AiJsonValue | Record<string, string> | Record<string, string[]> | undefined;
|
|
267
|
+
}
|
|
268
|
+
interface AgenticAuthoringSemanticDecisionContract {
|
|
269
|
+
schemaVersion?: string | null;
|
|
270
|
+
decisionId?: string | null;
|
|
271
|
+
operationKind?: string | null;
|
|
272
|
+
artifactKind?: string | null;
|
|
273
|
+
changeKind?: string | null;
|
|
274
|
+
selectedResource?: AgenticAuthoringSemanticSelectedResourceContract | null;
|
|
275
|
+
visualizationDecision?: AgenticAuthoringVisualizationDecisionContract | null;
|
|
276
|
+
retrievalEvidence?: AgenticAuthoringSemanticRetrievalEvidenceContract | null;
|
|
277
|
+
retrievedEvidence?: AgenticAuthoringEvidenceBundleContract | null;
|
|
278
|
+
reviewRequired?: boolean | null;
|
|
279
|
+
reviewReason?: string | null;
|
|
280
|
+
previousDecisionRef?: string | null;
|
|
281
|
+
refinementOf?: string | null;
|
|
282
|
+
conversationId?: string | null;
|
|
283
|
+
turnId?: string | null;
|
|
284
|
+
userGoal?: string | null;
|
|
285
|
+
activeObjective?: string | null;
|
|
286
|
+
artifactIntent?: string | null;
|
|
287
|
+
visualIntent?: string | null;
|
|
288
|
+
constraints?: AiJsonObject | null;
|
|
289
|
+
refinement?: AgenticAuthoringSemanticRefinementContract | null;
|
|
290
|
+
previousDecisionId?: string | null;
|
|
291
|
+
rationale?: string | null;
|
|
292
|
+
confidence?: number | null;
|
|
293
|
+
[key: string]: AiJsonValue | AgenticAuthoringSemanticSelectedResourceContract | AgenticAuthoringSemanticRetrievalEvidenceContract | AgenticAuthoringEvidenceBundleContract | AgenticAuthoringSemanticRefinementContract | AgenticAuthoringVisualizationDecisionContract | undefined;
|
|
294
|
+
}
|
|
224
295
|
interface AgenticAuthoringIntentResolutionResultContract {
|
|
225
296
|
valid?: boolean;
|
|
226
297
|
operationKind?: string | null;
|
|
@@ -231,13 +302,42 @@ interface AgenticAuthoringIntentResolutionResultContract {
|
|
|
231
302
|
gate?: AiJsonObject | null;
|
|
232
303
|
effectivePrompt?: string | null;
|
|
233
304
|
assistantMessage?: string | null;
|
|
305
|
+
assistantContent?: AiJsonObject | null;
|
|
234
306
|
quickReplies?: AgenticAuthoringQuickReplyContract[];
|
|
235
307
|
pendingClarification?: AgenticAuthoringPendingClarificationContract | null;
|
|
236
308
|
clarificationQuestions?: string[];
|
|
237
309
|
warnings?: string[];
|
|
238
310
|
failureCodes?: string[];
|
|
239
311
|
llmDiagnostics?: AiJsonObject | null;
|
|
240
|
-
|
|
312
|
+
semanticDecision?: AgenticAuthoringSemanticDecisionContract | null;
|
|
313
|
+
visualizationDecision?: AgenticAuthoringVisualizationDecisionContract | null;
|
|
314
|
+
[key: string]: AiJsonValue | AgenticAuthoringCandidateContract | AgenticAuthoringCandidateContract[] | AgenticAuthoringQuickReplyContract | AgenticAuthoringQuickReplyContract[] | AgenticAuthoringPendingClarificationContract | AgenticAuthoringSemanticDecisionContract | AgenticAuthoringVisualizationDecisionContract | undefined;
|
|
315
|
+
}
|
|
316
|
+
interface AgenticAuthoringVisualizationAxisDecisionContract {
|
|
317
|
+
concept?: string | null;
|
|
318
|
+
field?: string | null;
|
|
319
|
+
label?: string | null;
|
|
320
|
+
chartType?: string | null;
|
|
321
|
+
orientation?: string | null;
|
|
322
|
+
metricAggregation?: string | null;
|
|
323
|
+
metricField?: string | null;
|
|
324
|
+
metricLabel?: string | null;
|
|
325
|
+
provenance?: string | null;
|
|
326
|
+
[key: string]: AiJsonValue | undefined;
|
|
327
|
+
}
|
|
328
|
+
interface AgenticAuthoringVisualizationDecisionContract {
|
|
329
|
+
schemaVersion?: string | null;
|
|
330
|
+
intent?: string | null;
|
|
331
|
+
layoutKind?: string | null;
|
|
332
|
+
primaryComponent?: string | null;
|
|
333
|
+
axes?: AgenticAuthoringVisualizationAxisDecisionContract[];
|
|
334
|
+
includeSummary?: boolean | null;
|
|
335
|
+
includeDetailTable?: boolean | null;
|
|
336
|
+
excludedComponentIds?: string[];
|
|
337
|
+
includeFilters?: boolean | null;
|
|
338
|
+
includeKpis?: boolean | null;
|
|
339
|
+
provenance?: string | null;
|
|
340
|
+
[key: string]: AiJsonValue | AgenticAuthoringVisualizationAxisDecisionContract[] | string[] | undefined;
|
|
241
341
|
}
|
|
242
342
|
interface AgenticAuthoringResourceCandidatesRequestContract {
|
|
243
343
|
retrievalQuery?: string | null;
|
|
@@ -252,6 +352,7 @@ interface AgenticAuthoringResourceCandidatesResultContract {
|
|
|
252
352
|
retrievalQuery?: string | null;
|
|
253
353
|
artifactKind?: string | null;
|
|
254
354
|
assistantMessage?: string | null;
|
|
355
|
+
assistantContent?: AiJsonObject | null;
|
|
255
356
|
candidates?: AgenticAuthoringCandidateContract[];
|
|
256
357
|
quickReplies?: AgenticAuthoringQuickReplyContract[];
|
|
257
358
|
warnings?: string[];
|
|
@@ -278,7 +379,8 @@ interface AgenticAuthoringTurnStreamRequestContract extends AgenticAuthoringConv
|
|
|
278
379
|
apiKey?: string | null;
|
|
279
380
|
contextHints?: AiContextHintsContract | null;
|
|
280
381
|
componentCapabilities?: AgenticAuthoringComponentCapabilitiesResultContract | null;
|
|
281
|
-
|
|
382
|
+
activeSemanticDecision?: AgenticAuthoringSemanticDecisionContract | null;
|
|
383
|
+
[key: string]: AiJsonValue | AiContextHintsContract | AgenticAuthoringComponentCapabilitiesResultContract | AgenticAuthoringSemanticDecisionContract | AgenticAuthoringConversationMessageContract[] | AgenticAuthoringPendingClarificationContract | AgenticAuthoringAttachmentSummaryContract[] | undefined;
|
|
282
384
|
}
|
|
283
385
|
interface AgenticAuthoringPreviewResultContract {
|
|
284
386
|
valid?: boolean;
|
|
@@ -293,9 +395,10 @@ interface AgenticAuthoringApplyRequestContract {
|
|
|
293
395
|
componentType: string;
|
|
294
396
|
componentId: string;
|
|
295
397
|
scope?: string | null;
|
|
296
|
-
|
|
398
|
+
compiledFormPatch: AiJsonObject;
|
|
297
399
|
tags?: AiJsonObject | null;
|
|
298
|
-
|
|
400
|
+
semanticDecision: AgenticAuthoringSemanticDecisionContract;
|
|
401
|
+
[key: string]: AiJsonValue | AgenticAuthoringSemanticDecisionContract | undefined;
|
|
299
402
|
}
|
|
300
403
|
interface AgenticAuthoringApplyResultContract {
|
|
301
404
|
applied?: boolean;
|
|
@@ -335,6 +438,7 @@ interface AgenticAuthoringComponentCapabilitiesResultContract {
|
|
|
335
438
|
interface AgenticAuthoringManifestEditPlanRequestContract {
|
|
336
439
|
config?: AiJsonObject | null;
|
|
337
440
|
plan?: AiJsonObject | null;
|
|
441
|
+
validationContext?: AiJsonObject | null;
|
|
338
442
|
}
|
|
339
443
|
interface AgenticAuthoringResolveTargetRequestContract {
|
|
340
444
|
config?: AiJsonObject | null;
|
|
@@ -688,8 +792,32 @@ interface PraxisAssistantShellQuickReply {
|
|
|
688
792
|
description?: string | null;
|
|
689
793
|
icon?: string | null;
|
|
690
794
|
tone?: string | null;
|
|
795
|
+
presentation?: PraxisAssistantShellQuickReplyPresentation | null;
|
|
691
796
|
contextHints?: Readonly<Record<string, unknown>> | null;
|
|
692
797
|
}
|
|
798
|
+
type PraxisAssistantShellQuickReplyPresentationKind = 'resource-candidate' | 'contextual-action' | 'governance-confirmation' | 'guided-option' | string;
|
|
799
|
+
interface PraxisAssistantShellQuickReplyPresentation {
|
|
800
|
+
kind?: PraxisAssistantShellQuickReplyPresentationKind | null;
|
|
801
|
+
categoryLabel?: string | null;
|
|
802
|
+
description?: string | null;
|
|
803
|
+
ctaLabel?: string | null;
|
|
804
|
+
icon?: string | null;
|
|
805
|
+
tone?: string | null;
|
|
806
|
+
technicalDetails?: string | null;
|
|
807
|
+
evidence?: readonly PraxisAssistantShellQuickReplyEvidence[];
|
|
808
|
+
items?: readonly PraxisAssistantShellQuickReplyPresentationItem[];
|
|
809
|
+
}
|
|
810
|
+
interface PraxisAssistantShellQuickReplyEvidence {
|
|
811
|
+
icon?: string | null;
|
|
812
|
+
value: string;
|
|
813
|
+
ariaLabel?: string | null;
|
|
814
|
+
}
|
|
815
|
+
interface PraxisAssistantShellQuickReplyPresentationItem {
|
|
816
|
+
key?: 'bestFor' | 'returns' | 'nextStep' | string;
|
|
817
|
+
label: string;
|
|
818
|
+
value: string;
|
|
819
|
+
icon?: string | null;
|
|
820
|
+
}
|
|
693
821
|
interface PraxisAssistantShellMessageAction {
|
|
694
822
|
id: string;
|
|
695
823
|
label: string;
|
|
@@ -1029,6 +1157,17 @@ declare abstract class BaseAiAdapter<TConfig = any> implements AiConfigAdapter<T
|
|
|
1029
1157
|
protected getCriticalWarnings(patch: any): string[];
|
|
1030
1158
|
}
|
|
1031
1159
|
|
|
1160
|
+
interface AiGovernedDecisionRoutingOptions {
|
|
1161
|
+
localCompositionTerms?: readonly string[];
|
|
1162
|
+
}
|
|
1163
|
+
/**
|
|
1164
|
+
* @deprecated Component assistants must not infer governed authoring from user
|
|
1165
|
+
* wording. Route through the backend semantic resolver and use this only for
|
|
1166
|
+
* explicit, structured context provided by a canonical backend source.
|
|
1167
|
+
*/
|
|
1168
|
+
declare function shouldRoutePromptToGovernedDecision(prompt: string, contextHints?: AiJsonObject, options?: AiGovernedDecisionRoutingOptions): boolean;
|
|
1169
|
+
declare function normalizeAuthoringPrompt(prompt: string): string;
|
|
1170
|
+
|
|
1032
1171
|
interface FieldSchemaLike {
|
|
1033
1172
|
label: string;
|
|
1034
1173
|
type: string;
|
|
@@ -1088,7 +1227,7 @@ declare class PraxisAiService {
|
|
|
1088
1227
|
}
|
|
1089
1228
|
|
|
1090
1229
|
declare const AI_INTENT_CONTRACT_VERSION: "v1.1";
|
|
1091
|
-
declare const AI_INTENT_CONTRACT_SCHEMA_HASH: "
|
|
1230
|
+
declare const AI_INTENT_CONTRACT_SCHEMA_HASH: "33c545b58f49404695bf845d2094a5b2858538a54200745f1ecb3ca2d0628f01";
|
|
1092
1231
|
type AiSchemaContext = AiSchemaContextContract;
|
|
1093
1232
|
interface AiSuggestionsRequest {
|
|
1094
1233
|
componentId: string;
|
|
@@ -1262,6 +1401,8 @@ declare class AiBackendApiService {
|
|
|
1262
1401
|
private buildHeaders;
|
|
1263
1402
|
private normalizeContractVersion;
|
|
1264
1403
|
private normalizeContractSchemaHash;
|
|
1404
|
+
private normalizeLegacyPatchConversationIds;
|
|
1405
|
+
private isUuid;
|
|
1265
1406
|
private authoringManifestUrl;
|
|
1266
1407
|
private resolveHeaderMap;
|
|
1267
1408
|
private parsePatchStreamEnvelope;
|
|
@@ -1352,6 +1493,12 @@ declare class PraxisAssistantTurnController {
|
|
|
1352
1493
|
private patchState;
|
|
1353
1494
|
private cloneState;
|
|
1354
1495
|
private toObservable;
|
|
1496
|
+
private buildFlowErrorResult;
|
|
1497
|
+
private describeFlowError;
|
|
1498
|
+
private serializeFlowError;
|
|
1499
|
+
private toRecord;
|
|
1500
|
+
private toString;
|
|
1501
|
+
private toNumber;
|
|
1355
1502
|
}
|
|
1356
1503
|
|
|
1357
1504
|
type PraxisAssistantSessionVisibility = 'active' | 'minimized';
|
|
@@ -1846,6 +1993,15 @@ declare class PraxisAiAssistantComponent implements OnDestroy {
|
|
|
1846
1993
|
}
|
|
1847
1994
|
|
|
1848
1995
|
type ResizeDirection = 'n' | 's' | 'e' | 'w' | 'ne' | 'nw' | 'se' | 'sw';
|
|
1996
|
+
type QuickReplyPresentationItem = PraxisAssistantShellQuickReplyPresentationItem & {
|
|
1997
|
+
key: 'bestFor' | 'returns' | 'nextStep' | string;
|
|
1998
|
+
icon: string;
|
|
1999
|
+
};
|
|
2000
|
+
interface QuickReplyContextChip {
|
|
2001
|
+
icon: string;
|
|
2002
|
+
value: string;
|
|
2003
|
+
ariaLabel: string;
|
|
2004
|
+
}
|
|
1849
2005
|
declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
1850
2006
|
labels: Partial<PraxisAssistantShellLabels> | null;
|
|
1851
2007
|
mode: PraxisAssistantShellMode;
|
|
@@ -1906,7 +2062,6 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
1906
2062
|
protected currentLayout: PraxisAssistantShellLayout;
|
|
1907
2063
|
protected readonly resizeHandles: readonly ResizeDirection[];
|
|
1908
2064
|
private pointerSession;
|
|
1909
|
-
private baselineLayout;
|
|
1910
2065
|
private readonly ownedPreviewUrls;
|
|
1911
2066
|
private readonly onWindowPointerMove;
|
|
1912
2067
|
private readonly onWindowPointerUp;
|
|
@@ -1919,6 +2074,11 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
1919
2074
|
protected onAttachClick(fileInput: HTMLInputElement): void;
|
|
1920
2075
|
protected onAttachmentFilesSelected(event: Event): void;
|
|
1921
2076
|
protected onApply(): void;
|
|
2077
|
+
protected renderMessageText(text: string | null | undefined): string;
|
|
2078
|
+
private renderInlineMarkdown;
|
|
2079
|
+
private escapeHtml;
|
|
2080
|
+
protected shouldShowStatusText(): boolean;
|
|
2081
|
+
protected shouldShowErrorText(): boolean;
|
|
1922
2082
|
protected onShellAction(action: PraxisAssistantShellAction): void;
|
|
1923
2083
|
protected getPrimaryAction(): PraxisAssistantShellAction;
|
|
1924
2084
|
protected getSecondaryActions(): readonly PraxisAssistantShellAction[];
|
|
@@ -1927,16 +2087,37 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
1927
2087
|
protected getShellActionTone(action: PraxisAssistantShellAction): string;
|
|
1928
2088
|
protected trackShellAction(_index: number, action: PraxisAssistantShellAction): string;
|
|
1929
2089
|
private hasRecoverableTurn;
|
|
2090
|
+
private shouldShowAuxiliaryText;
|
|
2091
|
+
private normalizeMessageText;
|
|
1930
2092
|
private getDefaultPrimaryAction;
|
|
1931
2093
|
protected onQuickReply(reply: PraxisAssistantShellQuickReply): void;
|
|
1932
2094
|
protected getQuickReplyAriaLabel(reply: PraxisAssistantShellQuickReply): string;
|
|
1933
2095
|
protected getQuickReplyTechnicalDetails(reply: PraxisAssistantShellQuickReply): string;
|
|
2096
|
+
protected isRichQuickReply(reply: PraxisAssistantShellQuickReply): boolean;
|
|
2097
|
+
protected getQuickReplyDescription(reply: PraxisAssistantShellQuickReply): string;
|
|
2098
|
+
protected getQuickReplyContextChips(reply: PraxisAssistantShellQuickReply): readonly QuickReplyContextChip[];
|
|
2099
|
+
protected getQuickReplyPresentationItems(reply: PraxisAssistantShellQuickReply): readonly QuickReplyPresentationItem[];
|
|
2100
|
+
private defaultQuickReplyPresentation;
|
|
2101
|
+
protected getQuickReplyCategoryLabel(reply: PraxisAssistantShellQuickReply): string;
|
|
2102
|
+
protected getQuickReplyIcon(reply: PraxisAssistantShellQuickReply): string;
|
|
2103
|
+
protected getQuickReplyCtaLabel(reply: PraxisAssistantShellQuickReply): string;
|
|
1934
2104
|
protected getQuickReplyTone(reply: PraxisAssistantShellQuickReply): string;
|
|
2105
|
+
private normalizeQuickReplyTone;
|
|
1935
2106
|
private asRecord;
|
|
1936
2107
|
private stringHint;
|
|
2108
|
+
private quickReplyHint;
|
|
2109
|
+
private hasQuickReplyResourceContext;
|
|
2110
|
+
private isFieldDiscoveryQuickReply;
|
|
2111
|
+
protected isContextualPreviewActionQuickReply(reply: PraxisAssistantShellQuickReply): boolean;
|
|
2112
|
+
private quickReplyPresentation;
|
|
2113
|
+
private quickReplyPresentationKind;
|
|
2114
|
+
private presentationEvidenceToChip;
|
|
2115
|
+
private getContextualActionChips;
|
|
2116
|
+
private isGenericContextualActionDescription;
|
|
2117
|
+
private trimSentencePunctuation;
|
|
2118
|
+
private shortPathLabel;
|
|
2119
|
+
private shortTechnicalLabel;
|
|
1937
2120
|
protected getCloseIcon(): string;
|
|
1938
|
-
protected getResetLayoutLabel(): string;
|
|
1939
|
-
protected resetLayout(): void;
|
|
1940
2121
|
private normalizeShellAction;
|
|
1941
2122
|
protected onRemoveAttachment(attachment: PraxisAssistantShellAttachment): void;
|
|
1942
2123
|
protected onMessageAction(message: PraxisAssistantShellMessage, action: PraxisAssistantShellMessageAction): void;
|
|
@@ -2087,5 +2268,5 @@ declare class AiRuleWizardDialogComponent implements OnInit {
|
|
|
2087
2268
|
static ɵcmp: i0.ɵɵComponentDeclaration<AiRuleWizardDialogComponent, "praxis-ai-rule-wizard-dialog", never, {}, {}, never, never, true, never>;
|
|
2088
2269
|
}
|
|
2089
2270
|
|
|
2090
|
-
export { AI_BACKEND_CONFIG_STORE, AI_BACKEND_STORAGE_OPTIONS, AI_CONTRACT_SCHEMA_HASH, AI_CONTRACT_VERSION, AI_INTENT_CONTRACT_SCHEMA_HASH, AI_INTENT_CONTRACT_VERSION, AI_STREAM_EVENT_SCHEMA_VERSION, AI_STREAM_EVENT_TYPES, AiBackendApiService, AiPatchStreamConnectionError, AiResponseValidatorService, AiRuleWizardDialogComponent, BaseAiAdapter, PRAXIS_ASSISTANT_CONTEXT_ATTACHMENT_LIMIT, PRAXIS_ASSISTANT_CONTEXT_ITEM_LIMIT, PRAXIS_ASSISTANT_CONTEXT_SCHEMA_FIELD_LIMIT, PRAXIS_ASSISTANT_CONTEXT_TEXT_LIMIT, PraxisAi, PraxisAiAssistantComponent, PraxisAiAssistantDockComponent, PraxisAiAssistantSessionHostComponent, PraxisAiAssistantShellComponent, PraxisAiService, PraxisAssistantSessionRegistryService, PraxisAssistantTurnController, PraxisAssistantTurnOrchestratorService, SchemaMinifierService, createPraxisAssistantViewportLayout, normalizePraxisAssistantAttachmentSummary, normalizePraxisAssistantContextSnapshot, sanitizePraxisAssistantText, toPraxisAssistantConversationMessages };
|
|
2091
|
-
export type { AgenticAuthoringApplyRequestContract, AgenticAuthoringApplyResultContract, AgenticAuthoringAttachmentSummaryContract, AgenticAuthoringCandidateContract, AgenticAuthoringComponentCapabilitiesResultContract, AgenticAuthoringComponentCapabilityCatalogContract, AgenticAuthoringComponentCapabilityContract, AgenticAuthoringComponentCapabilityExampleContract, AgenticAuthoringComponentFieldAliasContract, AgenticAuthoringConversationContextContract, AgenticAuthoringConversationMessageContract, AgenticAuthoringIntentResolutionRequestContract, AgenticAuthoringIntentResolutionResultContract, AgenticAuthoringManifestCompileResult, AgenticAuthoringManifestCompileResultContract, AgenticAuthoringManifestEditPlanRequest, AgenticAuthoringManifestEditPlanRequestContract, AgenticAuthoringManifestValidationResult, AgenticAuthoringManifestValidationResultContract, AgenticAuthoringPendingClarificationContract, AgenticAuthoringPlanRequestContract, AgenticAuthoringPreviewResultContract, AgenticAuthoringQuickReplyContract, AgenticAuthoringResolveTargetRequest, AgenticAuthoringResolveTargetRequestContract, AgenticAuthoringResolvedTarget, AgenticAuthoringResolvedTargetContract, AgenticAuthoringResourceCandidatesRequestContract, AgenticAuthoringResourceCandidatesResultContract, AgenticAuthoringTurnStreamConnection, AgenticAuthoringTurnStreamEnvelope, AgenticAuthoringTurnStreamEnvelopeContract, AgenticAuthoringTurnStreamRequest, AgenticAuthoringTurnStreamRequestContract, AgenticAuthoringTurnStreamStartResponse, AgenticAuthoringTurnStreamStartResponseContract, AiBackendConfigStore, AiBackendStorageOptions, AiChatMessage, AiChatMessageContract, AiClarificationUiContract, AiConfigAdapter, AiContextDTO, AiContextHintsContract, AiContextTemplate, AiContextTemplateMeta, AiCurrentStateDigest, AiCurrentStateDigestContract, AiDomainCatalogContextHintContract, AiDomainCatalogContextHintIntent, AiDomainCatalogContextHintItemType, AiDomainCatalogRelationshipHintContract, AiExamplePair, AiGlobalConfigSnapshot, AiHeaderContext, AiIntegrationConfig, AiJsonArray, AiJsonObject, AiJsonPrimitive, AiJsonValue, AiMemoryInfoContract, AiModel, AiOptionContract, AiOrchestratorRequest, AiOrchestratorRequestContract, AiOrchestratorResponse, AiOrchestratorResponseContract, AiOrchestratorResponseType, AiPatchDiff, AiPatchDiffContract, AiPatchStreamCancelResponse, AiPatchStreamCancelResponseContract, AiPatchStreamConnection, AiPatchStreamConnectionErrorKind, AiPatchStreamEnvelope, AiPatchStreamEnvelopeContract, AiPatchStreamEventType, AiPatchStreamStartResponse, AiPatchStreamStartResponseContract, AiProviderCatalogItem, AiProviderCatalogResponse, AiProviderModelsRequest, AiProviderModelsResponse, AiProviderStatusResponse, AiProviderTestRequest, AiProviderTestResponse, AiResponseCompileResult, AiRuleResponse, AiSchemaContext, AiSchemaContextContract, AiSuggestion, AiSuggestionsRequest, AiSuggestionsResponse, AiTurnStreamEventType, AiUiContextRef, AiUiContextRefContract, AiValidationError, AiValidationResult, AiValidationWarning, AiWizardData, Capability, FieldSchemaLike, MinifiedField, PatchResult, PraxisAssistantActionContract, PraxisAssistantActionKind, PraxisAssistantAttachmentKind, PraxisAssistantAttachmentSummary, PraxisAssistantAuthoringManifestRef, PraxisAssistantCapabilityRef, PraxisAssistantClarificationOption, PraxisAssistantClarificationQuestion, PraxisAssistantClarificationQuestionType, PraxisAssistantComponentType, PraxisAssistantContextItem, PraxisAssistantContextMode, PraxisAssistantContextSessionDescriptor, PraxisAssistantContextSnapshot, PraxisAssistantConversationMessage, PraxisAssistantConversationMessageRole, PraxisAssistantDigest, PraxisAssistantDockTone, PraxisAssistantGovernanceHint, PraxisAssistantIdentity, PraxisAssistantOpenRequest, PraxisAssistantOwnerType, PraxisAssistantPendingClarification, PraxisAssistantRiskLevel, PraxisAssistantSessionDescriptor, PraxisAssistantSessionIdentityRef, PraxisAssistantSessionSnapshot, PraxisAssistantSessionVisibility, PraxisAssistantShellAction, PraxisAssistantShellActionTone, PraxisAssistantShellAttachment, PraxisAssistantShellContextItem, PraxisAssistantShellLabels, PraxisAssistantShellLayout, PraxisAssistantShellMessage, PraxisAssistantShellMessageAction, PraxisAssistantShellMessageRole, PraxisAssistantShellMode, PraxisAssistantShellQuickReply, PraxisAssistantShellState, PraxisAssistantTargetKind, PraxisAssistantTargetRef, PraxisAssistantTurnAction, PraxisAssistantTurnControllerOptions, PraxisAssistantTurnFlow, PraxisAssistantTurnPhase, PraxisAssistantTurnRequest, PraxisAssistantTurnResult, PraxisAssistantTurnViewState, PraxisAssistantViewportLayoutOptions, ProblemResponseContract, PromptContext, RulePropertyDefinition, RulePropertySchema, RulePropertyType, ValidationContext, ValueKind };
|
|
2271
|
+
export { AI_BACKEND_CONFIG_STORE, AI_BACKEND_STORAGE_OPTIONS, AI_CONTRACT_SCHEMA_HASH, AI_CONTRACT_VERSION, AI_INTENT_CONTRACT_SCHEMA_HASH, AI_INTENT_CONTRACT_VERSION, AI_STREAM_EVENT_SCHEMA_VERSION, AI_STREAM_EVENT_TYPES, AiBackendApiService, AiPatchStreamConnectionError, AiResponseValidatorService, AiRuleWizardDialogComponent, BaseAiAdapter, PRAXIS_ASSISTANT_CONTEXT_ATTACHMENT_LIMIT, PRAXIS_ASSISTANT_CONTEXT_ITEM_LIMIT, PRAXIS_ASSISTANT_CONTEXT_SCHEMA_FIELD_LIMIT, PRAXIS_ASSISTANT_CONTEXT_TEXT_LIMIT, PraxisAi, PraxisAiAssistantComponent, PraxisAiAssistantDockComponent, PraxisAiAssistantSessionHostComponent, PraxisAiAssistantShellComponent, PraxisAiService, PraxisAssistantSessionRegistryService, PraxisAssistantTurnController, PraxisAssistantTurnOrchestratorService, SchemaMinifierService, createPraxisAssistantViewportLayout, normalizeAuthoringPrompt, normalizePraxisAssistantAttachmentSummary, normalizePraxisAssistantContextSnapshot, sanitizePraxisAssistantText, shouldRoutePromptToGovernedDecision, toPraxisAssistantConversationMessages };
|
|
2272
|
+
export type { AgenticAuthoringApplyRequestContract, AgenticAuthoringApplyResultContract, AgenticAuthoringAttachmentSummaryContract, AgenticAuthoringCandidateContract, AgenticAuthoringComponentCapabilitiesResultContract, AgenticAuthoringComponentCapabilityCatalogContract, AgenticAuthoringComponentCapabilityContract, AgenticAuthoringComponentCapabilityExampleContract, AgenticAuthoringComponentFieldAliasContract, AgenticAuthoringConversationContextContract, AgenticAuthoringConversationMessageContract, AgenticAuthoringIntentResolutionRequestContract, AgenticAuthoringIntentResolutionResultContract, AgenticAuthoringManifestCompileResult, AgenticAuthoringManifestCompileResultContract, AgenticAuthoringManifestEditPlanRequest, AgenticAuthoringManifestEditPlanRequestContract, AgenticAuthoringManifestValidationResult, AgenticAuthoringManifestValidationResultContract, AgenticAuthoringPendingClarificationContract, AgenticAuthoringPlanRequestContract, AgenticAuthoringPreviewResultContract, AgenticAuthoringQuickReplyContract, AgenticAuthoringResolveTargetRequest, AgenticAuthoringResolveTargetRequestContract, AgenticAuthoringResolvedTarget, AgenticAuthoringResolvedTargetContract, AgenticAuthoringResourceCandidatesRequestContract, AgenticAuthoringResourceCandidatesResultContract, AgenticAuthoringSemanticDecisionContract, AgenticAuthoringTurnStreamConnection, AgenticAuthoringTurnStreamEnvelope, AgenticAuthoringTurnStreamEnvelopeContract, AgenticAuthoringTurnStreamRequest, AgenticAuthoringTurnStreamRequestContract, AgenticAuthoringTurnStreamStartResponse, AgenticAuthoringTurnStreamStartResponseContract, AiBackendConfigStore, AiBackendStorageOptions, AiChatMessage, AiChatMessageContract, AiClarificationUiContract, AiConfigAdapter, AiContextDTO, AiContextHintsContract, AiContextTemplate, AiContextTemplateMeta, AiCurrentStateDigest, AiCurrentStateDigestContract, AiDomainCatalogContextHintContract, AiDomainCatalogContextHintIntent, AiDomainCatalogContextHintItemType, AiDomainCatalogRelationshipHintContract, AiExamplePair, AiGlobalConfigSnapshot, AiGovernedDecisionRoutingOptions, AiHeaderContext, AiIntegrationConfig, AiJsonArray, AiJsonObject, AiJsonPrimitive, AiJsonValue, AiMemoryInfoContract, AiModel, AiOptionContract, AiOrchestratorRequest, AiOrchestratorRequestContract, AiOrchestratorResponse, AiOrchestratorResponseContract, AiOrchestratorResponseType, AiPatchDiff, AiPatchDiffContract, AiPatchStreamCancelResponse, AiPatchStreamCancelResponseContract, AiPatchStreamConnection, AiPatchStreamConnectionErrorKind, AiPatchStreamEnvelope, AiPatchStreamEnvelopeContract, AiPatchStreamEventType, AiPatchStreamStartResponse, AiPatchStreamStartResponseContract, AiProviderCatalogItem, AiProviderCatalogResponse, AiProviderModelsRequest, AiProviderModelsResponse, AiProviderStatusResponse, AiProviderTestRequest, AiProviderTestResponse, AiResponseCompileResult, AiRuleResponse, AiSchemaContext, AiSchemaContextContract, AiSuggestion, AiSuggestionsRequest, AiSuggestionsResponse, AiTurnStreamEventType, AiUiContextRef, AiUiContextRefContract, AiValidationError, AiValidationResult, AiValidationWarning, AiWizardData, Capability, FieldSchemaLike, MinifiedField, PatchResult, PraxisAssistantActionContract, PraxisAssistantActionKind, PraxisAssistantAttachmentKind, PraxisAssistantAttachmentSummary, PraxisAssistantAuthoringManifestRef, PraxisAssistantCapabilityRef, PraxisAssistantClarificationOption, PraxisAssistantClarificationQuestion, PraxisAssistantClarificationQuestionType, PraxisAssistantComponentType, PraxisAssistantContextItem, PraxisAssistantContextMode, PraxisAssistantContextSessionDescriptor, PraxisAssistantContextSnapshot, PraxisAssistantConversationMessage, PraxisAssistantConversationMessageRole, PraxisAssistantDigest, PraxisAssistantDockTone, PraxisAssistantGovernanceHint, PraxisAssistantIdentity, PraxisAssistantOpenRequest, PraxisAssistantOwnerType, PraxisAssistantPendingClarification, PraxisAssistantRiskLevel, PraxisAssistantSessionDescriptor, PraxisAssistantSessionIdentityRef, PraxisAssistantSessionSnapshot, PraxisAssistantSessionVisibility, PraxisAssistantShellAction, PraxisAssistantShellActionTone, PraxisAssistantShellAttachment, PraxisAssistantShellContextItem, PraxisAssistantShellLabels, PraxisAssistantShellLayout, PraxisAssistantShellMessage, PraxisAssistantShellMessageAction, PraxisAssistantShellMessageRole, PraxisAssistantShellMode, PraxisAssistantShellQuickReply, PraxisAssistantShellQuickReplyEvidence, PraxisAssistantShellQuickReplyPresentation, PraxisAssistantShellQuickReplyPresentationItem, PraxisAssistantShellQuickReplyPresentationKind, PraxisAssistantShellState, PraxisAssistantTargetKind, PraxisAssistantTargetRef, PraxisAssistantTurnAction, PraxisAssistantTurnControllerOptions, PraxisAssistantTurnFlow, PraxisAssistantTurnPhase, PraxisAssistantTurnRequest, PraxisAssistantTurnResult, PraxisAssistantTurnViewState, PraxisAssistantViewportLayoutOptions, ProblemResponseContract, PromptContext, RulePropertyDefinition, RulePropertySchema, RulePropertyType, ValidationContext, ValueKind };
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/ai",
|
|
3
|
-
"version": "8.0.0-beta.
|
|
3
|
+
"version": "8.0.0-beta.28",
|
|
4
4
|
"description": "AI building blocks and assistant integration for Praxis UI applications.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^20.3.0",
|
|
7
7
|
"@angular/core": "^20.3.0",
|
|
8
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^8.0.0-beta.28",
|
|
9
9
|
"@angular/cdk": "^20.1.0",
|
|
10
10
|
"@angular/forms": "^20.3.0",
|
|
11
11
|
"@angular/material": "^20.1.0",
|