Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion libs/a2ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/a2ui",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
20 changes: 10 additions & 10 deletions libs/a2ui/src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,13 +8,13 @@ export type {
A2uiCreateSurface, A2uiUpdateComponents, A2uiUpdateDataModel, A2uiDeleteSurface,
A2uiMessage, A2uiSurface,
A2uiClientDataModel, A2uiActionMessage,
} from './lib/types';
export { getByPointer, setByPointer, deleteByPointer } from './lib/pointer';
export { createA2uiMessageParser } from './lib/parser';
export type { A2uiMessageParser } from './lib/parser';
export { resolveDynamic } from './lib/resolve';
export type { A2uiScope } from './lib/resolve';
export { executeFunction } from './lib/functions';
export { evaluateCheckRules } from './lib/validate';
export type { A2uiValidationResult } from './lib/validate';
export { isPathRef, isFunctionCall } from './lib/guards';
} from './lib/types.js';
export { getByPointer, setByPointer, deleteByPointer } from './lib/pointer.js';
export { createA2uiMessageParser } from './lib/parser.js';
export type { A2uiMessageParser } from './lib/parser.js';
export { resolveDynamic } from './lib/resolve.js';
export type { A2uiScope } from './lib/resolve.js';
export { executeFunction } from './lib/functions.js';
export { evaluateCheckRules } from './lib/validate.js';
export type { A2uiValidationResult } from './lib/validate.js';
export { isPathRef, isFunctionCall } from './lib/guards.js';
2 changes: 1 addition & 1 deletion libs/a2ui/src/lib/guards.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
import type { A2uiPathRef, A2uiFunctionCall } from './types';
import type { A2uiPathRef, A2uiFunctionCall } from './types.js';

/** Narrows an unknown value to A2uiPathRef — has `path` but not `call`. */
export function isPathRef(value: unknown): value is A2uiPathRef {
Expand Down
2 changes: 1 addition & 1 deletion libs/a2ui/src/lib/parser.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: MIT
import type { A2uiMessage } from './types';
import type { A2uiMessage } from './types.js';

const ENVELOPE_KEYS = ['createSurface', 'updateComponents', 'updateDataModel', 'deleteSurface'] as const;

Expand Down
6 changes: 3 additions & 3 deletions libs/a2ui/src/lib/resolve.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: MIT
import type { A2uiPathRef, A2uiFunctionCall } from './types';
import { getByPointer } from './pointer';
import { executeFunction } from './functions';
import type { A2uiPathRef, A2uiFunctionCall } from './types.js';
import { getByPointer } from './pointer.js';
import { executeFunction } from './functions.js';

export interface A2uiScope {
basePath: string;
Expand Down
4 changes: 2 additions & 2 deletions libs/a2ui/src/lib/validate.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
// SPDX-License-Identifier: MIT
import type { A2uiCheckRule } from './types';
import { resolveDynamic } from './resolve';
import type { A2uiCheckRule } from './types.js';
import { resolveDynamic } from './resolve.js';

export interface A2uiValidationResult {
valid: boolean;
Expand Down
2 changes: 1 addition & 1 deletion libs/ag-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/ag-ui",
"version": "0.0.22",
"version": "0.0.23",
"peerDependencies": {
"@ngaf/chat": "*",
"@ngaf/licensing": "*",
Expand Down
4 changes: 4 additions & 0 deletions libs/ag-ui/src/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,7 @@ export type { AgUiAgentConfig } from './lib/provide-ag-ui-agent';
export { FakeAgent } from './lib/testing/fake-agent';
export { provideFakeAgUiAgent } from './lib/testing/provide-fake-ag-ui-agent';
export type { FakeAgUiAgentConfig } from './lib/testing/provide-fake-ag-ui-agent';

// Citation state bridge — useful for advanced consumers building custom
// reducers or merging citations from non-standard state paths.
export { bridgeCitationsState } from './lib/bridge-citations-state';
2 changes: 1 addition & 1 deletion libs/chat/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/chat",
"version": "0.0.22",
"version": "0.0.23",
"exports": {
".": {
"types": "./index.d.ts",
Expand Down
2 changes: 1 addition & 1 deletion libs/cockpit-docs/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/cockpit-docs",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/cockpit-registry/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/cockpit-registry",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/cockpit-shell/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/cockpit-shell",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/cockpit-testing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/cockpit-testing",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/cockpit-ui/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/cockpit-ui",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/db/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/db",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/design-tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/design-tokens",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/example-layouts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/example-layouts",
"version": "0.0.22",
"version": "0.0.23",
"peerDependencies": {
"@angular/core": "^20.0.0 || ^21.0.0",
"@angular/common": "^20.0.0 || ^21.0.0"
Expand Down
2 changes: 1 addition & 1 deletion libs/langgraph/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/langgraph",
"version": "0.0.22",
"version": "0.0.23",
"peerDependencies": {
"@ngaf/chat": "*",
"@ngaf/licensing": "*",
Expand Down
4 changes: 4 additions & 0 deletions libs/langgraph/src/public-api.ts
Original file line number Diff line number Diff line change
Expand Up @@ -37,3 +37,7 @@ export { FetchStreamTransport } from './lib/transport/fetch-stream.transport';
// Mock test utility for LangGraph agent
export { mockLangGraphAgent } from './lib/testing/mock-langgraph-agent';
export type { MockLangGraphAgent } from './lib/testing/mock-langgraph-agent';

// Citation normalizer — useful for advanced consumers building custom adapters
// or bridging non-LangGraph message shapes into ngaf Citation[].
export { extractCitations } from './lib/internals/extract-citations';
2 changes: 1 addition & 1 deletion libs/licensing/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/licensing",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
2 changes: 1 addition & 1 deletion libs/partial-json/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/partial-json",
"version": "0.0.22",
"version": "0.0.23",
"deprecated": "Replaced by @cacheplane/partial-json. No further versions will be published from this package.",
"license": "MIT",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion libs/render/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/render",
"version": "0.0.22",
"version": "0.0.23",
"peerDependencies": {
"@angular/core": "^20.0.0 || ^21.0.0",
"@angular/common": "^20.0.0 || ^21.0.0",
Expand Down
2 changes: 1 addition & 1 deletion libs/ui-react/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ngaf/ui-react",
"version": "0.0.22",
"version": "0.0.23",
"license": "MIT",
"repository": {
"type": "git",
Expand Down
Loading