@praxisui/ai 9.0.5-rc.9 → 9.0.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.
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"schemaVersion": "1.0.0",
|
|
3
|
-
"generatedAt": "2026-08-
|
|
3
|
+
"generatedAt": "2026-08-18T02:12:19.525Z",
|
|
4
4
|
"packageName": "@praxisui/ai",
|
|
5
|
-
"packageVersion": "9.0.5
|
|
5
|
+
"packageVersion": "9.0.5",
|
|
6
6
|
"sourceRegistry": "praxis-component-registry-ingestion",
|
|
7
7
|
"sourceRegistryVersion": "1.0.0",
|
|
8
8
|
"componentCount": 0,
|
package/fesm2022/praxisui-ai.mjs
CHANGED
|
@@ -403,7 +403,7 @@ function toPraxisAssistantConversationMessageRole(role) {
|
|
|
403
403
|
* Do not edit manually. Run praxis-config-starter/tools/contracts/generate-ai-contract-bindings.js.
|
|
404
404
|
*/
|
|
405
405
|
const AI_CONTRACT_VERSION = 'v1.1';
|
|
406
|
-
const AI_CONTRACT_SCHEMA_HASH = '
|
|
406
|
+
const AI_CONTRACT_SCHEMA_HASH = '2af79434993fed5cdcbe5298fc50f82d719362217f9b44b227537397ceac2a41';
|
|
407
407
|
const AI_STREAM_EVENT_SCHEMA_VERSION = 'v1';
|
|
408
408
|
const AI_DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION = 'praxis.ai.context-hints.domain-catalog/v0.2';
|
|
409
409
|
const AI_STREAM_EVENT_TYPES = ['status', 'thought.step', 'heartbeat', 'intent.resolved', 'result', 'error', 'cancelled'];
|
package/package.json
CHANGED
|
@@ -1,11 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@praxisui/ai",
|
|
3
|
-
"version": "9.0.5
|
|
3
|
+
"version": "9.0.5",
|
|
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": "^9.0.5
|
|
8
|
+
"@praxisui/core": "^9.0.5",
|
|
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
|
@@ -19,7 +19,7 @@ declare class PraxisAi {
|
|
|
19
19
|
* Do not edit manually. Run praxis-config-starter/tools/contracts/generate-ai-contract-bindings.js.
|
|
20
20
|
*/
|
|
21
21
|
declare const AI_CONTRACT_VERSION: "v1.1";
|
|
22
|
-
declare const AI_CONTRACT_SCHEMA_HASH: "
|
|
22
|
+
declare const AI_CONTRACT_SCHEMA_HASH: "2af79434993fed5cdcbe5298fc50f82d719362217f9b44b227537397ceac2a41";
|
|
23
23
|
declare const AI_STREAM_EVENT_SCHEMA_VERSION: "v1";
|
|
24
24
|
declare const AI_DOMAIN_CATALOG_CONTEXT_HINT_SCHEMA_VERSION: "praxis.ai.context-hints.domain-catalog/v0.2";
|
|
25
25
|
declare const AI_STREAM_EVENT_TYPES: readonly ["status", "thought.step", "heartbeat", "intent.resolved", "result", "error", "cancelled"];
|
|
@@ -76,7 +76,15 @@ type AgenticAuthoringApplyTargetContract = AgenticAuthoringApplyTargetBaseContra
|
|
|
76
76
|
});
|
|
77
77
|
interface AiContextHintsContract {
|
|
78
78
|
domainCatalog?: AiDomainCatalogContextHintContract;
|
|
79
|
-
|
|
79
|
+
selectedDomainDecisionRef?: AiSelectedDomainDecisionRefContract;
|
|
80
|
+
[key: string]: AiJsonValue | AiDomainCatalogContextHintContract | AiSelectedDomainDecisionRefContract | undefined;
|
|
81
|
+
}
|
|
82
|
+
interface AiSelectedDomainDecisionRefContract {
|
|
83
|
+
schemaVersion: 'praxis.ai.context-hints.domain-decision/v1';
|
|
84
|
+
definitionId: string;
|
|
85
|
+
ruleKey: string;
|
|
86
|
+
version: number;
|
|
87
|
+
source: 'policy-studio-selection';
|
|
80
88
|
}
|
|
81
89
|
interface AgenticAuthoringClientActionContract {
|
|
82
90
|
schemaVersion: 'praxis-agentic-authoring-client-action.v1';
|
|
@@ -88,9 +96,10 @@ interface AgenticAuthoringClientActionContract {
|
|
|
88
96
|
}
|
|
89
97
|
interface AgenticAuthoringTurnStreamContextHintsContract {
|
|
90
98
|
domainCatalog?: AiDomainCatalogContextHintContract;
|
|
99
|
+
selectedDomainDecisionRef?: AiSelectedDomainDecisionRefContract;
|
|
91
100
|
agenticApplyTarget?: AgenticAuthoringApplyTargetContract;
|
|
92
101
|
clientActions?: AgenticAuthoringClientActionContract[];
|
|
93
|
-
[key: string]: AiJsonValue | AiDomainCatalogContextHintContract | AgenticAuthoringApplyTargetContract | AgenticAuthoringClientActionContract[] | undefined;
|
|
102
|
+
[key: string]: AiJsonValue | AiDomainCatalogContextHintContract | AiSelectedDomainDecisionRefContract | AgenticAuthoringApplyTargetContract | AgenticAuthoringClientActionContract[] | undefined;
|
|
94
103
|
}
|
|
95
104
|
interface AiSchemaContextContract {
|
|
96
105
|
path?: string | null;
|
|
@@ -1529,7 +1538,7 @@ declare class PraxisAiService {
|
|
|
1529
1538
|
}
|
|
1530
1539
|
|
|
1531
1540
|
declare const AI_INTENT_CONTRACT_VERSION: "v1.1";
|
|
1532
|
-
declare const AI_INTENT_CONTRACT_SCHEMA_HASH: "
|
|
1541
|
+
declare const AI_INTENT_CONTRACT_SCHEMA_HASH: "2af79434993fed5cdcbe5298fc50f82d719362217f9b44b227537397ceac2a41";
|
|
1533
1542
|
type AiSchemaContext = AiSchemaContextContract;
|
|
1534
1543
|
interface AiSuggestionsRequest {
|
|
1535
1544
|
componentId: string;
|