qlogicagent 2.10.46 → 2.10.47

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.
@@ -0,0 +1,32 @@
1
+ export interface PetStats {
2
+ grip: number;
3
+ patience: number;
4
+ curiosity: number;
5
+ appetite: number;
6
+ humor: number;
7
+ }
8
+ export interface PetSoul {
9
+ name: string;
10
+ species: string;
11
+ personality: string;
12
+ catchphrase: string;
13
+ stats: PetStats;
14
+ rarity: string;
15
+ breed?: string;
16
+ breedColors?: {
17
+ primary: string;
18
+ secondary: string;
19
+ };
20
+ level: number;
21
+ experience: number;
22
+ hatchedAt: string;
23
+ }
24
+ export interface PetBreed {
25
+ id: string;
26
+ name: string;
27
+ colors: {
28
+ primary: string;
29
+ secondary: string;
30
+ };
31
+ rarity: string;
32
+ }
@@ -46,6 +46,7 @@ export interface AcpRequestHandler {
46
46
  handleAcpPermissionResponse(permissionId: string, optionId: string): void;
47
47
  handleAcpAbort(params: {
48
48
  sessionId: string;
49
+ turnId?: string;
49
50
  }): Promise<void>;
50
51
  handleAcpDream(params: {
51
52
  sessionId: string;
@@ -136,6 +137,7 @@ export declare class AcpServer {
136
137
  private onSessionEnd;
137
138
  private onSessionSetConfig;
138
139
  private onAbort;
140
+ private onCancel;
139
141
  private onDream;
140
142
  private sendResult;
141
143
  private sendError;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "qlogicagent",
3
- "version": "2.10.46",
3
+ "version": "2.10.47",
4
4
  "description": "XiaozhiClaw Agent CLI — subprocess architecture (JSON-RPC over stdio)",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",