@composio/openai-agents 0.1.53 → 0.1.55
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/dist/index.d.cts +2 -2
- package/dist/index.d.ts +2 -2
- package/package.json +10 -7
package/dist/index.d.cts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseAgenticProvider,
|
|
1
|
+
import { BaseAgenticProvider, McpServerGetResponse, McpUrlResponse, Tool as Tool$1, ExecuteToolFn } from '@composio/core';
|
|
2
2
|
import { Tool } from '@openai/agents';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -15,7 +15,7 @@ import { Tool } from '@openai/agents';
|
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
type OpenAIAgentsToolCollection = Array<Tool>;
|
|
18
|
-
declare class OpenAIAgentsProvider extends BaseAgenticProvider<OpenAIAgentsToolCollection, Tool> {
|
|
18
|
+
declare class OpenAIAgentsProvider extends BaseAgenticProvider<OpenAIAgentsToolCollection, Tool, McpServerGetResponse> {
|
|
19
19
|
readonly name = "openai-agents";
|
|
20
20
|
private strict;
|
|
21
21
|
/**
|
package/dist/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { BaseAgenticProvider,
|
|
1
|
+
import { BaseAgenticProvider, McpServerGetResponse, McpUrlResponse, Tool as Tool$1, ExecuteToolFn } from '@composio/core';
|
|
2
2
|
import { Tool } from '@openai/agents';
|
|
3
3
|
|
|
4
4
|
/**
|
|
@@ -15,7 +15,7 @@ import { Tool } from '@openai/agents';
|
|
|
15
15
|
*/
|
|
16
16
|
|
|
17
17
|
type OpenAIAgentsToolCollection = Array<Tool>;
|
|
18
|
-
declare class OpenAIAgentsProvider extends BaseAgenticProvider<OpenAIAgentsToolCollection, Tool> {
|
|
18
|
+
declare class OpenAIAgentsProvider extends BaseAgenticProvider<OpenAIAgentsToolCollection, Tool, McpServerGetResponse> {
|
|
19
19
|
readonly name = "openai-agents";
|
|
20
20
|
private strict;
|
|
21
21
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@composio/openai-agents",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.55",
|
|
4
4
|
"description": "",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -22,14 +22,17 @@
|
|
|
22
22
|
"author": "",
|
|
23
23
|
"license": "ISC",
|
|
24
24
|
"peerDependencies": {
|
|
25
|
-
"@composio/core": "0.1.
|
|
26
|
-
"@openai/agents": "^0.1.
|
|
25
|
+
"@composio/core": "0.1.54",
|
|
26
|
+
"@openai/agents": "^0.1.3",
|
|
27
|
+
"zod": "3.25.76"
|
|
27
28
|
},
|
|
28
29
|
"devDependencies": {
|
|
29
|
-
"
|
|
30
|
-
"
|
|
31
|
-
"
|
|
32
|
-
"
|
|
30
|
+
"@openai/agents": "^0.1.3",
|
|
31
|
+
"tsup": "^8.5.0",
|
|
32
|
+
"typescript": "^5.9.2",
|
|
33
|
+
"zod": "3.25.76",
|
|
34
|
+
"vitest": "^3.2.4",
|
|
35
|
+
"@composio/core": "0.1.54"
|
|
33
36
|
},
|
|
34
37
|
"gitHead": "4fae6e54d5c150fba955cc5fa314281da5a1e064",
|
|
35
38
|
"scripts": {
|