@praxisui/ai 8.0.0-beta.84 → 8.0.0-beta.85
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/README.md +2 -0
- package/fesm2022/praxisui-ai.mjs +349 -3
- package/package.json +2 -2
- package/types/praxisui-ai.d.ts +154 -3
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.85",
|
|
4
4
|
"description": "AI building blocks and assistant integration for Praxis UI applications.",
|
|
5
5
|
"peerDependencies": {
|
|
6
6
|
"@angular/common": "^21.0.0",
|
|
7
7
|
"@angular/core": "^21.0.0",
|
|
8
|
-
"@praxisui/core": "^8.0.0-beta.
|
|
8
|
+
"@praxisui/core": "^8.0.0-beta.85",
|
|
9
9
|
"@angular/cdk": "^21.0.0",
|
|
10
10
|
"@angular/forms": "^21.0.0",
|
|
11
11
|
"@angular/material": "^21.0.0",
|
package/types/praxisui-ai.d.ts
CHANGED
|
@@ -839,6 +839,8 @@ declare function normalizePraxisAssistantContextSnapshot(value: unknown): Praxis
|
|
|
839
839
|
type PraxisAssistantShellMessageRole = 'user' | 'assistant' | 'system' | 'status' | 'error';
|
|
840
840
|
type PraxisAssistantShellMode = 'config' | 'agentic-authoring' | 'chat' | 'diagnostic' | 'review' | 'inline-help';
|
|
841
841
|
type PraxisAssistantShellState = 'idle' | 'listening' | 'processing' | 'clarification' | 'review' | 'applying' | 'success' | 'error';
|
|
842
|
+
type PraxisAssistantVoiceInputMode = 'disabled' | 'browser-speech';
|
|
843
|
+
type PraxisAssistantVoiceCaptureState = 'unsupported' | 'idle' | 'listening' | 'stopping' | 'error';
|
|
842
844
|
interface PraxisAssistantShellMessage {
|
|
843
845
|
id: string;
|
|
844
846
|
role: PraxisAssistantShellMessageRole;
|
|
@@ -886,6 +888,110 @@ interface PraxisAssistantShellQuickReplyPresentationItem {
|
|
|
886
888
|
value: string;
|
|
887
889
|
icon?: string | null;
|
|
888
890
|
}
|
|
891
|
+
type PraxisAssistantOpportunityCandidateStatus = 'available' | 'missing-context' | 'already-enabled' | 'blocked' | 'not-recommended' | string;
|
|
892
|
+
type PraxisAssistantRecommendedIntentTone = 'neutral' | 'analytics' | 'resource' | 'success' | 'warning' | 'danger' | string;
|
|
893
|
+
interface PraxisAssistantOpportunityGroup {
|
|
894
|
+
id: string;
|
|
895
|
+
label: string;
|
|
896
|
+
description?: string | null;
|
|
897
|
+
rank?: number | null;
|
|
898
|
+
}
|
|
899
|
+
interface PraxisAssistantRecommendedIntentPresentation {
|
|
900
|
+
kind?: 'guided-card' | 'compact-chip' | 'spotlight' | string;
|
|
901
|
+
description?: string | null;
|
|
902
|
+
ctaLabel?: string | null;
|
|
903
|
+
icon?: string | null;
|
|
904
|
+
tone?: PraxisAssistantRecommendedIntentTone | null;
|
|
905
|
+
evidence?: readonly PraxisAssistantShellQuickReplyEvidence[];
|
|
906
|
+
items?: readonly PraxisAssistantShellQuickReplyPresentationItem[];
|
|
907
|
+
}
|
|
908
|
+
type PraxisAssistantRecommendedIntentAction = {
|
|
909
|
+
kind: 'submit-prompt';
|
|
910
|
+
prompt: string;
|
|
911
|
+
contextHints?: Readonly<Record<string, unknown>> | null;
|
|
912
|
+
} | {
|
|
913
|
+
kind: 'start-review';
|
|
914
|
+
operationKind: 'author' | 'execute' | string;
|
|
915
|
+
componentEditPlan?: Readonly<Record<string, unknown>> | null;
|
|
916
|
+
runtimeOperation?: Readonly<Record<string, unknown>> | null;
|
|
917
|
+
contextHints?: Readonly<Record<string, unknown>> | null;
|
|
918
|
+
} | {
|
|
919
|
+
kind: 'open-guidance';
|
|
920
|
+
topicId: string;
|
|
921
|
+
contextHints?: Readonly<Record<string, unknown>> | null;
|
|
922
|
+
} | {
|
|
923
|
+
kind: string;
|
|
924
|
+
[key: string]: unknown;
|
|
925
|
+
};
|
|
926
|
+
interface PraxisAssistantRecommendedIntent {
|
|
927
|
+
kind?: 'praxis.assistant.recommended-intent' | string;
|
|
928
|
+
id: string;
|
|
929
|
+
label: string;
|
|
930
|
+
description?: string | null;
|
|
931
|
+
group?: PraxisAssistantOpportunityGroup | null;
|
|
932
|
+
icon?: string | null;
|
|
933
|
+
tone?: PraxisAssistantRecommendedIntentTone | null;
|
|
934
|
+
presentation?: PraxisAssistantRecommendedIntentPresentation | null;
|
|
935
|
+
action: PraxisAssistantRecommendedIntentAction;
|
|
936
|
+
prompt?: string | null;
|
|
937
|
+
contextHints?: Readonly<Record<string, unknown>> | null;
|
|
938
|
+
sourceCandidateIds?: readonly string[];
|
|
939
|
+
rank?: number | null;
|
|
940
|
+
confidence?: number | null;
|
|
941
|
+
requiresConfirmation?: boolean;
|
|
942
|
+
disabledReason?: string | null;
|
|
943
|
+
}
|
|
944
|
+
interface PraxisAssistantOpportunityEvidence {
|
|
945
|
+
kind: 'component-state' | 'metadata' | 'selection' | 'capability' | 'usage' | 'host' | string;
|
|
946
|
+
label?: string | null;
|
|
947
|
+
value?: string | number | boolean | null;
|
|
948
|
+
details?: Readonly<Record<string, unknown>> | null;
|
|
949
|
+
}
|
|
950
|
+
interface PraxisAssistantOpportunityTarget {
|
|
951
|
+
kind: 'component' | 'field' | 'record-surface' | 'action' | 'navigation' | 'export' | string;
|
|
952
|
+
id: string;
|
|
953
|
+
label?: string | null;
|
|
954
|
+
componentId?: string | null;
|
|
955
|
+
field?: string | null;
|
|
956
|
+
surfaceId?: string | null;
|
|
957
|
+
capabilityId?: string | null;
|
|
958
|
+
metadata?: Readonly<Record<string, unknown>> | null;
|
|
959
|
+
}
|
|
960
|
+
interface PraxisAssistantOpportunityMissingContext {
|
|
961
|
+
id: string;
|
|
962
|
+
label: string;
|
|
963
|
+
reason?: string | null;
|
|
964
|
+
required?: boolean;
|
|
965
|
+
}
|
|
966
|
+
interface PraxisAssistantOpportunitySafety {
|
|
967
|
+
requiresConfirmation?: boolean;
|
|
968
|
+
destructive?: boolean;
|
|
969
|
+
reason?: string | null;
|
|
970
|
+
}
|
|
971
|
+
interface PraxisAssistantOpportunityCandidate {
|
|
972
|
+
id: string;
|
|
973
|
+
label: string;
|
|
974
|
+
description?: string | null;
|
|
975
|
+
group?: PraxisAssistantOpportunityGroup | null;
|
|
976
|
+
target: PraxisAssistantOpportunityTarget;
|
|
977
|
+
status?: PraxisAssistantOpportunityCandidateStatus;
|
|
978
|
+
rank?: number | null;
|
|
979
|
+
confidence?: number | null;
|
|
980
|
+
evidence?: readonly PraxisAssistantOpportunityEvidence[];
|
|
981
|
+
missingContext?: readonly PraxisAssistantOpportunityMissingContext[];
|
|
982
|
+
safety?: PraxisAssistantOpportunitySafety | null;
|
|
983
|
+
recommendedIntent?: PraxisAssistantRecommendedIntent | null;
|
|
984
|
+
metadata?: Readonly<Record<string, unknown>> | null;
|
|
985
|
+
}
|
|
986
|
+
interface PraxisAssistantOpportunityCatalog {
|
|
987
|
+
componentId: string;
|
|
988
|
+
componentKind?: string | null;
|
|
989
|
+
generatedAt?: string | null;
|
|
990
|
+
stateHash?: string | null;
|
|
991
|
+
candidates: readonly PraxisAssistantOpportunityCandidate[];
|
|
992
|
+
groups?: readonly PraxisAssistantOpportunityGroup[];
|
|
993
|
+
metadata?: Readonly<Record<string, unknown>> | null;
|
|
994
|
+
}
|
|
889
995
|
interface PraxisAssistantShellMessageAction {
|
|
890
996
|
id: string;
|
|
891
997
|
label: string;
|
|
@@ -952,6 +1058,11 @@ interface PraxisAssistantShellLabels {
|
|
|
952
1058
|
conversationAria: string;
|
|
953
1059
|
quickRepliesAria: string;
|
|
954
1060
|
quickReplyDetails?: string;
|
|
1061
|
+
recommendedIntentsAria: string;
|
|
1062
|
+
recommendedIntentsTitle: string;
|
|
1063
|
+
recommendedIntentCta: string;
|
|
1064
|
+
recommendedIntentGuidanceCta: string;
|
|
1065
|
+
recommendedIntentRequiresConfirmation: string;
|
|
955
1066
|
dragHandleAria: string;
|
|
956
1067
|
resizeHandleAria: string;
|
|
957
1068
|
resetLayout?: string;
|
|
@@ -964,6 +1075,12 @@ interface PraxisAssistantShellLabels {
|
|
|
964
1075
|
feedbackPositive: string;
|
|
965
1076
|
feedbackNegative: string;
|
|
966
1077
|
feedbackSubmitted: string;
|
|
1078
|
+
voiceStart?: string;
|
|
1079
|
+
voiceStop?: string;
|
|
1080
|
+
voiceListening?: string;
|
|
1081
|
+
voiceUnsupported?: string;
|
|
1082
|
+
voicePermissionDenied?: string;
|
|
1083
|
+
voiceNoSpeech?: string;
|
|
967
1084
|
modeConfig: string;
|
|
968
1085
|
modeAgenticAuthoring: string;
|
|
969
1086
|
modeChat: string;
|
|
@@ -2165,6 +2282,7 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2165
2282
|
attachments: readonly PraxisAssistantShellAttachment[];
|
|
2166
2283
|
messages: readonly PraxisAssistantShellMessage[];
|
|
2167
2284
|
quickReplies: readonly PraxisAssistantShellQuickReply[];
|
|
2285
|
+
recommendedIntents: readonly PraxisAssistantRecommendedIntent[];
|
|
2168
2286
|
prompt: string;
|
|
2169
2287
|
statusText: string;
|
|
2170
2288
|
errorText: string;
|
|
@@ -2184,6 +2302,8 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2184
2302
|
enableFileAttachments: boolean;
|
|
2185
2303
|
attachmentAccept: string;
|
|
2186
2304
|
attachmentMultiple: boolean;
|
|
2305
|
+
voiceInputMode: PraxisAssistantVoiceInputMode;
|
|
2306
|
+
voiceLanguage: string;
|
|
2187
2307
|
draggable: boolean;
|
|
2188
2308
|
resizable: boolean;
|
|
2189
2309
|
minWidth: number;
|
|
@@ -2208,18 +2328,24 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2208
2328
|
editMessage: EventEmitter<PraxisAssistantShellMessage>;
|
|
2209
2329
|
resendMessage: EventEmitter<PraxisAssistantShellMessage>;
|
|
2210
2330
|
quickReply: EventEmitter<PraxisAssistantShellQuickReply>;
|
|
2331
|
+
recommendedIntent: EventEmitter<PraxisAssistantRecommendedIntent>;
|
|
2211
2332
|
layoutChange: EventEmitter<PraxisAssistantShellLayout>;
|
|
2212
2333
|
panel?: ElementRef<HTMLElement>;
|
|
2213
2334
|
conversation?: ElementRef<HTMLElement>;
|
|
2214
2335
|
private readonly cdr;
|
|
2215
2336
|
private readonly injector;
|
|
2337
|
+
private readonly browserSpeech;
|
|
2216
2338
|
protected currentPrompt: string;
|
|
2217
2339
|
protected resolvedLabels: PraxisAssistantShellLabels;
|
|
2340
|
+
protected voiceCaptureState: PraxisAssistantVoiceCaptureState;
|
|
2341
|
+
protected voiceFeedbackText: string;
|
|
2218
2342
|
protected currentLayout: PraxisAssistantShellLayout;
|
|
2219
2343
|
protected readonly resizeHandles: readonly ResizeDirection[];
|
|
2220
2344
|
private pointerSession;
|
|
2221
2345
|
private readonly ownedPreviewUrls;
|
|
2222
2346
|
private readonly submittedFeedbackObservationIds;
|
|
2347
|
+
private voiceCaptureSequence;
|
|
2348
|
+
private destroyed;
|
|
2223
2349
|
private readonly onWindowPointerMove;
|
|
2224
2350
|
private readonly onWindowPointerUp;
|
|
2225
2351
|
ngOnChanges(changes: SimpleChanges): void;
|
|
@@ -2228,6 +2354,18 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2228
2354
|
protected onSubmit(): void;
|
|
2229
2355
|
protected onPromptKeydown(event: KeyboardEvent): void;
|
|
2230
2356
|
protected onPromptPaste(event: ClipboardEvent): void;
|
|
2357
|
+
protected onVoiceInputClick(): void;
|
|
2358
|
+
protected shouldShowVoiceInput(): boolean;
|
|
2359
|
+
protected isVoiceInputDisabled(): boolean;
|
|
2360
|
+
protected isVoiceInputBusy(): boolean;
|
|
2361
|
+
protected getVoiceActionLabel(): string;
|
|
2362
|
+
protected shouldShowVoiceFeedback(): boolean;
|
|
2363
|
+
private canUseBrowserSpeech;
|
|
2364
|
+
private cancelVoiceCapture;
|
|
2365
|
+
private isCurrentVoiceCapture;
|
|
2366
|
+
private applyVoiceTranscript;
|
|
2367
|
+
private resolveVoiceErrorText;
|
|
2368
|
+
private getVoiceLabel;
|
|
2231
2369
|
protected onAttachClick(fileInput: HTMLInputElement): void;
|
|
2232
2370
|
protected onAttachmentFilesSelected(event: Event): void;
|
|
2233
2371
|
protected onApply(): void;
|
|
@@ -2248,6 +2386,15 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2248
2386
|
private normalizeMessageText;
|
|
2249
2387
|
private getDefaultPrimaryAction;
|
|
2250
2388
|
protected onQuickReply(reply: PraxisAssistantShellQuickReply): void;
|
|
2389
|
+
protected shouldShowRecommendedIntents(): boolean;
|
|
2390
|
+
protected onRecommendedIntent(intent: PraxisAssistantRecommendedIntent): void;
|
|
2391
|
+
protected isRecommendedIntentDisabled(intent: PraxisAssistantRecommendedIntent): boolean;
|
|
2392
|
+
protected getRecommendedIntentAriaLabel(intent: PraxisAssistantRecommendedIntent): string;
|
|
2393
|
+
protected getRecommendedIntentDescription(intent: PraxisAssistantRecommendedIntent): string;
|
|
2394
|
+
protected getRecommendedIntentCtaLabel(intent: PraxisAssistantRecommendedIntent): string;
|
|
2395
|
+
protected getRecommendedIntentIcon(intent: PraxisAssistantRecommendedIntent): string;
|
|
2396
|
+
protected getRecommendedIntentTone(intent: PraxisAssistantRecommendedIntent): string;
|
|
2397
|
+
protected getRecommendedIntentGroupLabel(intent: PraxisAssistantRecommendedIntent): string;
|
|
2251
2398
|
protected getQuickReplyAriaLabel(reply: PraxisAssistantShellQuickReply): string;
|
|
2252
2399
|
protected getQuickReplyTechnicalDetails(reply: PraxisAssistantShellQuickReply): string;
|
|
2253
2400
|
protected isRichQuickReply(reply: PraxisAssistantShellQuickReply): boolean;
|
|
@@ -2295,6 +2442,7 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2295
2442
|
protected trackMessage(_index: number, message: PraxisAssistantShellMessage): string;
|
|
2296
2443
|
protected trackMessageAction(_index: number, action: PraxisAssistantShellMessageAction): string;
|
|
2297
2444
|
protected trackQuickReply(_index: number, reply: PraxisAssistantShellQuickReply): string;
|
|
2445
|
+
protected trackRecommendedIntent(_index: number, intent: PraxisAssistantRecommendedIntent): string;
|
|
2298
2446
|
protected trackContextItem(_index: number, item: PraxisAssistantShellContextItem): string;
|
|
2299
2447
|
protected trackAttachment(_index: number, attachment: PraxisAssistantShellAttachment): string;
|
|
2300
2448
|
private startPointerSession;
|
|
@@ -2314,9 +2462,12 @@ declare class PraxisAiAssistantShellComponent implements OnChanges, OnDestroy {
|
|
|
2314
2462
|
private revokeAllOwnedPreviewUrls;
|
|
2315
2463
|
private revokeOwnedPreviewUrl;
|
|
2316
2464
|
static ɵfac: i0.ɵɵFactoryDeclaration<PraxisAiAssistantShellComponent, never>;
|
|
2317
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisAiAssistantShellComponent, "praxis-ai-assistant-shell", never, { "labels": { "alias": "labels"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "state": { "alias": "state"; "required": false; }; "contextItems": { "alias": "contextItems"; "required": false; }; "attachments": { "alias": "attachments"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "quickReplies": { "alias": "quickReplies"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; "statusText": { "alias": "statusText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "testIdPrefix": { "alias": "testIdPrefix"; "required": false; }; "panelTestId": { "alias": "panelTestId"; "required": false; }; "submitTestId": { "alias": "submitTestId"; "required": false; }; "applyTestId": { "alias": "applyTestId"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "governanceActions": { "alias": "governanceActions"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "canSubmit": { "alias": "canSubmit"; "required": false; }; "canApply": { "alias": "canApply"; "required": false; }; "submitOnEnter": { "alias": "submitOnEnter"; "required": false; }; "showAttachAction": { "alias": "showAttachAction"; "required": false; }; "enablePastedAttachments": { "alias": "enablePastedAttachments"; "required": false; }; "enableFileAttachments": { "alias": "enableFileAttachments"; "required": false; }; "attachmentAccept": { "alias": "attachmentAccept"; "required": false; }; "attachmentMultiple": { "alias": "attachmentMultiple"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, { "promptChange": "promptChange"; "submitPrompt": "submitPrompt"; "apply": "apply"; "retryTurn": "retryTurn"; "cancelTurn": "cancelTurn"; "shellAction": "shellAction"; "close": "close"; "attach": "attach"; "attachmentsPasted": "attachmentsPasted"; "attachmentsSelected": "attachmentsSelected"; "removeAttachment": "removeAttachment"; "messageAction": "messageAction"; "editMessage": "editMessage"; "resendMessage": "resendMessage"; "quickReply": "quickReply"; "layoutChange": "layoutChange"; }, never, never, true, never>;
|
|
2465
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<PraxisAiAssistantShellComponent, "praxis-ai-assistant-shell", never, { "labels": { "alias": "labels"; "required": false; }; "mode": { "alias": "mode"; "required": false; }; "state": { "alias": "state"; "required": false; }; "contextItems": { "alias": "contextItems"; "required": false; }; "attachments": { "alias": "attachments"; "required": false; }; "messages": { "alias": "messages"; "required": false; }; "quickReplies": { "alias": "quickReplies"; "required": false; }; "recommendedIntents": { "alias": "recommendedIntents"; "required": false; }; "prompt": { "alias": "prompt"; "required": false; }; "statusText": { "alias": "statusText"; "required": false; }; "errorText": { "alias": "errorText"; "required": false; }; "testIdPrefix": { "alias": "testIdPrefix"; "required": false; }; "panelTestId": { "alias": "panelTestId"; "required": false; }; "submitTestId": { "alias": "submitTestId"; "required": false; }; "applyTestId": { "alias": "applyTestId"; "required": false; }; "primaryAction": { "alias": "primaryAction"; "required": false; }; "secondaryActions": { "alias": "secondaryActions"; "required": false; }; "governanceActions": { "alias": "governanceActions"; "required": false; }; "busy": { "alias": "busy"; "required": false; }; "canSubmit": { "alias": "canSubmit"; "required": false; }; "canApply": { "alias": "canApply"; "required": false; }; "submitOnEnter": { "alias": "submitOnEnter"; "required": false; }; "showAttachAction": { "alias": "showAttachAction"; "required": false; }; "enablePastedAttachments": { "alias": "enablePastedAttachments"; "required": false; }; "enableFileAttachments": { "alias": "enableFileAttachments"; "required": false; }; "attachmentAccept": { "alias": "attachmentAccept"; "required": false; }; "attachmentMultiple": { "alias": "attachmentMultiple"; "required": false; }; "voiceInputMode": { "alias": "voiceInputMode"; "required": false; }; "voiceLanguage": { "alias": "voiceLanguage"; "required": false; }; "draggable": { "alias": "draggable"; "required": false; }; "resizable": { "alias": "resizable"; "required": false; }; "minWidth": { "alias": "minWidth"; "required": false; }; "minHeight": { "alias": "minHeight"; "required": false; }; "margin": { "alias": "margin"; "required": false; }; "layout": { "alias": "layout"; "required": false; }; }, { "promptChange": "promptChange"; "submitPrompt": "submitPrompt"; "apply": "apply"; "retryTurn": "retryTurn"; "cancelTurn": "cancelTurn"; "shellAction": "shellAction"; "close": "close"; "attach": "attach"; "attachmentsPasted": "attachmentsPasted"; "attachmentsSelected": "attachmentsSelected"; "removeAttachment": "removeAttachment"; "messageAction": "messageAction"; "editMessage": "editMessage"; "resendMessage": "resendMessage"; "quickReply": "quickReply"; "recommendedIntent": "recommendedIntent"; "layoutChange": "layoutChange"; }, never, never, true, never>;
|
|
2318
2466
|
}
|
|
2319
2467
|
|
|
2468
|
+
declare const PRAXIS_ASSISTANT_VOICE_INPUT_MODE: InjectionToken<PraxisAssistantVoiceInputMode>;
|
|
2469
|
+
declare const PRAXIS_ASSISTANT_VOICE_LANGUAGE: InjectionToken<string>;
|
|
2470
|
+
|
|
2320
2471
|
type PraxisAssistantDockTone = 'ready' | 'working' | 'review' | 'governed' | 'error';
|
|
2321
2472
|
declare class PraxisAiAssistantDockComponent {
|
|
2322
2473
|
title: string;
|
|
@@ -2433,5 +2584,5 @@ declare class AiRuleWizardDialogComponent implements OnInit {
|
|
|
2433
2584
|
static ɵcmp: i0.ɵɵComponentDeclaration<AiRuleWizardDialogComponent, "praxis-ai-rule-wizard-dialog", never, {}, {}, never, never, true, never>;
|
|
2434
2585
|
}
|
|
2435
2586
|
|
|
2436
|
-
export { AI_BACKEND_CONFIG_STORE, AI_BACKEND_ENDPOINTS, 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, createComponentAuthoringContext, createPraxisAssistantViewportLayout, normalizeAuthoringPrompt, normalizePraxisAssistantAttachmentSummary, normalizePraxisAssistantContextSnapshot, sanitizePraxisAssistantText, shouldRoutePromptToGovernedDecision, submitPraxisAssistantQuickReply, toAiJsonObject, toPraxisAssistantClarificationOption, toPraxisAssistantConversationMessages };
|
|
2437
|
-
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, AiAssistantObservationFeedbackRating, AiAssistantObservationFeedbackRatingValue, AiAssistantObservationFeedbackRequest, AiAssistantObservationFeedbackRequestContract, AiAssistantObservationFeedbackResponse, AiAssistantObservationFeedbackResponseContract, AiAssistantObservationResponseContract, AiAssistantObservationSummaryResponseContract, AiAssistantObservationSummaryRowContract, AiAuthoringResponseMode, AiAuthoringResponseModeKind, AiBackendConfigStore, AiBackendEndpoints, AiBackendStorageOptions, AiChatMessage, AiChatMessageContract, AiClarificationUiContract, AiComponentAuthoringContract, AiConfigAdapter, AiConsultativeAuthoringContext, 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, PraxisAssistantSessionPresence, 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 };
|
|
2587
|
+
export { AI_BACKEND_CONFIG_STORE, AI_BACKEND_ENDPOINTS, 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, PRAXIS_ASSISTANT_VOICE_INPUT_MODE, PRAXIS_ASSISTANT_VOICE_LANGUAGE, PraxisAi, PraxisAiAssistantComponent, PraxisAiAssistantDockComponent, PraxisAiAssistantSessionHostComponent, PraxisAiAssistantShellComponent, PraxisAiService, PraxisAssistantSessionRegistryService, PraxisAssistantTurnController, PraxisAssistantTurnOrchestratorService, SchemaMinifierService, createComponentAuthoringContext, createPraxisAssistantViewportLayout, normalizeAuthoringPrompt, normalizePraxisAssistantAttachmentSummary, normalizePraxisAssistantContextSnapshot, sanitizePraxisAssistantText, shouldRoutePromptToGovernedDecision, submitPraxisAssistantQuickReply, toAiJsonObject, toPraxisAssistantClarificationOption, toPraxisAssistantConversationMessages };
|
|
2588
|
+
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, AiAssistantObservationFeedbackRating, AiAssistantObservationFeedbackRatingValue, AiAssistantObservationFeedbackRequest, AiAssistantObservationFeedbackRequestContract, AiAssistantObservationFeedbackResponse, AiAssistantObservationFeedbackResponseContract, AiAssistantObservationResponseContract, AiAssistantObservationSummaryResponseContract, AiAssistantObservationSummaryRowContract, AiAuthoringResponseMode, AiAuthoringResponseModeKind, AiBackendConfigStore, AiBackendEndpoints, AiBackendStorageOptions, AiChatMessage, AiChatMessageContract, AiClarificationUiContract, AiComponentAuthoringContract, AiConfigAdapter, AiConsultativeAuthoringContext, 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, PraxisAssistantOpportunityCandidate, PraxisAssistantOpportunityCandidateStatus, PraxisAssistantOpportunityCatalog, PraxisAssistantOpportunityEvidence, PraxisAssistantOpportunityGroup, PraxisAssistantOpportunityMissingContext, PraxisAssistantOpportunitySafety, PraxisAssistantOpportunityTarget, PraxisAssistantOwnerType, PraxisAssistantPendingClarification, PraxisAssistantRecommendedIntent, PraxisAssistantRecommendedIntentAction, PraxisAssistantRecommendedIntentPresentation, PraxisAssistantRecommendedIntentTone, PraxisAssistantRiskLevel, PraxisAssistantSessionDescriptor, PraxisAssistantSessionIdentityRef, PraxisAssistantSessionPresence, 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, PraxisAssistantVoiceCaptureState, PraxisAssistantVoiceInputMode, ProblemResponseContract, PromptContext, RulePropertyDefinition, RulePropertySchema, RulePropertyType, ValidationContext, ValueKind };
|