@anthropic-ai/sdk 0.110.0 → 0.112.0

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.
Files changed (95) hide show
  1. package/CHANGELOG.md +24 -0
  2. package/bin/migration-config.json +74 -0
  3. package/lib/tools/SessionToolRunner.d.mts +29 -2
  4. package/lib/tools/SessionToolRunner.d.mts.map +1 -1
  5. package/lib/tools/SessionToolRunner.d.ts +29 -2
  6. package/lib/tools/SessionToolRunner.d.ts.map +1 -1
  7. package/lib/tools/SessionToolRunner.js +265 -36
  8. package/lib/tools/SessionToolRunner.js.map +1 -1
  9. package/lib/tools/SessionToolRunner.mjs +265 -36
  10. package/lib/tools/SessionToolRunner.mjs.map +1 -1
  11. package/package.json +1 -1
  12. package/resources/beta/agents/agents.d.mts +1 -1
  13. package/resources/beta/agents/agents.d.ts +1 -1
  14. package/resources/beta/beta.d.mts +9 -1
  15. package/resources/beta/beta.d.mts.map +1 -1
  16. package/resources/beta/beta.d.ts +9 -1
  17. package/resources/beta/beta.d.ts.map +1 -1
  18. package/resources/beta/beta.js +8 -0
  19. package/resources/beta/beta.js.map +1 -1
  20. package/resources/beta/beta.mjs +8 -0
  21. package/resources/beta/beta.mjs.map +1 -1
  22. package/resources/beta/dreams.d.mts +269 -0
  23. package/resources/beta/dreams.d.mts.map +1 -0
  24. package/resources/beta/dreams.d.ts +269 -0
  25. package/resources/beta/dreams.d.ts.map +1 -0
  26. package/resources/beta/dreams.js +116 -0
  27. package/resources/beta/dreams.js.map +1 -0
  28. package/resources/beta/dreams.mjs +112 -0
  29. package/resources/beta/dreams.mjs.map +1 -0
  30. package/resources/beta/index.d.mts +2 -0
  31. package/resources/beta/index.d.mts.map +1 -1
  32. package/resources/beta/index.d.ts +2 -0
  33. package/resources/beta/index.d.ts.map +1 -1
  34. package/resources/beta/index.js +7 -3
  35. package/resources/beta/index.js.map +1 -1
  36. package/resources/beta/index.mjs +2 -0
  37. package/resources/beta/index.mjs.map +1 -1
  38. package/resources/beta/messages/batches.d.mts +3 -2
  39. package/resources/beta/messages/batches.d.mts.map +1 -1
  40. package/resources/beta/messages/batches.d.ts +3 -2
  41. package/resources/beta/messages/batches.d.ts.map +1 -1
  42. package/resources/beta/messages/messages.d.mts +18 -9
  43. package/resources/beta/messages/messages.d.mts.map +1 -1
  44. package/resources/beta/messages/messages.d.ts +18 -9
  45. package/resources/beta/messages/messages.d.ts.map +1 -1
  46. package/resources/beta/messages/messages.js.map +1 -1
  47. package/resources/beta/messages/messages.mjs.map +1 -1
  48. package/resources/beta/tunnels/certificates.d.mts +163 -0
  49. package/resources/beta/tunnels/certificates.d.mts.map +1 -0
  50. package/resources/beta/tunnels/certificates.d.ts +163 -0
  51. package/resources/beta/tunnels/certificates.d.ts.map +1 -0
  52. package/resources/beta/tunnels/certificates.js +129 -0
  53. package/resources/beta/tunnels/certificates.js.map +1 -0
  54. package/resources/beta/tunnels/certificates.mjs +125 -0
  55. package/resources/beta/tunnels/certificates.mjs.map +1 -0
  56. package/resources/beta/tunnels/index.d.mts +3 -0
  57. package/resources/beta/tunnels/index.d.mts.map +1 -0
  58. package/resources/beta/tunnels/index.d.ts +3 -0
  59. package/resources/beta/tunnels/index.d.ts.map +1 -0
  60. package/resources/beta/tunnels/index.js +9 -0
  61. package/resources/beta/tunnels/index.js.map +1 -0
  62. package/resources/beta/tunnels/index.mjs +4 -0
  63. package/resources/beta/tunnels/index.mjs.map +1 -0
  64. package/resources/beta/tunnels/tunnels.d.mts +212 -0
  65. package/resources/beta/tunnels/tunnels.d.mts.map +1 -0
  66. package/resources/beta/tunnels/tunnels.d.ts +212 -0
  67. package/resources/beta/tunnels/tunnels.d.ts.map +1 -0
  68. package/resources/beta/tunnels/tunnels.js +181 -0
  69. package/resources/beta/tunnels/tunnels.js.map +1 -0
  70. package/resources/beta/tunnels/tunnels.mjs +176 -0
  71. package/resources/beta/tunnels/tunnels.mjs.map +1 -0
  72. package/resources/beta/tunnels.d.mts +2 -0
  73. package/resources/beta/tunnels.d.mts.map +1 -0
  74. package/resources/beta/tunnels.d.ts +2 -0
  75. package/resources/beta/tunnels.d.ts.map +1 -0
  76. package/resources/beta/tunnels.js +6 -0
  77. package/resources/beta/tunnels.js.map +1 -0
  78. package/resources/beta/tunnels.mjs +3 -0
  79. package/resources/beta/tunnels.mjs.map +1 -0
  80. package/src/lib/tools/SessionToolRunner.ts +280 -36
  81. package/src/resources/beta/agents/agents.ts +1 -1
  82. package/src/resources/beta/beta.ts +73 -0
  83. package/src/resources/beta/dreams.ts +404 -0
  84. package/src/resources/beta/index.ts +32 -0
  85. package/src/resources/beta/messages/batches.ts +3 -2
  86. package/src/resources/beta/messages/messages.ts +18 -9
  87. package/src/resources/beta/tunnels/certificates.ts +252 -0
  88. package/src/resources/beta/tunnels/index.ts +23 -0
  89. package/src/resources/beta/tunnels/tunnels.ts +347 -0
  90. package/src/resources/beta/tunnels.ts +3 -0
  91. package/src/version.ts +1 -1
  92. package/version.d.mts +1 -1
  93. package/version.d.ts +1 -1
  94. package/version.js +1 -1
  95. package/version.mjs +1 -1
package/CHANGELOG.md CHANGED
@@ -1,5 +1,29 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.112.0 (2026-07-16)
4
+
5
+ Full Changelog: [sdk-v0.111.0...sdk-v0.112.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.111.0...sdk-v0.112.0)
6
+
7
+ ### Features
8
+
9
+ * **api:** add support for MCP Tunnels ([597ac41](https://github.com/anthropics/anthropic-sdk-typescript/commit/597ac4181f318e46fb974e716467648587e95362))
10
+
11
+ ## 0.111.0 (2026-07-10)
12
+
13
+ Full Changelog: [sdk-v0.110.0...sdk-v0.111.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.110.0...sdk-v0.111.0)
14
+
15
+ ### Features
16
+
17
+ * **api:** add support for dreaming ([77b28a6](https://github.com/anthropics/anthropic-sdk-typescript/commit/77b28a647239fd66d3a31b04fca4a58ebc86e493))
18
+ * **tools:** gate session tool calls on evaluated_permission; bound idle by server stop_reason ([68a6d7b](https://github.com/anthropics/anthropic-sdk-typescript/commit/68a6d7b92aaea4d3eaf3a7567db18e3bf6d695ef))
19
+
20
+
21
+ ### Chores
22
+
23
+ * **docs:** small updates to field descriptions ([e25b885](https://github.com/anthropics/anthropic-sdk-typescript/commit/e25b885eacbf26332e6133abff2ea7d72fef2b30))
24
+ * **docs:** update model example ([a33f3f0](https://github.com/anthropics/anthropic-sdk-typescript/commit/a33f3f0b7cee244f2dc894900e9fa07cf686228b))
25
+ * **docs:** updates to descriptions and examples ([eac4bac](https://github.com/anthropics/anthropic-sdk-typescript/commit/eac4bace325ae901465edf7a503183f669c3c2d8))
26
+
3
27
  ## 0.110.0 (2026-07-02)
4
28
 
5
29
  Full Changelog: [sdk-v0.109.1...sdk-v0.110.0](https://github.com/anthropics/anthropic-sdk-typescript/compare/sdk-v0.109.1...sdk-v0.110.0)
@@ -928,6 +928,80 @@
928
928
  "type": "options"
929
929
  }
930
930
  ]
931
+ },
932
+ {
933
+ "base": "beta.tunnels.certificates",
934
+ "name": "retrieve",
935
+ "params": [
936
+ {
937
+ "type": "param",
938
+ "key": "certificate_id",
939
+ "location": "path"
940
+ },
941
+ {
942
+ "type": "params",
943
+ "maybeOverload": false
944
+ },
945
+ {
946
+ "type": "options"
947
+ }
948
+ ],
949
+ "oldParams": [
950
+ {
951
+ "type": "param",
952
+ "key": "tunnel_id",
953
+ "location": "path"
954
+ },
955
+ {
956
+ "type": "param",
957
+ "key": "certificate_id",
958
+ "location": "path"
959
+ },
960
+ {
961
+ "type": "params",
962
+ "maybeOverload": true
963
+ },
964
+ {
965
+ "type": "options"
966
+ }
967
+ ]
968
+ },
969
+ {
970
+ "base": "beta.tunnels.certificates",
971
+ "name": "archive",
972
+ "params": [
973
+ {
974
+ "type": "param",
975
+ "key": "certificate_id",
976
+ "location": "path"
977
+ },
978
+ {
979
+ "type": "params",
980
+ "maybeOverload": false
981
+ },
982
+ {
983
+ "type": "options"
984
+ }
985
+ ],
986
+ "oldParams": [
987
+ {
988
+ "type": "param",
989
+ "key": "tunnel_id",
990
+ "location": "path"
991
+ },
992
+ {
993
+ "type": "param",
994
+ "key": "certificate_id",
995
+ "location": "path"
996
+ },
997
+ {
998
+ "type": "params",
999
+ "maybeOverload": true
1000
+ },
1001
+ {
1002
+ "type": "options"
1003
+ }
1004
+ ]
931
1005
  }
932
1006
  ]
933
1007
  }
@@ -31,7 +31,9 @@ export interface SessionToolRunnerOptions {
31
31
  /**
32
32
  * Once the session goes idle with `stop_reason.type === "end_turn"`, the
33
33
  * runner keeps running for this many milliseconds before stopping; any new
34
- * event resets the countdown and it re-arms on the next `end_turn` idle.
34
+ * event resets the countdown and it re-arms on the next `end_turn` idle. The
35
+ * countdown is deferred while a confirmation-gated call is held or still
36
+ * dispatching, and starts fresh once the last one resolves.
35
37
  * Defaults to {@link DEFAULT_MAX_IDLE_MS} (60s). `0` (or negative) disables
36
38
  * it — the runner then only stops on session termination or the consumer
37
39
  * breaking out / aborting.
@@ -94,9 +96,22 @@ export interface DispatchedToolCall {
94
96
  * post itself failed (typically a permanent 4xx or send-retry exhaustion)
95
97
  * and also `false` — with no `result` event ever built — for a tool name
96
98
  * this runner does not own when it deliberately posts nothing and leaves the
97
- * id pending for its owner (the split-client behavior).
99
+ * id pending for its owner (the split-client behavior), or when the call
100
+ * was denied and never executed (see `confirmation`).
98
101
  */
99
102
  readonly posted: boolean;
103
+ /**
104
+ * The confirmation verdict that gated this call, if any.
105
+ *
106
+ * `'allow'` — the call required user confirmation (the server evaluated
107
+ * its permission to `ask`, e.g. under an `always_ask` policy) and the
108
+ * matching `user.tool_confirmation` approved it before the tool ran.
109
+ * `'deny'` — the user denied it, or the server itself evaluated the
110
+ * permission to `deny`; the tool was never executed and nothing was posted
111
+ * (`result=undefined`, `posted=false`, `isError=false`).
112
+ * `undefined` — the call needed no confirmation.
113
+ */
114
+ readonly confirmation: 'allow' | 'deny' | undefined;
100
115
  }
101
116
  /**
102
117
  * The sessions-side counterpart to `client.beta.messages.toolRunner`: an
@@ -108,6 +123,18 @@ export interface DispatchedToolCall {
108
123
  * calls are not dispatched. Internally drives event-stream reconnect and result
109
124
  * posting.
110
125
  *
126
+ * A call the server gated with `evaluated_permission: "ask"` (the `always_ask`
127
+ * policy — or any value this SDK doesn't recognize, which fails closed) is held
128
+ * until its `user.tool_confirmation` arrives: only an explicit `allow` runs it;
129
+ * `deny` — or any verdict this SDK doesn't recognize, failing closed — is never
130
+ * executed and posts nothing (the denial resolves the call server-side), but is
131
+ * still yielded (`confirmation="deny"`, `posted=false`, `result=undefined`) so
132
+ * the consumer can observe it. A held call — and a user-approved one still
133
+ * dispatching — defers the `maxIdleMs` countdown, so an `end_turn` idle
134
+ * observed in the meantime cannot stop the runner: it waits until the verdict
135
+ * arrives, the session terminates, or the abort signal fires — pass
136
+ * `AbortSignal.timeout(...)` for a wall-clock bound.
137
+ *
111
138
  * Iteration ends when the session terminates (`session.status_terminated` /
112
139
  * `session.deleted`), when the consumer `break`s out of the loop or aborts the
113
140
  * supplied signal, or — once the session has gone idle with
@@ -1 +1 @@
1
- {"version":3,"file":"SessionToolRunner.d.mts","sourceRoot":"","sources":["../../src/lib/tools/SessionToolRunner.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,yBAAqB;AAC9C,OAAO,KAAK,EACV,wCAAwC,EACxC,kCAAkC,EAGlC,gDAAgD,EAChD,0CAA0C,EAC3C,iDAA6C;AAU9C,OAAO,EAA6B,KAAK,gBAAgB,EAAE,+BAA2B;AACtF,OAAO,KAAK,EAAE,4BAA4B,EAAE,6BAAyB;AAErE,8CAA8C;AAC9C,eAAO,MAAM,mBAAmB,8BAA8B,CAAC;AAW/D;;;;;;GAMG;AACH,KAAK,sBAAsB,GAAG,kCAAkC,GAAG,wCAAwC,CAAC;AAE5G;;;;GAIG;AACH,KAAK,0BAA0B,GAC3B,0CAA0C,GAC1C,gDAAgD,CAAC;AAErD,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,SAAS,CAAC;IAClB;;;;;;OAMG;IACH,KAAK,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC/B;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,4BAA4B,CAAC;CAC/C;AAED,sEAAsE;AACtE,eAAO,MAAM,mBAAmB,QAAS,CAAC;AAE1C;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,sBAAsB,CAAC;IACvC;;;;;;;;;OASG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,0BAA0B,CAAC;IAC7C;;;OAGG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,sEAAsE;IACtE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B;;;;;;OAMG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;CAC1B;AAOD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,qBAAa,iBAAkB,YAAW,aAAa,CAAC,kBAAkB,CAAC;;IACzE,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,gBAAgB,CAAC,CAAC;IAChD,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAiBf,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB;IAY7D,oDAAoD;IACpD,IAAI,MAAM,IAAI,WAAW,CAExB;IAED,2FAA2F;IAC3F,KAAK,IAAI,IAAI;IAIN,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC;CA2VnE"}
1
+ {"version":3,"file":"SessionToolRunner.d.mts","sourceRoot":"","sources":["../../src/lib/tools/SessionToolRunner.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,yBAAqB;AAC9C,OAAO,KAAK,EACV,wCAAwC,EACxC,kCAAkC,EAGlC,gDAAgD,EAChD,0CAA0C,EAC3C,iDAA6C;AAU9C,OAAO,EAA6B,KAAK,gBAAgB,EAAE,+BAA2B;AACtF,OAAO,KAAK,EAAE,4BAA4B,EAAE,6BAAyB;AAErE,8CAA8C;AAC9C,eAAO,MAAM,mBAAmB,8BAA8B,CAAC;AAW/D;;;;;;GAMG;AACH,KAAK,sBAAsB,GAAG,kCAAkC,GAAG,wCAAwC,CAAC;AAE5G;;;;GAIG;AACH,KAAK,0BAA0B,GAC3B,0CAA0C,GAC1C,gDAAgD,CAAC;AAErD,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,SAAS,CAAC;IAClB;;;;;;OAMG;IACH,KAAK,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC/B;;;;;;;;;OASG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,4BAA4B,CAAC;CAC/C;AAED,sEAAsE;AACtE,eAAO,MAAM,mBAAmB,QAAS,CAAC;AAE1C;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,sBAAsB,CAAC;IACvC;;;;;;;;;OASG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,0BAA0B,CAAC;IAC7C;;;OAGG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,sEAAsE;IACtE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B;;;;;;;OAOG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;IACzB;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,YAAY,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;CACrD;AAgGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,qBAAa,iBAAkB,YAAW,aAAa,CAAC,kBAAkB,CAAC;;IACzE,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,gBAAgB,CAAC,CAAC;IAChD,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAwBf,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB;IAoB7D,oDAAoD;IACpD,IAAI,MAAM,IAAI,WAAW,CAExB;IAED,2FAA2F;IAC3F,KAAK,IAAI,IAAI;IAIN,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC;CA4cnE"}
@@ -31,7 +31,9 @@ export interface SessionToolRunnerOptions {
31
31
  /**
32
32
  * Once the session goes idle with `stop_reason.type === "end_turn"`, the
33
33
  * runner keeps running for this many milliseconds before stopping; any new
34
- * event resets the countdown and it re-arms on the next `end_turn` idle.
34
+ * event resets the countdown and it re-arms on the next `end_turn` idle. The
35
+ * countdown is deferred while a confirmation-gated call is held or still
36
+ * dispatching, and starts fresh once the last one resolves.
35
37
  * Defaults to {@link DEFAULT_MAX_IDLE_MS} (60s). `0` (or negative) disables
36
38
  * it — the runner then only stops on session termination or the consumer
37
39
  * breaking out / aborting.
@@ -94,9 +96,22 @@ export interface DispatchedToolCall {
94
96
  * post itself failed (typically a permanent 4xx or send-retry exhaustion)
95
97
  * and also `false` — with no `result` event ever built — for a tool name
96
98
  * this runner does not own when it deliberately posts nothing and leaves the
97
- * id pending for its owner (the split-client behavior).
99
+ * id pending for its owner (the split-client behavior), or when the call
100
+ * was denied and never executed (see `confirmation`).
98
101
  */
99
102
  readonly posted: boolean;
103
+ /**
104
+ * The confirmation verdict that gated this call, if any.
105
+ *
106
+ * `'allow'` — the call required user confirmation (the server evaluated
107
+ * its permission to `ask`, e.g. under an `always_ask` policy) and the
108
+ * matching `user.tool_confirmation` approved it before the tool ran.
109
+ * `'deny'` — the user denied it, or the server itself evaluated the
110
+ * permission to `deny`; the tool was never executed and nothing was posted
111
+ * (`result=undefined`, `posted=false`, `isError=false`).
112
+ * `undefined` — the call needed no confirmation.
113
+ */
114
+ readonly confirmation: 'allow' | 'deny' | undefined;
100
115
  }
101
116
  /**
102
117
  * The sessions-side counterpart to `client.beta.messages.toolRunner`: an
@@ -108,6 +123,18 @@ export interface DispatchedToolCall {
108
123
  * calls are not dispatched. Internally drives event-stream reconnect and result
109
124
  * posting.
110
125
  *
126
+ * A call the server gated with `evaluated_permission: "ask"` (the `always_ask`
127
+ * policy — or any value this SDK doesn't recognize, which fails closed) is held
128
+ * until its `user.tool_confirmation` arrives: only an explicit `allow` runs it;
129
+ * `deny` — or any verdict this SDK doesn't recognize, failing closed — is never
130
+ * executed and posts nothing (the denial resolves the call server-side), but is
131
+ * still yielded (`confirmation="deny"`, `posted=false`, `result=undefined`) so
132
+ * the consumer can observe it. A held call — and a user-approved one still
133
+ * dispatching — defers the `maxIdleMs` countdown, so an `end_turn` idle
134
+ * observed in the meantime cannot stop the runner: it waits until the verdict
135
+ * arrives, the session terminates, or the abort signal fires — pass
136
+ * `AbortSignal.timeout(...)` for a wall-clock bound.
137
+ *
111
138
  * Iteration ends when the session terminates (`session.status_terminated` /
112
139
  * `session.deleted`), when the consumer `break`s out of the loop or aborts the
113
140
  * supplied signal, or — once the session has gone idle with
@@ -1 +1 @@
1
- {"version":3,"file":"SessionToolRunner.d.ts","sourceRoot":"","sources":["../../src/lib/tools/SessionToolRunner.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,wBAAqB;AAC9C,OAAO,KAAK,EACV,wCAAwC,EACxC,kCAAkC,EAGlC,gDAAgD,EAChD,0CAA0C,EAC3C,gDAA6C;AAU9C,OAAO,EAA6B,KAAK,gBAAgB,EAAE,8BAA2B;AACtF,OAAO,KAAK,EAAE,4BAA4B,EAAE,4BAAyB;AAErE,8CAA8C;AAC9C,eAAO,MAAM,mBAAmB,8BAA8B,CAAC;AAW/D;;;;;;GAMG;AACH,KAAK,sBAAsB,GAAG,kCAAkC,GAAG,wCAAwC,CAAC;AAE5G;;;;GAIG;AACH,KAAK,0BAA0B,GAC3B,0CAA0C,GAC1C,gDAAgD,CAAC;AAErD,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,SAAS,CAAC;IAClB;;;;;;OAMG;IACH,KAAK,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC/B;;;;;;;OAOG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,4BAA4B,CAAC;CAC/C;AAED,sEAAsE;AACtE,eAAO,MAAM,mBAAmB,QAAS,CAAC;AAE1C;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,sBAAsB,CAAC;IACvC;;;;;;;;;OASG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,0BAA0B,CAAC;IAC7C;;;OAGG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,sEAAsE;IACtE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B;;;;;;OAMG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;CAC1B;AAOD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,qBAAa,iBAAkB,YAAW,aAAa,CAAC,kBAAkB,CAAC;;IACzE,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,gBAAgB,CAAC,CAAC;IAChD,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAiBf,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB;IAY7D,oDAAoD;IACpD,IAAI,MAAM,IAAI,WAAW,CAExB;IAED,2FAA2F;IAC3F,KAAK,IAAI,IAAI;IAIN,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC;CA2VnE"}
1
+ {"version":3,"file":"SessionToolRunner.d.ts","sourceRoot":"","sources":["../../src/lib/tools/SessionToolRunner.ts"],"names":[],"mappings":"AACA,OAAO,KAAK,EAAE,SAAS,EAAE,wBAAqB;AAC9C,OAAO,KAAK,EACV,wCAAwC,EACxC,kCAAkC,EAGlC,gDAAgD,EAChD,0CAA0C,EAC3C,gDAA6C;AAU9C,OAAO,EAA6B,KAAK,gBAAgB,EAAE,8BAA2B;AACtF,OAAO,KAAK,EAAE,4BAA4B,EAAE,4BAAyB;AAErE,8CAA8C;AAC9C,eAAO,MAAM,mBAAmB,8BAA8B,CAAC;AAW/D;;;;;;GAMG;AACH,KAAK,sBAAsB,GAAG,kCAAkC,GAAG,wCAAwC,CAAC;AAE5G;;;;GAIG;AACH,KAAK,0BAA0B,GAC3B,0CAA0C,GAC1C,gDAAgD,CAAC;AAErD,MAAM,WAAW,wBAAwB;IACvC,MAAM,EAAE,SAAS,CAAC;IAClB;;;;;;OAMG;IACH,KAAK,EAAE,KAAK,CAAC,gBAAgB,CAAC,CAAC;IAC/B;;;;;;;;;OASG;IACH,SAAS,CAAC,EAAE,MAAM,CAAC;IACnB,6DAA6D;IAC7D,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB;;;;;;;OAOG;IACH,cAAc,CAAC,EAAE,4BAA4B,CAAC;CAC/C;AAED,sEAAsE;AACtE,eAAO,MAAM,mBAAmB,QAAS,CAAC;AAE1C;;;;;;;GAOG;AACH,MAAM,WAAW,kBAAkB;IACjC;;;;OAIG;IACH,QAAQ,CAAC,KAAK,EAAE,sBAAsB,CAAC;IACvC;;;;;;;;;OASG;IACH,QAAQ,CAAC,MAAM,CAAC,EAAE,0BAA0B,CAAC;IAC7C;;;OAGG;IACH,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,sEAAsE;IACtE,QAAQ,CAAC,IAAI,EAAE,MAAM,CAAC;IACtB;;;OAGG;IACH,QAAQ,CAAC,OAAO,EAAE,OAAO,CAAC;IAC1B;;;;;;;OAOG;IACH,QAAQ,CAAC,MAAM,EAAE,OAAO,CAAC;IACzB;;;;;;;;;;OAUG;IACH,QAAQ,CAAC,YAAY,EAAE,OAAO,GAAG,MAAM,GAAG,SAAS,CAAC;CACrD;AAgGD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,qBAAa,iBAAkB,YAAW,aAAa,CAAC,kBAAkB,CAAC;;IACzE,QAAQ,CAAC,MAAM,EAAE,SAAS,CAAC;IAC3B,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;IAC3B,QAAQ,CAAC,KAAK,EAAE,aAAa,CAAC,gBAAgB,CAAC,CAAC;IAChD,QAAQ,CAAC,SAAS,EAAE,MAAM,CAAC;gBAwBf,SAAS,EAAE,MAAM,EAAE,IAAI,EAAE,wBAAwB;IAoB7D,oDAAoD;IACpD,IAAI,MAAM,IAAI,WAAW,CAExB;IAED,2FAA2F;IAC3F,KAAK,IAAI,IAAI;IAIN,CAAC,MAAM,CAAC,aAAa,CAAC,IAAI,aAAa,CAAC,kBAAkB,CAAC;CA4cnE"}