@tylerl0706/ahpx 0.2.10 → 0.2.13
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/bin.js +2 -2
- package/dist/{chunk-646D2XNX.js → chunk-IDRZ54EO.js} +348 -59
- package/dist/index.d.ts +831 -31
- package/dist/index.js +13 -3
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -5,7 +5,6 @@ import {
|
|
|
5
5
|
AttachmentType,
|
|
6
6
|
AuthHandler,
|
|
7
7
|
AuthRequiredReason,
|
|
8
|
-
CustomizationStatus,
|
|
9
8
|
ForwardingFormatter,
|
|
10
9
|
HealthChecker,
|
|
11
10
|
NotificationType,
|
|
@@ -17,11 +16,16 @@ import {
|
|
|
17
16
|
RpcError,
|
|
18
17
|
RpcTimeoutError,
|
|
19
18
|
SessionHandle,
|
|
19
|
+
SessionInputAnswerState,
|
|
20
|
+
SessionInputAnswerValueKind,
|
|
21
|
+
SessionInputQuestionKind,
|
|
22
|
+
SessionInputResponseKind,
|
|
20
23
|
SessionLifecycle,
|
|
21
24
|
SessionPersistence,
|
|
22
25
|
SessionStatus,
|
|
23
26
|
SessionStore,
|
|
24
27
|
StateMirror,
|
|
28
|
+
TerminalClaimKind,
|
|
25
29
|
ToolCallCancellationReason,
|
|
26
30
|
ToolCallConfirmationReason,
|
|
27
31
|
ToolCallStatus,
|
|
@@ -33,8 +37,9 @@ import {
|
|
|
33
37
|
buildTurnSummary,
|
|
34
38
|
ensureFileUri,
|
|
35
39
|
fileUriToDisplayPath,
|
|
40
|
+
terminalReducer,
|
|
36
41
|
truncatePreview
|
|
37
|
-
} from "./chunk-
|
|
42
|
+
} from "./chunk-IDRZ54EO.js";
|
|
38
43
|
|
|
39
44
|
// src/client/connection-pool.ts
|
|
40
45
|
var ConnectionPool = class {
|
|
@@ -219,7 +224,6 @@ export {
|
|
|
219
224
|
AuthRequiredReason,
|
|
220
225
|
ConnectionPool,
|
|
221
226
|
ContentEncoding,
|
|
222
|
-
CustomizationStatus,
|
|
223
227
|
FleetManager,
|
|
224
228
|
ForwardingFormatter,
|
|
225
229
|
HealthChecker,
|
|
@@ -233,11 +237,16 @@ export {
|
|
|
233
237
|
RpcError,
|
|
234
238
|
RpcTimeoutError,
|
|
235
239
|
SessionHandle,
|
|
240
|
+
SessionInputAnswerState,
|
|
241
|
+
SessionInputAnswerValueKind,
|
|
242
|
+
SessionInputQuestionKind,
|
|
243
|
+
SessionInputResponseKind,
|
|
236
244
|
SessionLifecycle,
|
|
237
245
|
SessionPersistence,
|
|
238
246
|
SessionStatus,
|
|
239
247
|
SessionStore,
|
|
240
248
|
StateMirror,
|
|
249
|
+
TerminalClaimKind,
|
|
241
250
|
ToolCallCancellationReason,
|
|
242
251
|
ToolCallConfirmationReason,
|
|
243
252
|
ToolCallStatus,
|
|
@@ -249,5 +258,6 @@ export {
|
|
|
249
258
|
buildTurnSummary,
|
|
250
259
|
ensureFileUri,
|
|
251
260
|
fileUriToDisplayPath,
|
|
261
|
+
terminalReducer,
|
|
252
262
|
truncatePreview
|
|
253
263
|
};
|
package/package.json
CHANGED