@aigne/transport 0.14.0 → 0.14.2

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,5 +1,38 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.14.2](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.14.1...transport-v0.14.2) (2025-08-18)
4
+
5
+
6
+ ### Dependencies
7
+
8
+ * The following workspace dependencies were updated
9
+ * dependencies
10
+ * @aigne/openai bumped to 0.11.4
11
+ * devDependencies
12
+ * @aigne/agent-library bumped to 1.21.22
13
+ * @aigne/core bumped to 1.51.0
14
+ * @aigne/default-memory bumped to 1.1.4
15
+ * @aigne/test-utils bumped to 0.5.30
16
+
17
+ ## [0.14.1](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.14.0...transport-v0.14.1) (2025-08-16)
18
+
19
+
20
+ ### Bug Fixes
21
+
22
+ * **core:** make getCredential async for aigne-hub mount point retrieval ([#372](https://github.com/AIGNE-io/aigne-framework/issues/372)) ([34ce7a6](https://github.com/AIGNE-io/aigne-framework/commit/34ce7a645fa83994d3dfe0f29ca70098cfecac9c))
23
+
24
+
25
+ ### Dependencies
26
+
27
+ * The following workspace dependencies were updated
28
+ * dependencies
29
+ * @aigne/openai bumped to 0.11.3
30
+ * devDependencies
31
+ * @aigne/agent-library bumped to 1.21.21
32
+ * @aigne/core bumped to 1.50.1
33
+ * @aigne/default-memory bumped to 1.1.3
34
+ * @aigne/test-utils bumped to 0.5.29
35
+
3
36
  ## [0.14.0](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.13.1...transport-v0.14.0) (2025-08-14)
4
37
 
5
38
 
@@ -6,5 +6,5 @@ export declare class ClientChatModel extends ChatModel {
6
6
  constructor(client: AIGNEHTTPClient);
7
7
  name: string;
8
8
  process(input: ChatModelInput, options: AgentInvokeOptions): PromiseOrValue<AgentProcessResult<ChatModelOutput>>;
9
- getCredential(): {};
9
+ getCredential(): Promise<{}>;
10
10
  }
@@ -13,7 +13,7 @@ class ClientChatModel extends core_1.ChatModel {
13
13
  process(input, options) {
14
14
  return this.client._invoke(this.name, input, options);
15
15
  }
16
- getCredential() {
16
+ async getCredential() {
17
17
  return {};
18
18
  }
19
19
  }
@@ -6,5 +6,5 @@ export declare class ClientChatModel extends ChatModel {
6
6
  constructor(client: AIGNEHTTPClient);
7
7
  name: string;
8
8
  process(input: ChatModelInput, options: AgentInvokeOptions): PromiseOrValue<AgentProcessResult<ChatModelOutput>>;
9
- getCredential(): {};
9
+ getCredential(): Promise<{}>;
10
10
  }
@@ -6,5 +6,5 @@ export declare class ClientChatModel extends ChatModel {
6
6
  constructor(client: AIGNEHTTPClient);
7
7
  name: string;
8
8
  process(input: ChatModelInput, options: AgentInvokeOptions): PromiseOrValue<AgentProcessResult<ChatModelOutput>>;
9
- getCredential(): {};
9
+ getCredential(): Promise<{}>;
10
10
  }
@@ -10,7 +10,7 @@ export class ClientChatModel extends ChatModel {
10
10
  process(input, options) {
11
11
  return this.client._invoke(this.name, input, options);
12
12
  }
13
- getCredential() {
13
+ async getCredential() {
14
14
  return {};
15
15
  }
16
16
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aigne/transport",
3
- "version": "0.14.0",
3
+ "version": "0.14.2",
4
4
  "description": "AIGNE Transport SDK providing HTTP client and server implementations for communication between AIGNE components",
5
5
  "publishConfig": {
6
6
  "access": "public"
@@ -46,7 +46,7 @@
46
46
  "p-retry": "^6.2.1",
47
47
  "raw-body": "^3.0.0",
48
48
  "zod": "^3.25.67",
49
- "@aigne/openai": "^0.11.2"
49
+ "@aigne/openai": "^0.11.4"
50
50
  },
51
51
  "devDependencies": {
52
52
  "@types/bun": "^1.2.18",
@@ -61,10 +61,10 @@
61
61
  "rimraf": "^6.0.1",
62
62
  "typescript": "^5.8.3",
63
63
  "uuid": "^11.1.0",
64
- "@aigne/test-utils": "^0.5.28",
65
- "@aigne/agent-library": "^1.21.20",
66
- "@aigne/core": "^1.50.0",
67
- "@aigne/default-memory": "^1.1.2"
64
+ "@aigne/agent-library": "^1.21.22",
65
+ "@aigne/default-memory": "^1.1.4",
66
+ "@aigne/test-utils": "^0.5.30",
67
+ "@aigne/core": "^1.51.0"
68
68
  },
69
69
  "scripts": {
70
70
  "lint": "tsc --noEmit",