Skip to content

Commit 82f8c7a

Browse files
committed
fix(ui): circular exports
Signed-off-by: Petr Bulánek <[email protected]>
1 parent 17619c4 commit 82f8c7a

File tree

35 files changed

+74
-82
lines changed

35 files changed

+74
-82
lines changed

apps/agentstack-sdk-ts/src/client/a2a/extensions/auth/oauth/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import z from 'zod';
77

8-
import type { A2AServiceExtension, A2AUiExtension } from '../../../../core';
8+
import type { A2AServiceExtension, A2AUiExtension } from '../../../../core/extensions/types';
99
import { oAuthDemandsSchema, oAuthFulfillmentsSchema, oAuthRequestSchema } from './schemas';
1010
import type { OAuthDemands, OAuthFulfillments, OAuthRequest } from './types';
1111

apps/agentstack-sdk-ts/src/client/a2a/extensions/auth/secrets/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import z from 'zod';
77

8-
import type { A2AServiceExtension, A2AUiExtension } from '../../../../core';
8+
import type { A2AServiceExtension, A2AUiExtension } from '../../../../core/extensions/types';
99
import { secretDemandsSchema, secretFulfillmentsSchema } from './schemas';
1010
import type { SecretDemands, SecretFulfillments } from './types';
1111

apps/agentstack-sdk-ts/src/client/a2a/extensions/services/embedding/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import type { A2AServiceExtension } from '../../../../core';
6+
import type { A2AServiceExtension } from '../../../../core/extensions/types';
77
import { embeddingDemandsSchema, embeddingFulfillmentsSchema } from './schemas';
88
import type { EmbeddingDemands, EmbeddingFulfillments } from './types';
99

apps/agentstack-sdk-ts/src/client/a2a/extensions/services/form/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import type { A2AServiceExtension } from '../../../../core';
6+
import type { A2AServiceExtension } from '../../../../core/extensions/types';
77
import { formDemandsSchema, formFulfillmentsSchema } from './schemas';
88
import type { FormDemands, FormFulfillments } from './types';
99

apps/agentstack-sdk-ts/src/client/a2a/extensions/services/form/schemas.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import z from 'zod';
77

8-
import { formRenderSchema, formResponseSchema } from '../../schemas';
8+
import { formRenderSchema, formResponseSchema } from '../../common/form/schemas';
99

1010
export const formDemandsSchema = z.object({
1111
form_demands: z

apps/agentstack-sdk-ts/src/client/a2a/extensions/services/llm/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import type { A2AServiceExtension } from '../../../../core';
6+
import type { A2AServiceExtension } from '../../../../core/extensions/types';
77
import { llmDemandsSchema, llmFulfillmentsSchema } from './schemas';
88
import type { LLMDemands, LLMFulfillments } from './types';
99

apps/agentstack-sdk-ts/src/client/a2a/extensions/services/mcp/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import type { A2AServiceExtension } from '../../../../core';
6+
import type { A2AServiceExtension } from '../../../../core/extensions/types';
77
import { mcpDemandsSchema, mcpFulfillmentsSchema } from './schemas';
88
import type { MCPDemands, MCPFulfillments } from './types';
99

apps/agentstack-sdk-ts/src/client/a2a/extensions/services/platform-api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* SPDX-License-Identifier: Apache-2.0
44
*/
55

6-
import type { ContextToken } from '../../../../api';
6+
import type { ContextToken } from '../../../../api/contexts/types';
77

88
const URI = 'https://a2a-extensions.agentstack.beeai.dev/services/platform_api/v1';
99

apps/agentstack-sdk-ts/src/client/a2a/extensions/ui/agent-detail/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import z from 'zod';
77

8-
import type { A2AUiExtension } from '../../../../core';
8+
import type { A2AUiExtension } from '../../../../core/extensions/types';
99
import { agentDetailSchema } from './schemas';
1010
import type { AgentDetail } from './types';
1111

apps/agentstack-sdk-ts/src/client/a2a/extensions/ui/canvas/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
import z from 'zod';
77

8-
import type { A2AUiExtension } from '../../../../core';
8+
import type { A2AUiExtension } from '../../../../core/extensions/types';
99
import { canvasEditRequestSchema } from './schemas';
1010
import type { CanvasEditRequest } from './types';
1111

0 commit comments

Comments
 (0)