@honor-claw/yoyo 1.2.0-beta.2 → 1.2.0-beta.3

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@honor-claw/yoyo",
3
- "version": "1.2.0-beta.2",
3
+ "version": "1.2.0-beta.3",
4
4
  "description": "OpenClaw Honor Yoyo connection plugin",
5
5
  "keywords": [
6
6
  "ai",
@@ -125,6 +125,7 @@ export class ClawCloudClient {
125
125
  data = {
126
126
  clientId: params.authConfig.clientId,
127
127
  code: params.code,
128
+ redirectUri: "http://127.0.0.1:8081/deepLink",
128
129
  };
129
130
  }
130
131
 
package/src/apis/types.ts CHANGED
@@ -90,6 +90,7 @@ export type TokenResponseV2 = {
90
90
  export interface ExchangeTokenRequest {
91
91
  clientId?: string;
92
92
  code?: string;
93
+ redirectUri?: string;
93
94
  }
94
95
 
95
96
  /**