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.
- package/dist/cli.js +260 -260
- package/dist/index.js +259 -259
- package/dist/protocol.js +1 -1
- package/dist/types/cli/acp-session-handlers.d.ts +3 -14
- package/dist/types/cli/cli-acp-request-handler.d.ts +2 -0
- package/dist/types/cli/handlers/pet-handler.d.ts +5 -0
- package/dist/types/cli/handlers/turn-handler.d.ts +28 -1
- package/dist/types/cli/pet-runtime.d.ts +1 -0
- package/dist/types/cli/session-history-coordinator.d.ts +0 -5
- package/dist/types/cli/stdio-server.d.ts +2 -0
- package/dist/types/cli/turn-core.d.ts +62 -0
- package/dist/types/protocol/wire/acp-protocol.d.ts +40 -9
- package/dist/types/protocol/wire/index.d.ts +1 -1
- package/dist/types/protocol/wire/notification-payloads.d.ts +1 -0
- package/dist/types/runtime/pet/index.d.ts +3 -1
- package/dist/types/runtime/pet/pet-growth-engine.d.ts +1 -1
- package/dist/types/runtime/pet/pet-profile-service.d.ts +52 -0
- package/dist/types/runtime/pet/pet-reaction-service.d.ts +1 -1
- package/dist/types/runtime/pet/pet-soul-service.d.ts +2 -33
- package/dist/types/runtime/pet/pet-types.d.ts +32 -0
- package/dist/types/transport/acp-server.d.ts +2 -0
- package/package.json +1 -1
|
@@ -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;
|