@botonic/plugin-ai-agents 2.35.0-alpha.0 → 2.36.0

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/CHANGELOG.md CHANGED
@@ -1,3 +1,40 @@
1
+ ## 2.36.0 (2026-09-02)
2
+
3
+ ### 🚀 Features
4
+
5
+ - ts6 typecheck pass ([#1090](https://github.com/metis-ai/hubtype-product/pull/1090))
6
+
7
+ ### ❤️ Thank You
8
+
9
+ - Oriol Raventós @Iru89
10
+
11
+ ## 2.35.0 (2026-08-03)
12
+
13
+ ### 🚀 Features
14
+
15
+ - upgrade to Nx 23.1.0 in bot apps, create-workspace and botonic/nx-plugin ([#1043](https://github.com/metis-ai/hubtype-product/pull/1043))
16
+ - eslint v9 with flat config ([#1039](https://github.com/metis-ai/hubtype-product/pull/1039))
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - David Hidalgo @Davidhidalgo
21
+ - Oriol Raventós @Davidhidalgo
22
+
23
+ ## 2.35.0-alpha.0 (2026-08-03)
24
+
25
+ ### 🚀 Features
26
+
27
+ - eslint v9 with flat config ([#1039](https://github.com/metis-ai/hubtype-product/pull/1039))
28
+
29
+ ### 🩹 Fixes
30
+
31
+ - **release-botonic:** fix alpha release version resolution and hook crash ([7b5657fc3](https://github.com/metis-ai/hubtype-product/commit/7b5657fc3))
32
+
33
+ ### ❤️ Thank You
34
+
35
+ - David Hidalgo @Davidhidalgo
36
+ - Oriol Raventós @Iru89
37
+
1
38
  ## 2.34.2 (2026-07-13)
2
39
 
3
40
  This was a version bump only for @botonic/plugin-ai-agents to align it with other projects, there were no code changes.
@@ -307,4 +344,4 @@ This was a version bump only for @botonic/plugin-ai-agents to align it with othe
307
344
 
308
345
  ## 2.0.1-alpha.0 (2025-11-27)
309
346
 
310
- This was a version bump only for @botonic/plugin-ai-agents to align it with other projects, there were no code changes.
347
+ This was a version bump only for @botonic/plugin-ai-agents to align it with other projects, there were no code changes.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@botonic/plugin-ai-agents",
3
- "version": "2.35.0-alpha.0",
3
+ "version": "2.36.0",
4
4
  "type": "module",
5
5
  "types": "./src/index.d.ts",
6
6
  "module": "./src/index.js",
@@ -11,8 +11,8 @@
11
11
  }
12
12
  },
13
13
  "dependencies": {
14
- "@botonic/core": "2.35.0-alpha.0",
15
- "@botonic/shared": "2.35.0-alpha.0",
14
+ "@botonic/core": "2.36.0",
15
+ "@botonic/shared": "2.36.0",
16
16
  "@openai/agents": "^0.10.1",
17
17
  "@openai/agents-core": "^0.11.6",
18
18
  "openai": "^6.0.0",
@@ -1,6 +1,6 @@
1
1
  import { z } from 'zod';
2
2
  import type { AiAgentContext } from '../types';
3
3
  export declare const RETRIEVE_KNOWLEDGE_TOOL_NAME = "retrieve_knowledge";
4
- export declare const createRetrieveKnowledge: (sourceIds: string[]) => import("@openai/agents").FunctionTool<AiAgentContext<import("dist/libs/botonic/core/src").ResolvedPlugins, import("dist/libs/botonic/shared/src").UserExtraData>, z.ZodObject<{
4
+ export declare const createRetrieveKnowledge: (sourceIds: string[]) => import("@openai/agents").FunctionTool<AiAgentContext<import("../../../../../../dist/libs/botonic/core/src").ResolvedPlugins, import("../../../../../../dist/libs/botonic/shared/src").UserExtraData>, z.ZodObject<{
5
5
  query: z.ZodString;
6
6
  }, z.core.$strip>, string>;