@aigne/transport 0.14.0 → 0.14.1

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,24 @@
1
1
  # Changelog
2
2
 
3
+ ## [0.14.1](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.14.0...transport-v0.14.1) (2025-08-16)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **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))
9
+
10
+
11
+ ### Dependencies
12
+
13
+ * The following workspace dependencies were updated
14
+ * dependencies
15
+ * @aigne/openai bumped to 0.11.3
16
+ * devDependencies
17
+ * @aigne/agent-library bumped to 1.21.21
18
+ * @aigne/core bumped to 1.50.1
19
+ * @aigne/default-memory bumped to 1.1.3
20
+ * @aigne/test-utils bumped to 0.5.29
21
+
3
22
  ## [0.14.0](https://github.com/AIGNE-io/aigne-framework/compare/transport-v0.13.1...transport-v0.14.0) (2025-08-14)
4
23
 
5
24
 
@@ -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.1",
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.3"
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.21",
65
+ "@aigne/core": "^1.50.1",
66
+ "@aigne/default-memory": "^1.1.3",
67
+ "@aigne/test-utils": "^0.5.29"
68
68
  },
69
69
  "scripts": {
70
70
  "lint": "tsc --noEmit",