t3code-cli 0.11.0 → 0.13.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 (330) hide show
  1. package/README.md +42 -10
  2. package/dist/application.js +2 -2
  3. package/dist/auth.js +1 -1
  4. package/dist/bin.js +85549 -2668
  5. package/dist/cli.js +15 -2
  6. package/dist/config.js +120 -2
  7. package/dist/connection.js +2 -2
  8. package/dist/index.js +1 -1
  9. package/dist/node.js +6 -2
  10. package/dist/orchestration.js +2 -2
  11. package/dist/rolldown-runtime.js +1 -1
  12. package/dist/rpc.js +1 -1
  13. package/dist/runtime.js +2 -2
  14. package/dist/shared.js +23313 -8022
  15. package/dist/src/application/actions.d.ts +25 -0
  16. package/dist/src/application/index.d.ts +3 -3
  17. package/dist/src/application/layer.d.ts +66 -50
  18. package/dist/src/application/model-selection.d.ts +2 -2
  19. package/dist/src/application/models.d.ts +1 -1
  20. package/dist/src/application/project-commands.d.ts +23 -3
  21. package/dist/src/application/projects.d.ts +7 -7
  22. package/dist/src/application/service.d.ts +65 -2
  23. package/dist/src/application/shell-sequence.d.ts +25 -19
  24. package/dist/src/application/terminals.d.ts +8 -8
  25. package/dist/src/application/thread-commands.d.ts +19 -19
  26. package/dist/src/application/thread-update.d.ts +1 -1
  27. package/dist/src/application/thread-wait.d.ts +19 -15
  28. package/dist/src/application/threads.d.ts +134 -108
  29. package/dist/src/auth/error.d.ts +3 -3
  30. package/dist/src/auth/index.d.ts +1 -1
  31. package/dist/src/auth/layer.d.ts +36 -8
  32. package/dist/src/auth/local-base-dir.d.ts +5 -2
  33. package/dist/src/auth/local-origin.d.ts +3 -3
  34. package/dist/src/auth/local-token.d.ts +3 -3
  35. package/dist/src/auth/remote-error.d.ts +3 -0
  36. package/dist/src/auth/service.d.ts +15 -3
  37. package/dist/src/auth/type.d.ts +40 -1
  38. package/dist/src/cli/env/flag.d.ts +2 -0
  39. package/dist/src/cli/env/index.d.ts +2 -0
  40. package/dist/src/cli/env/selection-layer.d.ts +3 -0
  41. package/dist/src/cli/flags.d.ts +2 -0
  42. package/dist/src/cli/format/index.d.ts +1 -0
  43. package/dist/src/cli/format/output.d.ts +12 -0
  44. package/dist/src/cli/index.d.ts +4 -0
  45. package/dist/src/cli/runtime/index.d.ts +1 -0
  46. package/dist/src/cli/runtime/service.d.ts +16 -0
  47. package/dist/src/{scope → cli/scope}/resolve.d.ts +5 -4
  48. package/dist/src/config/config.d.ts +49 -0
  49. package/dist/src/config/credential/cipher-node.d.ts +3 -0
  50. package/dist/src/config/credential/cipher-web.d.ts +3 -0
  51. package/dist/src/config/credential/cipher.d.ts +29 -0
  52. package/dist/src/config/credential/env.d.ts +3 -0
  53. package/dist/src/config/credential/error.d.ts +8 -0
  54. package/dist/src/config/credential/index.d.ts +6 -0
  55. package/dist/src/config/credential/service.d.ts +34 -0
  56. package/dist/src/config/env/env.d.ts +55 -0
  57. package/dist/src/config/env/index.d.ts +2 -0
  58. package/dist/src/{layout/base-dir.d.ts → config/env/layout.d.ts} +0 -1
  59. package/dist/src/config/environment-name/index.d.ts +1 -0
  60. package/dist/src/config/environment-name/name.d.ts +10 -0
  61. package/dist/src/config/error.d.ts +4 -11
  62. package/dist/src/config/index.d.ts +10 -5
  63. package/dist/src/config/keystore/error.d.ts +8 -0
  64. package/dist/src/config/keystore/file.d.ts +9 -0
  65. package/dist/src/config/keystore/index.d.ts +4 -0
  66. package/dist/src/config/keystore/keyring-node.d.ts +4 -0
  67. package/dist/src/config/keystore/service.d.ts +33 -0
  68. package/dist/src/config/paths/index.d.ts +1 -0
  69. package/dist/src/config/paths/paths.d.ts +6 -0
  70. package/dist/src/config/persist/file-mode.d.ts +4 -0
  71. package/dist/src/config/persist/migration.d.ts +68 -0
  72. package/dist/src/config/persist/persist.d.ts +40 -0
  73. package/dist/src/config/persist/schema.d.ts +68 -0
  74. package/dist/src/config/resolve/resolve.d.ts +40 -0
  75. package/dist/src/config/selection/index.d.ts +1 -0
  76. package/dist/src/config/selection/resolve.d.ts +4 -0
  77. package/dist/src/config/selection/service.d.ts +10 -0
  78. package/dist/src/config/types.d.ts +36 -0
  79. package/dist/src/config/url/error.d.ts +10 -0
  80. package/dist/src/config/url/index.d.ts +2 -0
  81. package/dist/src/connection/error.d.ts +3 -1
  82. package/dist/src/connection/index.d.ts +0 -1
  83. package/dist/src/connection/prepared.d.ts +14 -0
  84. package/dist/src/contracts/index.d.ts +1 -1
  85. package/dist/src/domain/error.d.ts +14 -1
  86. package/dist/src/domain/helpers.d.ts +53 -43
  87. package/dist/src/domain/model-config.d.ts +92 -84
  88. package/dist/src/domain/thread-activities.d.ts +1 -1
  89. package/dist/src/domain/thread-lifecycle.d.ts +24 -20
  90. package/dist/src/index.d.ts +1 -2
  91. package/dist/src/{connection/node.d.ts → node/connection.d.ts} +1 -1
  92. package/dist/src/node/index.d.ts +1 -2
  93. package/dist/src/orchestration/index.d.ts +0 -1
  94. package/dist/src/orchestration/layer.d.ts +321 -390
  95. package/dist/src/orchestration/service.d.ts +1 -1
  96. package/dist/src/rpc/error.d.ts +4 -6
  97. package/dist/src/rpc/layer.d.ts +2036 -1917
  98. package/dist/src/rpc/operation.d.ts +4 -5732
  99. package/dist/src/rpc/service.d.ts +1 -1
  100. package/dist/src/rpc/session.d.ts +22 -0
  101. package/dist/src/rpc/ws-group.d.ts +456 -1032
  102. package/dist/src/runtime/index.d.ts +1 -2
  103. package/dist/src/runtime/layer.d.ts +12 -8
  104. package/dist/src/sql/node-sqlite-client.d.ts +1 -1
  105. package/dist/src/t3tools/index.d.ts +1 -1
  106. package/dist/t3tools.js +2 -2
  107. package/package.json +30 -25
  108. package/src/application/actions.test.ts +328 -0
  109. package/src/application/actions.ts +475 -0
  110. package/src/application/index.ts +9 -5
  111. package/src/application/layer.ts +9 -0
  112. package/src/application/model-selection.ts +2 -2
  113. package/src/application/project-commands.ts +23 -5
  114. package/src/application/projects.ts +6 -7
  115. package/src/application/service.ts +79 -1
  116. package/src/application/shell-sequence.ts +1 -1
  117. package/src/application/terminals.ts +2 -1
  118. package/src/application/thread-commands.ts +1 -1
  119. package/src/application/thread-update.ts +1 -1
  120. package/src/application/thread-wait.ts +5 -1
  121. package/src/application/threads.test.ts +9 -3
  122. package/src/application/threads.ts +6 -6
  123. package/src/auth/error.ts +4 -9
  124. package/src/auth/index.ts +7 -0
  125. package/src/auth/layer.test-utils.ts +34 -0
  126. package/src/auth/layer.ts +116 -34
  127. package/src/auth/local-base-dir.ts +13 -6
  128. package/src/auth/local-origin.ts +10 -7
  129. package/src/auth/local-token.ts +28 -23
  130. package/src/auth/remote-error.ts +17 -0
  131. package/src/auth/service.test.ts +200 -0
  132. package/src/auth/service.ts +27 -3
  133. package/src/auth/transport.ts +45 -114
  134. package/src/auth/type.ts +47 -1
  135. package/src/bin.ts +24 -6
  136. package/src/cli/action-format.ts +110 -0
  137. package/src/cli/action.ts +398 -0
  138. package/src/cli/app.ts +6 -0
  139. package/src/cli/auth.ts +76 -23
  140. package/src/cli/env/flag.ts +8 -0
  141. package/src/cli/env/index.ts +2 -0
  142. package/src/cli/env/selection-layer.test.ts +49 -0
  143. package/src/cli/env/selection-layer.ts +27 -0
  144. package/src/cli/env.ts +107 -0
  145. package/src/cli/extra-args.test.ts +32 -0
  146. package/src/cli/extra-args.ts +22 -0
  147. package/src/cli/flags.ts +11 -1
  148. package/src/cli/format/auth.ts +92 -0
  149. package/src/cli/format/human.ts +131 -0
  150. package/src/cli/format/index.ts +12 -0
  151. package/src/cli/format/model.ts +29 -0
  152. package/src/cli/format/output.ts +51 -0
  153. package/src/cli/format/project.ts +32 -0
  154. package/src/cli/format/terminal.ts +87 -0
  155. package/src/cli/{thread-format.test.ts → format/thread.test.ts} +6 -4
  156. package/src/cli/format/thread.ts +185 -0
  157. package/src/cli/index.ts +20 -0
  158. package/src/cli/interaction/confirm.ts +64 -0
  159. package/src/cli/{self-action.ts → interaction/self-action.ts} +8 -6
  160. package/src/cli/message-input.ts +1 -1
  161. package/src/cli/model.ts +9 -5
  162. package/src/cli/project.ts +13 -7
  163. package/src/cli/projects/delete.ts +13 -12
  164. package/src/cli/require.ts +9 -7
  165. package/src/cli/runtime/index.ts +1 -0
  166. package/src/cli/runtime/service.ts +28 -0
  167. package/src/{scope → cli/scope}/resolve.ts +11 -9
  168. package/src/cli/terminal/attach.ts +3 -6
  169. package/src/cli/terminal/create.ts +10 -9
  170. package/src/cli/terminal/destroy.ts +13 -11
  171. package/src/cli/terminal/list.ts +10 -9
  172. package/src/cli/terminal/read.test-utils.ts +48 -0
  173. package/src/cli/terminal/read.test.ts +35 -0
  174. package/src/cli/terminal/read.ts +3 -6
  175. package/src/cli/terminal/scope.ts +10 -5
  176. package/src/cli/terminal/shared.ts +1 -1
  177. package/src/cli/terminal/stream.ts +3 -6
  178. package/src/cli/terminal/wait.test.ts +5 -3
  179. package/src/cli/terminal/wait.ts +10 -9
  180. package/src/cli/terminal/write.test.ts +34 -0
  181. package/src/cli/terminal/write.ts +10 -9
  182. package/src/cli/threads/approve.ts +11 -7
  183. package/src/cli/threads/archive.ts +14 -9
  184. package/src/cli/threads/callback.ts +6 -4
  185. package/src/cli/threads/delete.ts +17 -11
  186. package/src/cli/threads/interrupt.ts +14 -9
  187. package/src/cli/threads/list.test.ts +5 -3
  188. package/src/cli/threads/list.ts +10 -10
  189. package/src/cli/threads/messages.ts +11 -7
  190. package/src/cli/threads/respond.ts +11 -7
  191. package/src/cli/threads/send.ts +19 -9
  192. package/src/cli/threads/show.ts +11 -7
  193. package/src/cli/threads/start.ts +18 -13
  194. package/src/cli/threads/unarchive.ts +11 -7
  195. package/src/cli/threads/update.ts +14 -9
  196. package/src/cli/threads/wait.ts +11 -7
  197. package/src/cli/wait-events.ts +1 -1
  198. package/src/config/config.ts +260 -0
  199. package/src/config/credential/cipher-node.ts +40 -0
  200. package/src/config/credential/cipher-web.ts +82 -0
  201. package/src/config/credential/cipher.ts +39 -0
  202. package/src/config/credential/env.ts +13 -0
  203. package/src/config/credential/error.ts +9 -0
  204. package/src/config/credential/index.ts +6 -0
  205. package/src/config/credential/service.test-utils.ts +25 -0
  206. package/src/config/credential/service.test.ts +116 -0
  207. package/src/config/credential/service.ts +205 -0
  208. package/src/config/env/env.test-utils.ts +14 -0
  209. package/src/config/env/env.ts +81 -0
  210. package/src/config/env/index.ts +2 -0
  211. package/src/{layout/base-dir.ts → config/env/layout.ts} +0 -9
  212. package/src/config/environment-name/index.ts +7 -0
  213. package/src/config/environment-name/name.test.ts +66 -0
  214. package/src/config/environment-name/name.ts +49 -0
  215. package/src/config/error.ts +6 -8
  216. package/src/config/index.ts +16 -5
  217. package/src/config/keystore/error.ts +9 -0
  218. package/src/config/keystore/file.ts +96 -0
  219. package/src/config/keystore/index.ts +4 -0
  220. package/src/config/keystore/keyring-node.test.ts +12 -0
  221. package/src/config/keystore/keyring-node.ts +100 -0
  222. package/src/config/keystore/service.test-utils.ts +15 -0
  223. package/src/config/keystore/service.test.ts +18 -0
  224. package/src/config/keystore/service.ts +29 -0
  225. package/src/config/layer.test-utils.ts +45 -0
  226. package/src/config/layer.test.ts +209 -0
  227. package/src/config/paths/index.ts +1 -0
  228. package/src/config/paths/paths.ts +36 -0
  229. package/src/config/persist/file-mode.ts +21 -0
  230. package/src/config/persist/migration.test.ts +71 -0
  231. package/src/config/persist/migration.ts +82 -0
  232. package/src/config/persist/persist.test.ts +113 -0
  233. package/src/config/persist/persist.ts +65 -0
  234. package/src/config/persist/schema.ts +37 -0
  235. package/src/config/platform.test-utils.ts +20 -0
  236. package/src/config/resolve/resolve.test-utils.ts +20 -0
  237. package/src/config/resolve/resolve.test.ts +137 -0
  238. package/src/config/resolve/resolve.ts +104 -0
  239. package/src/config/selection/index.ts +1 -0
  240. package/src/config/selection/resolve.ts +14 -0
  241. package/src/config/selection/service.ts +29 -0
  242. package/src/config/temp-home.test-utils.ts +7 -0
  243. package/src/config/types.ts +49 -0
  244. package/src/config/url/error.ts +8 -0
  245. package/src/config/url/index.ts +7 -0
  246. package/src/config/url/url.test.ts +31 -0
  247. package/src/connection/error.ts +4 -1
  248. package/src/connection/index.ts +0 -1
  249. package/src/connection/layer.ts +5 -2
  250. package/src/connection/prepared.ts +83 -0
  251. package/src/contracts/index.ts +1 -1
  252. package/src/domain/error.ts +20 -1
  253. package/src/domain/helpers.test.ts +1 -1
  254. package/src/domain/helpers.ts +1 -1
  255. package/src/domain/model-config.ts +1 -1
  256. package/src/domain/thread-activities.test.ts +1 -1
  257. package/src/domain/thread-activities.ts +1 -1
  258. package/src/domain/thread-lifecycle.test.ts +1 -1
  259. package/src/domain/thread-lifecycle.ts +1 -1
  260. package/src/effect.test-utils.ts +25 -0
  261. package/src/index.ts +1 -1
  262. package/src/{connection/node.ts → node/connection.ts} +1 -1
  263. package/src/node/index.ts +1 -2
  264. package/src/orchestration/index.ts +0 -1
  265. package/src/orchestration/layer.ts +3 -2
  266. package/src/orchestration/service.ts +1 -1
  267. package/src/rpc/error.ts +10 -17
  268. package/src/rpc/layer.ts +17 -51
  269. package/src/rpc/operation.ts +16 -2
  270. package/src/rpc/service.ts +2 -1
  271. package/src/rpc/session.ts +168 -0
  272. package/src/rpc/ws-group.ts +13 -27
  273. package/src/runtime/index.ts +2 -1
  274. package/src/runtime/layer.test-utils.ts +32 -0
  275. package/src/runtime/layer.test.ts +66 -0
  276. package/src/runtime/layer.ts +21 -12
  277. package/src/t3tools/index.ts +1 -1
  278. package/src/types/marked-terminal.d.ts +11 -0
  279. package/dist/layout.js +0 -2
  280. package/dist/scope.js +0 -2
  281. package/dist/src/cli/output-format.d.ts +0 -11
  282. package/dist/src/config/layer.d.ts +0 -22
  283. package/dist/src/config/service.d.ts +0 -22
  284. package/dist/src/environment/layer.d.ts +0 -3
  285. package/dist/src/environment/service.d.ts +0 -12
  286. package/dist/src/layout/index.d.ts +0 -1
  287. package/dist/upstream-t3code/packages/contracts/src/auth.d.ts +0 -441
  288. package/dist/upstream-t3code/packages/contracts/src/baseSchemas.d.ts +0 -38
  289. package/dist/upstream-t3code/packages/contracts/src/desktopBootstrap.d.ts +0 -14
  290. package/dist/upstream-t3code/packages/contracts/src/editor.d.ts +0 -124
  291. package/dist/upstream-t3code/packages/contracts/src/environment.d.ts +0 -64
  292. package/dist/upstream-t3code/packages/contracts/src/environmentHttp.d.ts +0 -762
  293. package/dist/upstream-t3code/packages/contracts/src/filesystem.d.ts +0 -26
  294. package/dist/upstream-t3code/packages/contracts/src/git.d.ts +0 -500
  295. package/dist/upstream-t3code/packages/contracts/src/index.d.ts +0 -25
  296. package/dist/upstream-t3code/packages/contracts/src/ipc.d.ts +0 -490
  297. package/dist/upstream-t3code/packages/contracts/src/keybindings.d.ts +0 -133
  298. package/dist/upstream-t3code/packages/contracts/src/model.d.ts +0 -112
  299. package/dist/upstream-t3code/packages/contracts/src/orchestration.d.ts +0 -6682
  300. package/dist/upstream-t3code/packages/contracts/src/project.d.ts +0 -45
  301. package/dist/upstream-t3code/packages/contracts/src/provider.d.ts +0 -116
  302. package/dist/upstream-t3code/packages/contracts/src/providerInstance.d.ts +0 -99
  303. package/dist/upstream-t3code/packages/contracts/src/providerRuntime.d.ts +0 -4276
  304. package/dist/upstream-t3code/packages/contracts/src/relay.d.ts +0 -1262
  305. package/dist/upstream-t3code/packages/contracts/src/relayClient.d.ts +0 -48
  306. package/dist/upstream-t3code/packages/contracts/src/remoteAccess.d.ts +0 -45
  307. package/dist/upstream-t3code/packages/contracts/src/review.d.ts +0 -37
  308. package/dist/upstream-t3code/packages/contracts/src/rpc.d.ts +0 -8218
  309. package/dist/upstream-t3code/packages/contracts/src/server.d.ts +0 -2291
  310. package/dist/upstream-t3code/packages/contracts/src/settings.d.ts +0 -271
  311. package/dist/upstream-t3code/packages/contracts/src/sourceControl.d.ts +0 -177
  312. package/dist/upstream-t3code/packages/contracts/src/terminal.d.ts +0 -330
  313. package/dist/upstream-t3code/packages/contracts/src/vcs.d.ts +0 -148
  314. package/src/cli/auth-format.ts +0 -45
  315. package/src/cli/confirm.ts +0 -31
  316. package/src/cli/model-format.ts +0 -18
  317. package/src/cli/output-format.ts +0 -45
  318. package/src/cli/project-format.ts +0 -18
  319. package/src/cli/terminal/commands.test.ts +0 -101
  320. package/src/cli/terminal-format.ts +0 -167
  321. package/src/cli/thread-format.ts +0 -128
  322. package/src/config/layer.ts +0 -105
  323. package/src/config/service.ts +0 -26
  324. package/src/environment/layer.ts +0 -12
  325. package/src/environment/service.ts +0 -13
  326. package/src/layout/index.ts +0 -1
  327. /package/dist/src/{scope → cli/scope}/index.d.ts +0 -0
  328. /package/dist/src/config/{url.d.ts → url/url.d.ts} +0 -0
  329. /package/src/{scope → cli/scope}/index.ts +0 -0
  330. /package/src/config/{url.ts → url/url.ts} +0 -0
@@ -1,2 +1 @@
1
- export { AppLayer, AuthAppLayer, T3AuthLayer, T3AuthPairingLayer, T3AuthTransportLayer, T3LocalAuthLayer, T3LocalAuthOriginLayer, T3LocalAuthTokenLayer, T3OrchestrationLayer, } from "./layer.ts";
2
- export { NodeEnvironmentLive } from "../environment/layer.ts";
1
+ export { AppLayer, AuthAppLayer, BaseAppLayer, BaseAuthAppLayer, T3AuthLayer, T3AuthPairingLayer, T3AuthTransportLayer, T3LocalAuthLayer, T3LocalAuthOriginLayer, T3LocalAuthTokenLayer, T3OrchestrationLayer, } from "./layer.ts";
@@ -1,11 +1,15 @@
1
1
  import * as Layer from "effect/Layer";
2
- import { T3Config } from "../config/service.ts";
2
+ import * as Config from "../config/config.ts";
3
+ import * as Selection from "../config/selection/service.ts";
4
+ export declare const T3ConfigLayer: Layer.Layer<Config.T3Config, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | Selection.T3ConfigSelection | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
3
5
  export declare const T3AuthTransportLayer: Layer.Layer<import("../auth/transport.ts").T3AuthTransport, never, never>;
4
- export declare const T3LocalAuthOriginLayer: Layer.Layer<import("../auth/local-origin.ts").T3LocalAuthOrigin, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/FileSystem").FileSystem>;
5
- export declare const T3LocalAuthTokenLayer: Layer.Layer<import("../auth/local-token.ts").T3LocalAuthToken, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
6
- export declare const T3LocalAuthLayer: Layer.Layer<import("../auth/local.ts").T3LocalAuth, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
6
+ export declare const T3LocalAuthOriginLayer: Layer.Layer<import("../auth/local-origin.ts").T3LocalAuthOrigin, import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/FileSystem").FileSystem | import("effect/Path").Path>;
7
+ export declare const T3LocalAuthTokenLayer: Layer.Layer<import("../auth/local-token.ts").T3LocalAuthToken, import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path>;
8
+ export declare const T3LocalAuthLayer: Layer.Layer<import("../auth/local.ts").T3LocalAuth, import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path>;
7
9
  export declare const T3AuthPairingLayer: Layer.Layer<import("../auth/pairing.ts").T3AuthPairing, never, never>;
8
- export declare const T3AuthLayer: Layer.Layer<import("../auth/service.ts").T3Auth, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
9
- export declare const T3OrchestrationLayer: Layer.Layer<import("../orchestration/service.ts").T3Orchestration, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/FileSystem").FileSystem>;
10
- export declare const AuthAppLayer: Layer.Layer<T3Config | import("../auth/service.ts").T3Auth, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
11
- export declare const AppLayer: Layer.Layer<import("../orchestration/service.ts").T3Orchestration | import("../index.ts").T3Application | import("../rpc/service.ts").T3Rpc | import("../rpc/operation.ts").T3RpcOperations | T3Config | import("../auth/service.ts").T3Auth | import("../cli-path/service.ts").CliPath, never, import("../environment/service.ts").Environment | import("effect/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
10
+ export declare const T3AuthLayer: Layer.Layer<import("../auth/service.ts").T3Auth, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | Selection.T3ConfigSelection | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
11
+ export declare const T3OrchestrationLayer: Layer.Layer<import("../orchestration/service.ts").T3Orchestration, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | Selection.T3ConfigSelection | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
12
+ export declare const BaseAppLayer: Layer.Layer<import("../cli-path/service.ts").CliPath | import("../index.ts").T3Application | import("../auth/service.ts").T3Auth | Config.T3Config | import("../orchestration/service.ts").T3Orchestration | import("../rpc/service.ts").T3Rpc | import("../rpc/operation.ts").T3RpcOperations, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | Selection.T3ConfigSelection | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
13
+ export declare const BaseAuthAppLayer: Layer.Layer<import("../auth/service.ts").T3Auth | Config.T3Config, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | Selection.T3ConfigSelection | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
14
+ export declare const AuthAppLayer: Layer.Layer<import("../auth/service.ts").T3Auth | Config.T3Config | Selection.T3ConfigSelection, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
15
+ export declare const AppLayer: Layer.Layer<import("../cli-path/service.ts").CliPath | import("../index.ts").T3Application | import("../auth/service.ts").T3Auth | Config.T3Config | Selection.T3ConfigSelection | import("../orchestration/service.ts").T3Orchestration | import("../rpc/service.ts").T3Rpc | import("../rpc/operation.ts").T3RpcOperations, import("effect/Config").ConfigError | import("../config/error.ts").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem | import("effect/Path").Path | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory>;
@@ -5,6 +5,6 @@ import * as Reactivity from "effect/unstable/reactivity/Reactivity";
5
5
  import * as SqlClient from "effect/unstable/sql/SqlClient";
6
6
  import { SqlError } from "effect/unstable/sql/SqlError";
7
7
  import { SqlClientFactory, type SqliteClientConfig } from "./service.ts";
8
- export declare const makeNodeSqliteClient: (config: SqliteClientConfig) => Effect.Effect<SqlClient.SqlClient, SqlError, Scope.Scope | Reactivity.Reactivity>;
8
+ export declare const makeNodeSqliteClient: (config: SqliteClientConfig) => Effect.Effect<SqlClient.SqlClient, SqlError, Reactivity.Reactivity | Scope.Scope>;
9
9
  export declare const NodeSqliteClientLive: (config: SqliteClientConfig) => Layer.Layer<SqlClient.SqlClient, SqlError, never>;
10
10
  export declare const NodeSqlClientFactoryLive: Layer.Layer<SqlClientFactory, never, never>;
@@ -1 +1 @@
1
- export * from "#t3tools/contracts";
1
+ export * from "@t3tools/contracts";
package/dist/t3tools.js CHANGED
@@ -1,2 +1,2 @@
1
- import { $a as TOOL_LIFECYCLE_ITEM_TYPES, $c as PROVIDER_SEND_TURN_MAX_INPUT_CHARS, $i as DEFAULT_CLIENT_SETTINGS, $l as ProviderInstanceConfig, $n as VcsRef, $o as DesktopSshPasswordPromptCancelledResultSchema, $r as ServerConfigStreamSettingsUpdatedEvent, $s as EnvironmentScopeRequiredError, $t as WsTerminalCloseRpc, $u as AuthTerminalOperateScope, Aa as KeybindingWhen, Ac as OrchestrationMessageRole, Ai as ServerProviderVersionAdvisory, Al as ThreadTurnDiff, An as GitActionProgressPhase, Ao as TerminalSummary, Ar as VcsDriverCapabilities, As as EnvironmentAuthInvalidReason, At as WsServerGetConfigRpc, Au as AuthAccessWriteScope, Ba as MODEL_PICKER_KEYBINDING_COMMANDS, Bc as OrchestrationSessionStatus, Bi as ServerTraceDiagnosticsRecentFailure, Bl as DEFAULT_MODEL, Bn as GitRunStackedActionResult, Bo as DesktopRuntimeArchSchema, Br as VcsProcessTimeoutError, Bs as EnvironmentHttpCommonError, Bt as WsServerUpsertKeybindingRpc, Bu as AuthEnvironmentScope, Ca as EditorLaunchStyle, Cc as OrchestrationGetFullThreadDiffResult, Cd as RuntimeSessionId, Ci as ServerProviderSlashCommandInput, Cl as ThreadMessageSentPayload, Cn as ProjectSearchEntriesInput, Co as TerminalNotRunningError, Cr as SourceControlPublishStatus, Cs as RelayClientInstallProgressStageSchema, Ct as WsOrchestrationSubscribeShellRpc, Cu as AuthAccessStreamError, Da as KeybindingRule, Dc as OrchestrationGetTurnDiffResult, Dd as TrimmedString, Di as ServerProviderUpdateState, Dl as ThreadRuntimeModeSetPayload, Dn as ProjectWriteFileResult, Do as TerminalSessionLookupError, Dr as SourceControlRepositoryLookupInput, Ds as AuthPairingLinkRevokeResult, Dt as WsReviewGetDiffPreviewRpc, Du as AuthAccessStreamSnapshotEvent, Ea as KeybindingCommand, Ec as OrchestrationGetTurnDiffInput, Ed as TrimmedNonEmptyString, Ei as ServerProviderUpdateInput, El as ThreadRevertedPayload, En as ProjectWriteFileInput, Eo as TerminalRestartInput, Er as SourceControlRepositoryInfo, Es as AuthOtherClientSessionsRevokeResult, Et as WsProjectsWriteFileRpc, Eu as AuthAccessStreamPairingLinkUpsertedEvent, Fa as MAX_KEYBINDING_VALUE_LENGTH, Fc as OrchestrationReadModel, Fi as ServerSignalProcessInput, Fl as ThreadUnarchivedPayload, Fn as GitPreparePullRequestThreadInput, Fo as DesktopAppStageLabelSchema, Fr as VcsListRemotesResult, Fs as EnvironmentCloudLinkStateResult, Ft as WsServerRefreshProvidersRpc, Fu as AuthClientMetadataDeviceType, Ga as THREAD_KEYBINDING_COMMANDS, Gc as OrchestrationThread, Gi as ServerUpsertKeybindingResult, Gl as ProviderOptionChoice, Gn as VcsCreateRefResult, Go as DesktopSshBearerRequestInputSchema, Gr as ServerConfig, Gs as EnvironmentInternalError, Gt as WsSubscribeAuthAccessRpc, Gu as AuthPairingLink, Ha as ResolvedKeybindingsConfig, Hc as OrchestrationShellStreamEvent, Hi as ServerTraceDiagnosticsSpanOccurrence, Hl as MODEL_SLUG_ALIASES_BY_PROVIDER, Hn as GitStackedAction, Ho as DesktopServerExposureModeSchema, Hr as VcsRepositoryDetectionError, Hs as EnvironmentHttpForbiddenError, Ht as WsSourceControlCloneRepositoryRpc, Hu as AuthOrchestrationOperateScope, Ia as MAX_KEYBINDING_WHEN_LENGTH, Ic as OrchestrationReplayEventsError, Ii as ServerSignalProcessResult, Il as TurnCountRange, In as GitPreparePullRequestThreadResult, Io as DesktopCloudAuthFetchInputSchema, Ir as VcsListWorkspaceFilesResult, Is as EnvironmentCloudPreferencesRequest, It as WsServerRemoveKeybindingRpc, Iu as AuthClientPresentationMetadata, Ja as ItemLifecyclePayload, Jc as OrchestrationThreadDetailSnapshot, Ji as ClientSettingsPatch, Jl as ProviderOptionSelection, Jn as VcsInitInput, Jo as DesktopSshEnvironmentEnsureOptionsSchema, Jr as ServerConfigProviderStatusesPayload, Js as EnvironmentOperationForbiddenError, Jt as WsSubscribeTerminalEventsRpc, Ju as AuthReviewWriteScope, Ka as CanonicalItemType, Kc as OrchestrationThreadActivity, Ki as isProviderAvailable, Kl as ProviderOptionDescriptor, Kn as VcsCreateWorktreeInput, Ko as DesktopSshEnvironmentBootstrapSchema, Kr as ServerConfigIssue, Ks as EnvironmentInternalErrorReason, Kt as WsSubscribeServerConfigRpc, Ku as AuthRelayReadScope, La as MAX_SCRIPT_ID_LENGTH, Lc as OrchestrationReplayEventsInput, Li as ServerTraceDiagnosticsErrorKind, Ll as BooleanProviderOptionDescriptor, Ln as GitPullRequestRefInput, Lo as DesktopCloudAuthFetchResultSchema, Lr as VcsOutputDecodeError, Ls as EnvironmentCloudRelayConfigResult, Lt as WsServerSignalProcessRpc, Lu as AuthClientSession, Ma as KeybindingsConfig, Mc as OrchestrationProjectShell, Mi as ServerProviders, Ml as ThreadTurnInterruptRequestedPayload, Mn as GitCommandError, Mo as TerminalWriteInput, Mr as VcsError, Ms as EnvironmentAuthenticatedPrincipal, Mt as WsServerGetProcessResourceHistoryRpc, Mu as AuthBrowserSessionRequest, Na as KeybindingsConfigError, Nc as OrchestrationProposedPlan, Ni as ServerRemoveKeybindingInput, Nl as ThreadTurnStartCommand, Nn as GitManagerError, No as ContextMenuItemSchema, Nr as VcsFreshness, Ns as EnvironmentCloudEndpointUnavailableError, Nt as WsServerGetSettingsRpc, Nu as AuthBrowserSessionResult, Oa as KeybindingShortcut, Oc as OrchestrationLatestTurn, Od as TurnId, Oi as ServerProviderUpdateStatus, Ol as ThreadSessionSetPayload, On as GitActionProgressEvent, Oo as TerminalSessionSnapshot, Or as SourceControlRepositoryVisibility, Os as EnvironmentAuthHttpApi, Ot as WsRpcGroup, Ou as AuthAccessTokenResult, Pa as MAX_KEYBINDINGS_COUNT, Pc as OrchestrationProposedPlanId, Pi as ServerRemoveKeybindingResult, Pl as ThreadTurnStartRequestedPayload, Pn as GitManagerServiceError, Po as DesktopAppBrandingSchema, Pr as VcsFreshnessSource, Ps as EnvironmentCloudHttpApi, Pt as WsServerGetTraceDiagnosticsRpc, Pu as AuthClientMetadata, Qa as RuntimeEventRaw, Qc as PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, Qi as DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, Ql as ProviderDriverKind, Qn as VcsPullResult, Qo as DesktopSshHttpBaseUrlInputSchema, Qr as ServerConfigStreamProviderStatusesEvent, Qs as EnvironmentRequestInvalidReason, Qt as WsTerminalClearRpc, Qu as AuthStandardClientScopes, Ra as MAX_WHEN_EXPRESSION_DEPTH, Rc as OrchestrationRpcSchemas, Ri as ServerTraceDiagnosticsFailureSummary, Rl as DEFAULT_GIT_TEXT_GENERATION_MODEL, Rn as GitResolvePullRequestResult, Ro as DesktopDiscoveredSshHostSchema, Rr as VcsProcessExitError, Rs as EnvironmentHttpApi, Rt as WsServerUpdateProviderRpc, Ru as AuthCreatePairingCredentialInput, Sa as EditorId, Sc as OrchestrationGetFullThreadDiffInput, Sd as RuntimeRequestId, Si as ServerProviderSlashCommand, Sl as ThreadInteractionModeSetPayload, Sn as ProjectSearchEntriesError, So as TerminalMetadataStreamEvent, Sr as SourceControlPublishRepositoryResult, Ss as RelayClientInstallProgressEventSchema, St as WsOrchestrationReplayEventsRpc, Su as AuthAccessStreamClientUpsertedEvent, Ta as LaunchEditorInput, Tc as OrchestrationGetTurnDiffError, Td as ThreadId, Ti as ServerProviderUpdateError, Tl as ThreadProposedPlanUpsertedPayload, Tn as ProjectWriteFileError, To as TerminalResizeInput, Tr as SourceControlRepositoryError, Ts as AuthClientSessionRevokeResult, Tt as WsProjectsSearchEntriesRpc, Tu as AuthAccessStreamPairingLinkRemovedEvent, Ua as SCRIPT_RUN_COMMAND_PATTERN, Uc as OrchestrationShellStreamItem, Ui as ServerTraceDiagnosticsSpanSummary, Ul as ModelCapabilities, Un as TextGenerationError, Uo as DesktopServerExposureStateSchema, Ur as VcsRepositoryIdentity, Us as EnvironmentHttpInternalServerError, Ut as WsSourceControlLookupRepositoryRpc, Uu as AuthOrchestrationReadScope, Va as ResolvedKeybindingRule, Vc as OrchestrationShellSnapshot, Vi as ServerTraceDiagnosticsResult, Vl as DEFAULT_MODEL_BY_PROVIDER, Vn as GitRunStackedActionToastRunAction, Vo as DesktopRuntimeInfoSchema, Vr as VcsRemote, Vs as EnvironmentHttpConflictError, Vt as WsShellOpenInEditorRpc, Vu as AuthEnvironmentScopes, Wa as THREAD_JUMP_KEYBINDING_COMMANDS, Wc as OrchestrationSubscribeThreadInput, Wi as ServerUpsertKeybindingInput, Wl as PROVIDER_DISPLAY_NAMES, Wn as VcsCreateRefInput, Wo as DesktopSshBearerBootstrapInputSchema, Wr as VcsUnsupportedOperationError, Ws as EnvironmentHttpUnauthorizedError, Wt as WsSourceControlPublishRepositoryRpc, Wu as AuthPairingCredentialResult, Xa as ProviderRuntimeEventV2, Xc as OrchestrationThreadStreamItem, Xi as CodexSettings, Xl as ProviderOptionSelections, Xn as VcsListRefsResult, Xo as DesktopSshEnvironmentTargetSchema, Xr as ServerConfigStreamEvent, Xs as EnvironmentOrchestrationHttpApi, Xt as WsSubscribeVcsStatusRpc, Xu as AuthRevokePairingLinkInput, Ya as ProviderRuntimeEvent, Yc as OrchestrationThreadShell, Yi as ClientSettingsSchema, Yl as ProviderOptionSelectionValue, Yn as VcsListRefsInput, Yo as DesktopSshEnvironmentEnsureResultSchema, Yr as ServerConfigSettingsUpdatedPayload, Ys as EnvironmentOperationForbiddenReason, Yt as WsSubscribeTerminalMetadataRpc, Yu as AuthRevokeClientSessionInput, Za as ProviderRuntimeTurnStatus, Zc as PROVIDER_SEND_TURN_MAX_ATTACHMENTS, Zi as CursorSettings, Zl as SelectProviderOptionDescriptor, Zn as VcsPullInput, Zo as DesktopSshHostSourceSchema, Zr as ServerConfigStreamKeybindingsUpdatedEvent, Zs as EnvironmentRequestInvalidError, Zt as WsTerminalAttachRpc, Zu as AuthSessionState, _a as SidebarThreadSortOrder, _c as OrchestrationDispatchCommandError, _d as PortSchema, _i as ServerProviderAuthStatus, _l as ThreadApprovalResponseRequestedPayload, _n as FilesystemBrowseEntry, _o as TerminalCloseInput, _r as SourceControlProviderDiscoveryItem, _s as AdvertisedEndpointSource, _t as WsGitRunStackedActionRpc, _u as ScopedThreadRef, aa as DEFAULT_TIMESTAMP_FORMAT, ac as DEFAULT_PROVIDER_INTERACTION_MODE, ad as ServerAuthDescriptor, ai as ServerLifecycleStreamWelcomeEvent, al as ProjectScriptIcon, an as WsVcsCreateWorktreeRpc, ao as ProviderInterruptTurnInput, ar as VcsStatusStreamEvent, as as DesktopUpdateChannelSchema, au as ProviderInstanceRef, ba as makeProviderSettingsSchema, bc as OrchestrationEventType, bd as ProviderItemId, bi as ServerProviderModel, bl as ThreadCreatedPayload, bn as FilesystemBrowseResult, bo as TerminalEvent, br as SourceControlProviderKind, bs as RelayClientInstallFailedError, bt as WsOrchestrationGetFullThreadDiffRpc, bu as AuthAccessSnapshot, ca as MIN_SIDEBAR_THREAD_PREVIEW_COUNT, cc as ModelSelection, cd as ApprovalRequestId, ci as ServerProcessDiagnosticsEntry, cl as ProviderApprovalDecision, cn as WsVcsPullRpc, co as ProviderSendTurnInput, cr as ChangeRequest, cs as DesktopUpdateStatusSchema, cu as EnvironmentConnectionState, da as ServerSettings, dc as OrchestrationAggregateKind, dd as CommandId, di as ServerProcessResourceHistoryInput, dl as ProviderRequestKind, dn as WsVcsSwitchRefRpc, do as ProviderStopSessionInput, dr as SourceControlCloneRepositoryInput, ds as AdvertisedEndpoint, dt as WS_METHODS, du as ExecutionEnvironmentPlatform, ea as DEFAULT_SERVER_SETTINGS, ec as AssistantDeliveryMode, ed as AuthTokenExchangeGrantType, ei as ServerConfigStreamSnapshotEvent, el as ProjectCreateCommand, en as WsTerminalOpenRpc, eo as ThreadTokenUsageSnapshot, er as VcsRemoveWorktreeInput, es as DesktopSshPasswordPromptCancelledType, eu as ProviderInstanceConfigMap, fa as ServerSettingsError, fc as OrchestrationCheckpointFile, fd as EnvironmentId, fi as ServerProcessResourceHistoryResult, fl as ProviderSandboxMode, fn as ReviewDiffPreviewError, fo as ProviderTurnStartResult, fr as SourceControlCloneRepositoryResult, fs as AdvertisedEndpointCompatibility, ft as WsCloudGetRelayClientStatusRpc, fu as ExecutionEnvironmentPlatformArch, ga as SidebarThreadPreviewCount, gc as OrchestrationCommandReceiptStatus, gd as NonNegativeInt, gi as ServerProviderAuth, gl as ThreadActivityAppendedPayload, gn as ReviewDiffPreviewSourceKind, go as TerminalClearInput, gr as SourceControlProviderAuthStatus, gs as AdvertisedEndpointReachability, gt as WsGitResolvePullRequestRpc, gu as ScopedProjectRef, ha as SidebarProjectSortOrder, hc as OrchestrationCommand, hd as MessageId, hi as ServerProvider, hl as RuntimeMode, hn as ReviewDiffPreviewSource, ho as TerminalAttachStreamEvent, hr as SourceControlProviderAuth, hs as AdvertisedEndpointProviderKind, ht as WsGitPreparePullRequestThreadRpc, hu as RepositoryIdentityLocator, ia as DEFAULT_SIDEBAR_THREAD_SORT_ORDER, ic as CorrelationId, id as ServerAuthBootstrapMethod, ii as ServerLifecycleStreamReadyEvent, il as ProjectScript, in as WsVcsCreateRefRpc, io as ProviderEvent, ir as VcsStatusResult, is as DesktopUpdateActionResultSchema, iu as ProviderInstanceId, ja as KeybindingWhenNode, jc as OrchestrationProject, ji as ServerProviderVersionAdvisoryStatus, jl as ThreadTurnDiffCompletedPayload, jn as GitActionProgressStream, jo as TerminalThreadInput, jr as VcsDriverKind, js as EnvironmentAuthenticatedAuth, jt as WsServerGetProcessDiagnosticsRpc, ju as AuthAdministrativeScopes, ka as KeybindingValue, kc as OrchestrationMessage, ki as ServerProviderUpdatedPayload, kl as ThreadSessionStopRequestedPayload, kn as GitActionProgressKind, ko as TerminalSessionStatus, kr as VcsDiscoveryItem, ks as EnvironmentAuthInvalidError, kt as WsServerDiscoverSourceControlRpc, ku as AuthAccessTokenType, la as ObservabilitySettings, lc as ORCHESTRATION_WS_METHODS, ld as AuthSessionId, li as ServerProcessDiagnosticsResult, ll as ProviderApprovalPolicy, ln as WsVcsRefreshStatusRpc, lo as ProviderSession, lr as ChangeRequestState, ls as PersistedSavedEnvironmentRecordSchema, lu as ExecutionEnvironmentCapabilities, ma as SidebarProjectGroupingMode, mc as OrchestrationCheckpointSummary, md as IsoDateTime, mi as ServerProcessSignal, ml as ProviderUserInputAnswers, mn as ReviewDiffPreviewResult, mo as TerminalAttachInput, mr as SourceControlDiscoveryStatus, ms as AdvertisedEndpointProvider, mt as WsFilesystemBrowseRpc, mu as RepositoryIdentity, na as DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, nc as ChatImageAttachment, nd as AuthWebSocketTicketResult, ni as ServerLifecycleReadyPayload, nl as ProjectDeletedPayload, nn as WsTerminalRestartRpc, no as UserInputQuestion, nr as VcsStatusLocalResult, ns as DesktopSshPasswordPromptResolutionInputSchema, nu as ProviderInstanceEnvironmentVariable, oa as DEFAULT_UNIFIED_SETTINGS, oc as DEFAULT_RUNTIME_MODE, od as ServerAuthPolicy, oi as ServerLifecycleWelcomePayload, ol as ProjectionPendingApprovalDecision, on as WsVcsInitRpc, oo as ProviderRespondToRequestInput, or as VcsSwitchRefInput, os as DesktopUpdateCheckResultSchema, ou as defaultInstanceIdForDriver, pa as ServerSettingsPatch, pc as OrchestrationCheckpointStatus, pd as EventId, pi as ServerProcessResourceHistorySummary, pl as ProviderSessionRuntimeStatus, pn as ReviewDiffPreviewInput, po as DEFAULT_TERMINAL_ID, pr as SourceControlDiscoveryResult, ps as AdvertisedEndpointHostedHttpsCompatibility, pt as WsCloudInstallRelayClientRpc, pu as ExecutionEnvironmentPlatformOs, qa as CanonicalRequestType, qc as OrchestrationThreadActivityTone, qi as ClaudeSettings, ql as ProviderOptionDescriptorType, qn as VcsCreateWorktreeResult, qo as DesktopSshEnvironmentEnsureInputSchema, qr as ServerConfigKeybindingsUpdatedPayload, qs as EnvironmentMetadataHttpApi, qt as WsSubscribeServerLifecycleRpc, qu as AuthRelayWriteScope, ra as DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, rc as ClientOrchestrationCommand, rd as EnvironmentAuthorizationError, ri as ServerLifecycleStreamEvent, rl as ProjectMetaUpdatedPayload, rn as WsTerminalWriteRpc, ro as isToolLifecycleItemType, rr as VcsStatusRemoteResult, rs as DesktopThemeSchema, ru as ProviderInstanceEnvironmentVariableName, sa as MAX_SIDEBAR_THREAD_PREVIEW_COUNT, sc as DispatchResult, sd as ServerAuthSessionMethod, si as ServerObservability, sl as ProjectionPendingApprovalStatus, sn as WsVcsListRefsRpc, so as ProviderRespondToUserInputInput, sr as VcsSwitchRefResult, ss as DesktopUpdateStateSchema, su as isProviderDriverKind, ta as DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, tc as ChatAttachment, td as AuthTokenExchangeRequest, ti as ServerConfigUpdatedPayload, tl as ProjectCreatedPayload, tn as WsTerminalResizeRpc, to as ToolLifecycleItemType, tr as VcsStatusInput, ts as DesktopSshPasswordPromptRequestSchema, tu as ProviderInstanceEnvironment, ua as OpenCodeSettings, uc as OrchestrationActorKind, ud as CheckpointRef, ui as ServerProcessResourceHistoryBucket, ul as ProviderInteractionMode, un as WsVcsRemoveWorktreeRpc, uo as ProviderSessionStartInput, ur as SourceControlCloneProtocol, us as PickFolderOptionsSchema, uu as ExecutionEnvironmentDescriptor, va as ThreadEnvMode, vc as OrchestrationEvent, vd as PositiveInt, vi as ServerProviderAvailability, vl as ThreadArchivedPayload, vn as FilesystemBrowseError, vo as TerminalCwdError, vr as SourceControlProviderError, vs as AdvertisedEndpointStatus, vt as WsOrchestrationDispatchCommandRpc, vu as ScopedThreadSessionRef, wa as ExternalLauncherError, wc as OrchestrationGetSnapshotError, wd as RuntimeTaskId, wi as ServerProviderState, wl as ThreadMetaUpdatedPayload, wn as ProjectSearchEntriesResult, wo as TerminalOpenInput, wr as SourceControlRepositoryCloneUrls, ws as RelayClientStatusSchema, wt as WsOrchestrationSubscribeThreadRpc, wu as AuthAccessStreamEvent, xa as EDITORS, xc as OrchestrationGetFullThreadDiffError, xd as RuntimeItemId, xi as ServerProviderSkill, xl as ThreadDeletedPayload, xn as ProjectEntry, xo as TerminalHistoryError, xr as SourceControlPublishRepositoryInput, xs as RelayClientInstallFailureReasonSchema, xt as WsOrchestrationGetTurnDiffRpc, xu as AuthAccessStreamClientRemovedEvent, ya as TimestampFormat, yc as OrchestrationEventMetadata, yd as ProjectId, yi as ServerProviderContinuation, yl as ThreadCheckpointRevertRequestedPayload, yn as FilesystemBrowseInput, yo as TerminalError, yr as SourceControlProviderInfo, ys as DesktopBackendBootstrap, yt as WsOrchestrationGetArchivedShellSnapshotRpc, yu as AuthAccessReadScope, za as MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, zc as OrchestrationSession, zi as ServerTraceDiagnosticsLogEvent, zl as DEFAULT_GIT_TEXT_GENERATION_MODEL_BY_PROVIDER, zn as GitRunStackedActionInput, zo as DesktopEnvironmentBootstrapSchema, zr as VcsProcessSpawnError, zs as EnvironmentHttpBadRequestError, zt as WsServerUpdateSettingsRpc, zu as AuthEnvironmentBootstrapTokenType } from "./shared.js";
2
- export { AdvertisedEndpoint, AdvertisedEndpointCompatibility, AdvertisedEndpointHostedHttpsCompatibility, AdvertisedEndpointProvider, AdvertisedEndpointProviderKind, AdvertisedEndpointReachability, AdvertisedEndpointSource, AdvertisedEndpointStatus, ApprovalRequestId, AssistantDeliveryMode, AuthAccessReadScope, AuthAccessSnapshot, AuthAccessStreamClientRemovedEvent, AuthAccessStreamClientUpsertedEvent, AuthAccessStreamError, AuthAccessStreamEvent, AuthAccessStreamPairingLinkRemovedEvent, AuthAccessStreamPairingLinkUpsertedEvent, AuthAccessStreamSnapshotEvent, AuthAccessTokenResult, AuthAccessTokenType, AuthAccessWriteScope, AuthAdministrativeScopes, AuthBrowserSessionRequest, AuthBrowserSessionResult, AuthClientMetadata, AuthClientMetadataDeviceType, AuthClientPresentationMetadata, AuthClientSession, AuthClientSessionRevokeResult, AuthCreatePairingCredentialInput, AuthEnvironmentBootstrapTokenType, AuthEnvironmentScope, AuthEnvironmentScopes, AuthOrchestrationOperateScope, AuthOrchestrationReadScope, AuthOtherClientSessionsRevokeResult, AuthPairingCredentialResult, AuthPairingLink, AuthPairingLinkRevokeResult, AuthRelayReadScope, AuthRelayWriteScope, AuthReviewWriteScope, AuthRevokeClientSessionInput, AuthRevokePairingLinkInput, AuthSessionId, AuthSessionState, AuthStandardClientScopes, AuthTerminalOperateScope, AuthTokenExchangeGrantType, AuthTokenExchangeRequest, AuthWebSocketTicketResult, BooleanProviderOptionDescriptor, CanonicalItemType, CanonicalRequestType, ChangeRequest, ChangeRequestState, ChatAttachment, ChatImageAttachment, CheckpointRef, ClaudeSettings, ClientOrchestrationCommand, ClientSettingsPatch, ClientSettingsSchema, CodexSettings, CommandId, ContextMenuItemSchema, CorrelationId, CursorSettings, DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, DEFAULT_CLIENT_SETTINGS, DEFAULT_GIT_TEXT_GENERATION_MODEL, DEFAULT_GIT_TEXT_GENERATION_MODEL_BY_PROVIDER, DEFAULT_MODEL, DEFAULT_MODEL_BY_PROVIDER, DEFAULT_PROVIDER_INTERACTION_MODE, DEFAULT_RUNTIME_MODE, DEFAULT_SERVER_SETTINGS, DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, DEFAULT_SIDEBAR_THREAD_SORT_ORDER, DEFAULT_TERMINAL_ID, DEFAULT_TIMESTAMP_FORMAT, DEFAULT_UNIFIED_SETTINGS, DesktopAppBrandingSchema, DesktopAppStageLabelSchema, DesktopBackendBootstrap, DesktopCloudAuthFetchInputSchema, DesktopCloudAuthFetchResultSchema, DesktopDiscoveredSshHostSchema, DesktopEnvironmentBootstrapSchema, DesktopRuntimeArchSchema, DesktopRuntimeInfoSchema, DesktopServerExposureModeSchema, DesktopServerExposureStateSchema, DesktopSshBearerBootstrapInputSchema, DesktopSshBearerRequestInputSchema, DesktopSshEnvironmentBootstrapSchema, DesktopSshEnvironmentEnsureInputSchema, DesktopSshEnvironmentEnsureOptionsSchema, DesktopSshEnvironmentEnsureResultSchema, DesktopSshEnvironmentTargetSchema, DesktopSshHostSourceSchema, DesktopSshHttpBaseUrlInputSchema, DesktopSshPasswordPromptCancelledResultSchema, DesktopSshPasswordPromptCancelledType, DesktopSshPasswordPromptRequestSchema, DesktopSshPasswordPromptResolutionInputSchema, DesktopThemeSchema, DesktopUpdateActionResultSchema, DesktopUpdateChannelSchema, DesktopUpdateCheckResultSchema, DesktopUpdateStateSchema, DesktopUpdateStatusSchema, DispatchResult, EDITORS, EditorId, EditorLaunchStyle, EnvironmentAuthHttpApi, EnvironmentAuthInvalidError, EnvironmentAuthInvalidReason, EnvironmentAuthenticatedAuth, EnvironmentAuthenticatedPrincipal, EnvironmentAuthorizationError, EnvironmentCloudEndpointUnavailableError, EnvironmentCloudHttpApi, EnvironmentCloudLinkStateResult, EnvironmentCloudPreferencesRequest, EnvironmentCloudRelayConfigResult, EnvironmentConnectionState, EnvironmentHttpApi, EnvironmentHttpBadRequestError, EnvironmentHttpCommonError, EnvironmentHttpConflictError, EnvironmentHttpForbiddenError, EnvironmentHttpInternalServerError, EnvironmentHttpUnauthorizedError, EnvironmentId, EnvironmentInternalError, EnvironmentInternalErrorReason, EnvironmentMetadataHttpApi, EnvironmentOperationForbiddenError, EnvironmentOperationForbiddenReason, EnvironmentOrchestrationHttpApi, EnvironmentRequestInvalidError, EnvironmentRequestInvalidReason, EnvironmentScopeRequiredError, EventId, ExecutionEnvironmentCapabilities, ExecutionEnvironmentDescriptor, ExecutionEnvironmentPlatform, ExecutionEnvironmentPlatformArch, ExecutionEnvironmentPlatformOs, ExternalLauncherError, FilesystemBrowseEntry, FilesystemBrowseError, FilesystemBrowseInput, FilesystemBrowseResult, GitActionProgressEvent, GitActionProgressKind, GitActionProgressPhase, GitActionProgressStream, GitCommandError, GitManagerError, GitManagerServiceError, GitPreparePullRequestThreadInput, GitPreparePullRequestThreadResult, GitPullRequestRefInput, GitResolvePullRequestResult, GitRunStackedActionInput, GitRunStackedActionResult, GitRunStackedActionToastRunAction, GitStackedAction, IsoDateTime, ItemLifecyclePayload, KeybindingCommand, KeybindingRule, KeybindingShortcut, KeybindingValue, KeybindingWhen, KeybindingWhenNode, KeybindingsConfig, KeybindingsConfigError, LaunchEditorInput, MAX_KEYBINDINGS_COUNT, MAX_KEYBINDING_VALUE_LENGTH, MAX_KEYBINDING_WHEN_LENGTH, MAX_SCRIPT_ID_LENGTH, MAX_SIDEBAR_THREAD_PREVIEW_COUNT, MAX_WHEN_EXPRESSION_DEPTH, MIN_SIDEBAR_THREAD_PREVIEW_COUNT, MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, MODEL_PICKER_KEYBINDING_COMMANDS, MODEL_SLUG_ALIASES_BY_PROVIDER, MessageId, ModelCapabilities, ModelSelection, NonNegativeInt, ORCHESTRATION_WS_METHODS, ObservabilitySettings, OpenCodeSettings, OrchestrationActorKind, OrchestrationAggregateKind, OrchestrationCheckpointFile, OrchestrationCheckpointStatus, OrchestrationCheckpointSummary, OrchestrationCommand, OrchestrationCommandReceiptStatus, OrchestrationDispatchCommandError, OrchestrationEvent, OrchestrationEventMetadata, OrchestrationEventType, OrchestrationGetFullThreadDiffError, OrchestrationGetFullThreadDiffInput, OrchestrationGetFullThreadDiffResult, OrchestrationGetSnapshotError, OrchestrationGetTurnDiffError, OrchestrationGetTurnDiffInput, OrchestrationGetTurnDiffResult, OrchestrationLatestTurn, OrchestrationMessage, OrchestrationMessageRole, OrchestrationProject, OrchestrationProjectShell, OrchestrationProposedPlan, OrchestrationProposedPlanId, OrchestrationReadModel, OrchestrationReplayEventsError, OrchestrationReplayEventsInput, OrchestrationRpcSchemas, OrchestrationSession, OrchestrationSessionStatus, OrchestrationShellSnapshot, OrchestrationShellStreamEvent, OrchestrationShellStreamItem, OrchestrationSubscribeThreadInput, OrchestrationThread, OrchestrationThreadActivity, OrchestrationThreadActivityTone, OrchestrationThreadDetailSnapshot, OrchestrationThreadShell, OrchestrationThreadStreamItem, PROVIDER_DISPLAY_NAMES, PROVIDER_SEND_TURN_MAX_ATTACHMENTS, PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, PROVIDER_SEND_TURN_MAX_INPUT_CHARS, PersistedSavedEnvironmentRecordSchema, PickFolderOptionsSchema, PortSchema, PositiveInt, ProjectCreateCommand, ProjectCreatedPayload, ProjectDeletedPayload, ProjectEntry, ProjectId, ProjectMetaUpdatedPayload, ProjectScript, ProjectScriptIcon, ProjectSearchEntriesError, ProjectSearchEntriesInput, ProjectSearchEntriesResult, ProjectWriteFileError, ProjectWriteFileInput, ProjectWriteFileResult, ProjectionPendingApprovalDecision, ProjectionPendingApprovalStatus, ProviderApprovalDecision, ProviderApprovalPolicy, ProviderDriverKind, ProviderEvent, ProviderInstanceConfig, ProviderInstanceConfigMap, ProviderInstanceEnvironment, ProviderInstanceEnvironmentVariable, ProviderInstanceEnvironmentVariableName, ProviderInstanceId, ProviderInstanceRef, ProviderInteractionMode, ProviderInterruptTurnInput, ProviderItemId, ProviderOptionChoice, ProviderOptionDescriptor, ProviderOptionDescriptorType, ProviderOptionSelection, ProviderOptionSelectionValue, ProviderOptionSelections, ProviderRequestKind, ProviderRespondToRequestInput, ProviderRespondToUserInputInput, ProviderRuntimeEvent, ProviderRuntimeEventV2, ProviderRuntimeTurnStatus, ProviderSandboxMode, ProviderSendTurnInput, ProviderSession, ProviderSessionRuntimeStatus, ProviderSessionStartInput, ProviderStopSessionInput, ProviderTurnStartResult, ProviderUserInputAnswers, RelayClientInstallFailedError, RelayClientInstallFailureReasonSchema, RelayClientInstallProgressEventSchema, RelayClientInstallProgressStageSchema, RelayClientStatusSchema, RepositoryIdentity, RepositoryIdentityLocator, ResolvedKeybindingRule, ResolvedKeybindingsConfig, ReviewDiffPreviewError, ReviewDiffPreviewInput, ReviewDiffPreviewResult, ReviewDiffPreviewSource, ReviewDiffPreviewSourceKind, RuntimeEventRaw, RuntimeItemId, RuntimeMode, RuntimeRequestId, RuntimeSessionId, RuntimeTaskId, SCRIPT_RUN_COMMAND_PATTERN, ScopedProjectRef, ScopedThreadRef, ScopedThreadSessionRef, SelectProviderOptionDescriptor, ServerAuthBootstrapMethod, ServerAuthDescriptor, ServerAuthPolicy, ServerAuthSessionMethod, ServerConfig, ServerConfigIssue, ServerConfigKeybindingsUpdatedPayload, ServerConfigProviderStatusesPayload, ServerConfigSettingsUpdatedPayload, ServerConfigStreamEvent, ServerConfigStreamKeybindingsUpdatedEvent, ServerConfigStreamProviderStatusesEvent, ServerConfigStreamSettingsUpdatedEvent, ServerConfigStreamSnapshotEvent, ServerConfigUpdatedPayload, ServerLifecycleReadyPayload, ServerLifecycleStreamEvent, ServerLifecycleStreamReadyEvent, ServerLifecycleStreamWelcomeEvent, ServerLifecycleWelcomePayload, ServerObservability, ServerProcessDiagnosticsEntry, ServerProcessDiagnosticsResult, ServerProcessResourceHistoryBucket, ServerProcessResourceHistoryInput, ServerProcessResourceHistoryResult, ServerProcessResourceHistorySummary, ServerProcessSignal, ServerProvider, ServerProviderAuth, ServerProviderAuthStatus, ServerProviderAvailability, ServerProviderContinuation, ServerProviderModel, ServerProviderSkill, ServerProviderSlashCommand, ServerProviderSlashCommandInput, ServerProviderState, ServerProviderUpdateError, ServerProviderUpdateInput, ServerProviderUpdateState, ServerProviderUpdateStatus, ServerProviderUpdatedPayload, ServerProviderVersionAdvisory, ServerProviderVersionAdvisoryStatus, ServerProviders, ServerRemoveKeybindingInput, ServerRemoveKeybindingResult, ServerSettings, ServerSettingsError, ServerSettingsPatch, ServerSignalProcessInput, ServerSignalProcessResult, ServerTraceDiagnosticsErrorKind, ServerTraceDiagnosticsFailureSummary, ServerTraceDiagnosticsLogEvent, ServerTraceDiagnosticsRecentFailure, ServerTraceDiagnosticsResult, ServerTraceDiagnosticsSpanOccurrence, ServerTraceDiagnosticsSpanSummary, ServerUpsertKeybindingInput, ServerUpsertKeybindingResult, SidebarProjectGroupingMode, SidebarProjectSortOrder, SidebarThreadPreviewCount, SidebarThreadSortOrder, SourceControlCloneProtocol, SourceControlCloneRepositoryInput, SourceControlCloneRepositoryResult, SourceControlDiscoveryResult, SourceControlDiscoveryStatus, SourceControlProviderAuth, SourceControlProviderAuthStatus, SourceControlProviderDiscoveryItem, SourceControlProviderError, SourceControlProviderInfo, SourceControlProviderKind, SourceControlPublishRepositoryInput, SourceControlPublishRepositoryResult, SourceControlPublishStatus, SourceControlRepositoryCloneUrls, SourceControlRepositoryError, SourceControlRepositoryInfo, SourceControlRepositoryLookupInput, SourceControlRepositoryVisibility, THREAD_JUMP_KEYBINDING_COMMANDS, THREAD_KEYBINDING_COMMANDS, TOOL_LIFECYCLE_ITEM_TYPES, TerminalAttachInput, TerminalAttachStreamEvent, TerminalClearInput, TerminalCloseInput, TerminalCwdError, TerminalError, TerminalEvent, TerminalHistoryError, TerminalMetadataStreamEvent, TerminalNotRunningError, TerminalOpenInput, TerminalResizeInput, TerminalRestartInput, TerminalSessionLookupError, TerminalSessionSnapshot, TerminalSessionStatus, TerminalSummary, TerminalThreadInput, TerminalWriteInput, TextGenerationError, ThreadActivityAppendedPayload, ThreadApprovalResponseRequestedPayload, ThreadArchivedPayload, ThreadCheckpointRevertRequestedPayload, ThreadCreatedPayload, ThreadDeletedPayload, ThreadEnvMode, ThreadId, ThreadInteractionModeSetPayload, ThreadMessageSentPayload, ThreadMetaUpdatedPayload, ThreadProposedPlanUpsertedPayload, ThreadRevertedPayload, ThreadRuntimeModeSetPayload, ThreadSessionSetPayload, ThreadSessionStopRequestedPayload, ThreadTokenUsageSnapshot, ThreadTurnDiff, ThreadTurnDiffCompletedPayload, ThreadTurnInterruptRequestedPayload, ThreadTurnStartCommand, ThreadTurnStartRequestedPayload, ThreadUnarchivedPayload, TimestampFormat, ToolLifecycleItemType, TrimmedNonEmptyString, TrimmedString, TurnCountRange, TurnId, UserInputQuestion, VcsCreateRefInput, VcsCreateRefResult, VcsCreateWorktreeInput, VcsCreateWorktreeResult, VcsDiscoveryItem, VcsDriverCapabilities, VcsDriverKind, VcsError, VcsFreshness, VcsFreshnessSource, VcsInitInput, VcsListRefsInput, VcsListRefsResult, VcsListRemotesResult, VcsListWorkspaceFilesResult, VcsOutputDecodeError, VcsProcessExitError, VcsProcessSpawnError, VcsProcessTimeoutError, VcsPullInput, VcsPullResult, VcsRef, VcsRemote, VcsRemoveWorktreeInput, VcsRepositoryDetectionError, VcsRepositoryIdentity, VcsStatusInput, VcsStatusLocalResult, VcsStatusRemoteResult, VcsStatusResult, VcsStatusStreamEvent, VcsSwitchRefInput, VcsSwitchRefResult, VcsUnsupportedOperationError, WS_METHODS, WsCloudGetRelayClientStatusRpc, WsCloudInstallRelayClientRpc, WsFilesystemBrowseRpc, WsGitPreparePullRequestThreadRpc, WsGitResolvePullRequestRpc, WsGitRunStackedActionRpc, WsOrchestrationDispatchCommandRpc, WsOrchestrationGetArchivedShellSnapshotRpc, WsOrchestrationGetFullThreadDiffRpc, WsOrchestrationGetTurnDiffRpc, WsOrchestrationReplayEventsRpc, WsOrchestrationSubscribeShellRpc, WsOrchestrationSubscribeThreadRpc, WsProjectsSearchEntriesRpc, WsProjectsWriteFileRpc, WsReviewGetDiffPreviewRpc, WsRpcGroup, WsServerDiscoverSourceControlRpc, WsServerGetConfigRpc, WsServerGetProcessDiagnosticsRpc, WsServerGetProcessResourceHistoryRpc, WsServerGetSettingsRpc, WsServerGetTraceDiagnosticsRpc, WsServerRefreshProvidersRpc, WsServerRemoveKeybindingRpc, WsServerSignalProcessRpc, WsServerUpdateProviderRpc, WsServerUpdateSettingsRpc, WsServerUpsertKeybindingRpc, WsShellOpenInEditorRpc, WsSourceControlCloneRepositoryRpc, WsSourceControlLookupRepositoryRpc, WsSourceControlPublishRepositoryRpc, WsSubscribeAuthAccessRpc, WsSubscribeServerConfigRpc, WsSubscribeServerLifecycleRpc, WsSubscribeTerminalEventsRpc, WsSubscribeTerminalMetadataRpc, WsSubscribeVcsStatusRpc, WsTerminalAttachRpc, WsTerminalClearRpc, WsTerminalCloseRpc, WsTerminalOpenRpc, WsTerminalResizeRpc, WsTerminalRestartRpc, WsTerminalWriteRpc, WsVcsCreateRefRpc, WsVcsCreateWorktreeRpc, WsVcsInitRpc, WsVcsListRefsRpc, WsVcsPullRpc, WsVcsRefreshStatusRpc, WsVcsRemoveWorktreeRpc, WsVcsSwitchRefRpc, defaultInstanceIdForDriver, isProviderAvailable, isProviderDriverKind, isToolLifecycleItemType, makeProviderSettingsSchema };
1
+ import { $a as ServerConfigStreamSettingsUpdatedEvent, $c as TerminalEvent, $d as AdvertisedEndpointProvider, $f as OrchestrationCheckpointFile, $h as HostPowerSource, $i as VcsStatusResult, $l as DesktopSshEnvironmentTargetSchema, $m as ScopedThreadSessionRef, $n as ResourceMonitorCommand, $o as BackgroundActivityProfileSelection, $p as ProviderSessionRuntimeStatus, $r as FilesystemBrowseFailure, $s as ExternalLauncherUnsupportedEditorError, $t as WsServerGetSettingsRpc, $u as PreviewAutomationPressInput, Aa as VcsListRemotesResult, Ac as ThreadTokenUsageSnapshot, Ad as PREVIEW_VIEWPORT_PRESET_IDS, Af as EnvironmentInternalError, Ag as TrimmedNonEmptyString, Ah as AuthRelayWriteScope, Ai as GitPreparePullRequestThreadResult, Al as DesktopPreviewNavStatusSchema, Am as DEFAULT_TEXT_GENERATION_MODEL, An as WsTerminalResizeRpc, Ao as ServerProviderUpdatedPayload, Ap as OrchestrationSubscribeThreadInput, Ar as ReviewDiffPreviewInput, As as OpenCodeSettings, At as WsOrchestrationSubscribeThreadRpc, Au as PREVIEW_AUTOMATION_V1_OPERATIONS, Ba as VcsProcessTimeoutError, Bc as ProviderSessionStartInput, Bd as PreviewRefreshInput, Bf as EnvironmentScopeRequiredError, Bh as EnvironmentAuthorizationError, Bi as VcsCreateRefResult, Bl as DesktopPreviewTabInputSchema, Bm as ProviderOptionSelectionValue, Bn as WsVcsSwitchRefRpc, Bo as ServerSignalProcessResult, Bp as ProjectCreateCommand, Br as AssetProjectFaviconNotFoundError, Bs as SourceControlWritingStyleMode, Bt as WsPreviewResizeRpc, Bu as PreviewAutomationError, Ca as SourceControlRepositoryVisibility, Cc as CanonicalRequestType, Cd as PreviewUrlResolution, Cf as EnvironmentHttpApi, Cg as ProviderItemId, Ch as AuthEnvironmentScope, Ci as GitActionProgressKind, Cl as DesktopPreviewAutomationEvaluateInputSchema, Cm as ThreadUnarchivedPayload, Cn as WsSubscribeTerminalEventsRpc, Co as ServerProviderSlashCommand, Cp as OrchestrationRpcSchemas, Cr as ResourceTelemetryProcessIdentity, Cs as MAX_GLASS_OPACITY, Ct as WsGitResolvePullRequestRpc, Cu as PreviewAnnotationRectSchema, Da as VcsError, Dc as ProviderRuntimeTurnStatus, Dd as PREVIEW_VIEWPORT_MAX_AREA, Df as EnvironmentHttpForbiddenError, Dg as RuntimeSessionId, Dh as AuthPairingCredentialResult, Di as GitManagerError, Dl as DesktopPreviewAutomationWaitForInputSchema, Dm as BooleanProviderOptionDescriptor, Dn as WsTerminalClearRpc, Do as ServerProviderUpdateInput, Dp as OrchestrationShellStreamEvent, Dr as ResourceTelemetrySourceHealth, Ds as MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, Dt as WsOrchestrationGetFullThreadDiffRpc, Du as PreviewAnnotationStyleChangeSchema, Ea as VcsDriverKind, Ec as ProviderRuntimeEventV2, Ed as FILL_PREVIEW_VIEWPORT, Ef as EnvironmentHttpConflictError, Eg as RuntimeRequestId, Eh as AuthOrchestrationReadScope, Ei as GitCommandError, El as DesktopPreviewAutomationTypeInputSchema, Em as TurnCountRange, En as WsTerminalAttachRpc, Eo as ServerProviderUpdateError, Ep as OrchestrationShellSnapshot, Er as ResourceTelemetrySnapshot, Es as MIN_GLASS_OPACITY, Et as WsOrchestrationGetArchivedShellSnapshotRpc, Eu as PreviewAnnotationStrokeTargetSchema, Fa as VcsProcessMissingExitCodeError, Fc as ProviderInterruptTurnInput, Fd as PreviewListInput, Ff as EnvironmentOrchestrationHttpApi, Fh as AuthStandardClientScopes, Fi as GitRunStackedActionResult, Fl as DesktopPreviewRecordingSaveInputSchema, Fm as PROVIDER_DISPLAY_NAMES, Fn as WsVcsInitRpc, Fo as ServerRemoveKeybindingResult, Fp as OrchestrationThreadShell, Fr as AssetAttachmentNotFoundError, Fs as SidebarAutoSettleAfterDays, Ft as WsPreviewListRpc, Fu as PreviewAutomationColorScheme, Ga as ServerConfig, Gc as TerminalAttachStreamEvent, Gd as PreviewSessionSnapshot, Gf as CorrelationId, Gh as BackgroundBooleanState, Gi as VcsListRefsResult, Gl as DesktopServerExposureModeSchema, Gm as ExecutionEnvironmentDescriptor, Gn as DesktopHostTelemetrySnapshot, Go as ServerTraceDiagnosticsResult, Gp as ProjectScriptIcon, Gr as AssetWorkspaceAssetNotFoundError, Gs as EDITORS, Gt as WsReviewGetDiffPreviewRpc, Gu as PreviewAutomationHostIdentity, Ha as VcsRepositoryDetectionError, Hc as ProviderTurnStartResult, Hd as PreviewReportStatusInput, Hf as ChatAttachment, Hh as ServerAuthDescriptor, Hi as VcsCreateWorktreeResult, Hl as DesktopPreviewWebviewConfigSchema, Hm as SelectProviderOptionDescriptor, Hn as DesktopElectronProcessType, Ho as ServerTraceDiagnosticsFailureSummary, Hp as ProjectDeletedPayload, Hr as AssetResource, Hs as ThreadEnvMode, Ht as WsProjectsReadFileRpc, Hu as PreviewAutomationExecutionError, Ia as VcsProcessOutputLimitError, Ic as ProviderRespondToRequestInput, Id as PreviewListResult, If as EnvironmentRequestInvalidError, Ih as AuthTerminalOperateScope, Ii as GitRunStackedActionToastRunAction, Il as DesktopPreviewRegisterWebviewInputSchema, Im as ProviderOptionChoice, In as WsVcsListRefsRpc, Io as ServerSelfUpdateError, Ip as OrchestrationThreadStreamItem, Ir as AssetCreateUrlInput, Is as SidebarProjectGroupingMode, It as WsPreviewNavigateRpc, Iu as PreviewAutomationConnectionId, Ja as ServerConfigProviderStatusesPayload, Jc as TerminalCwdError, Jd as PreviewViewportSetting, Jf as DispatchResult, Jh as ClientActivityClientId, Ji as VcsRef, Jl as DesktopSshBearerRequestInputSchema, Jm as ExecutionEnvironmentPlatformOs, Jn as DesktopTelemetrySetHostPowerIntervals, Jo as ServerUpsertKeybindingInput, Jp as ProviderApprovalDecision, Jr as AssetWorkspacePathValidationError, Js as ExternalLauncherBrowserSpawnError, Jt as WsServerGetBackgroundPolicyRpc, Ju as PreviewAutomationNavigateInput, Ka as ServerConfigIssue, Kc as TerminalClearInput, Kd as PreviewTabId, Kf as DEFAULT_PROVIDER_INTERACTION_MODE, Kh as BackgroundPolicySnapshot, Ki as VcsPullInput, Kl as DesktopServerExposureStateSchema, Km as ExecutionEnvironmentPlatform, Kn as DesktopTelemetryControlMessage, Ko as ServerTraceDiagnosticsSpanOccurrence, Kp as ProjectionPendingApprovalDecision, Kr as AssetWorkspaceContextNotFoundError, Ks as EditorId, Kt as WsRpcGroup, Ku as PreviewAutomationInvalidSelectorError, La as VcsProcessOutputReadError, Lc as ProviderRespondToUserInputInput, Ld as PreviewNavStatus, Lf as EnvironmentRequestInvalidReason, Lh as AuthTokenExchangeGrantType, Li as GitStackedAction, Ll as DesktopPreviewScreenshotArtifactSchema, Lm as ProviderOptionDescriptor, Ln as WsVcsPullRpc, Lo as ServerSelfUpdateInput, Lp as PROVIDER_SEND_TURN_MAX_ATTACHMENTS, Lr as AssetCreateUrlResult, Ls as SidebarProjectSortOrder, Lt as WsPreviewOpenRpc, Lu as PreviewAutomationConsoleEntry, Ma as VcsOutputDecodeError, Mc as UserInputQuestion, Md as PreviewError, Mf as EnvironmentMetadataHttpApi, Mg as TurnId, Mh as AuthRevokeClientSessionInput, Mi as GitPullRequestRefInput, Ml as DesktopPreviewPointerEventSchema, Mm as MODEL_SLUG_ALIASES_BY_PROVIDER, Mn as WsTerminalWriteRpc, Mo as ServerProviderVersionAdvisoryStatus, Mp as OrchestrationThreadActivity, Mr as ReviewDiffPreviewSource, Ms as ServerSettingsError, Mt as WsPreviewAutomationFocusHostRpc, Mu as PreviewAutomationClickInput, Na as VcsProcessExitError, Nc as isToolLifecycleItemType, Nd as PreviewEvent, Nf as EnvironmentOperationForbiddenError, Nh as AuthRevokePairingLinkInput, Ni as GitResolvePullRequestResult, Nl as DesktopPreviewRecordingArtifactSchema, Nm as ModelCapabilities, Nn as WsVcsCreateRefRpc, No as ServerProviders, Np as OrchestrationThreadActivityTone, Nr as ReviewDiffPreviewSourceKind, Ns as ServerSettingsOperation, Nt as WsPreviewAutomationRespondRpc, Nu as PreviewAutomationClientDisconnectedError, Oa as VcsFreshness, Oc as RuntimeEventRaw, Od as PREVIEW_VIEWPORT_MAX_DIMENSION, Of as EnvironmentHttpInternalServerError, Og as RuntimeTaskId, Oh as AuthPairingLink, Oi as GitManagerServiceError, Ol as DesktopPreviewColorSchemeSchema, Om as DEFAULT_MODEL, On as WsTerminalCloseRpc, Oo as ServerProviderUpdateState, Op as OrchestrationShellStreamItem, Or as ResourceTelemetrySourceStatus, Os as MIN_SIDEBAR_THREAD_PREVIEW_COUNT, Ot as WsOrchestrationGetTurnDiffRpc, Ou as BrowserNavigationTarget, Pa as VcsProcessExitFailureKind, Pc as ProviderEvent, Pd as PreviewInvalidUrlError, Pf as EnvironmentOperationForbiddenReason, Ph as AuthSessionState, Pi as GitRunStackedActionInput, Pl as DesktopPreviewRecordingFrameSchema, Pm as PREFERRED_DEFAULT_CODEX_MODELS, Pn as WsVcsCreateWorktreeRpc, Po as ServerRemoveKeybindingInput, Pp as OrchestrationThreadDetailSnapshot, Pr as AssetAccessError, Ps as ServerSettingsPatch, Pt as WsPreviewCloseRpc, Pu as PreviewAutomationClientId, Qa as ServerConfigStreamProviderStatusesEvent, Qc as TerminalError, Qd as AdvertisedEndpointHostedHttpsCompatibility, Qf as OrchestrationAggregateKind, Qh as HostPowerSnapshot, Qi as VcsStatusRemoteResult, Ql as DesktopSshEnvironmentEnsureResultSchema, Qm as ScopedThreadRef, Qn as ResourceMonitorCapabilities, Qo as BackgroundActivityProfile, Qp as ProviderSandboxMode, Qr as FilesystemBrowseError, Qs as ExternalLauncherUnknownEditorError, Qt as WsServerGetResourceTelemetryHistoryRpc, Qu as PreviewAutomationOperation, Ra as VcsProcessSpawnError, Rc as ProviderSendTurnInput, Rd as PreviewNavigateInput, Rf as EnvironmentResourceNotFoundError, Rh as AuthTokenExchangeRequest, Ri as TextGenerationError, Rl as DesktopPreviewSetColorSchemeInputSchema, Rm as ProviderOptionDescriptorType, Rn as WsVcsRefreshStatusRpc, Ro as ServerSelfUpdateResult, Rp as PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, Rr as AssetPreviewTypeValidationError, Rs as SidebarThreadPreviewCount, Rt as WsPreviewRefreshRpc, Ru as PreviewAutomationControlInterruptedError, Sa as SourceControlRepositoryLookupInput, Sc as CanonicalItemType, Sd as PreviewAutomationWaitForInput, Sf as EnvironmentConnectHttpApi, Sg as ProjectId, Sh as AuthEnvironmentBootstrapTokenType, Si as GitActionProgressEvent, Sl as DesktopPreviewAutomationClickInputSchema, Sm as ThreadTurnStartRequestedPayload, Sn as WsSubscribeServerLifecycleRpc, So as ServerProviderSkill, Sp as OrchestrationReadModel, Sr as ResourceTelemetryProcessCategory, Ss as GrokSettings, St as WsGitPreparePullRequestThreadRpc, Su as PreviewAnnotationPointSchema, Ta as VcsDriverCapabilities, Tc as ProviderRuntimeEvent, Td as DiscoveredLocalServerList, Tf as EnvironmentHttpCommonError, Tg as RuntimeItemId, Th as AuthOrchestrationOperateScope, Ti as GitActionProgressStream, Tl as DesktopPreviewAutomationScrollInputSchema, Tm as ThreadUnsnoozedPayload, Tn as WsSubscribeVcsStatusRpc, To as ServerProviderState, Tp as OrchestrationSessionStatus, Tr as ResourceTelemetryRetryResult, Ts as MAX_SIDEBAR_THREAD_PREVIEW_COUNT, Tt as WsOrchestrationDispatchCommandRpc, Tu as PreviewAnnotationScreenshotSchema, Ua as VcsRepositoryIdentity, Uc as DEFAULT_TERMINAL_ID, Ud as PreviewResizeInput, Uf as ChatImageAttachment, Uh as ServerAuthPolicy, Ui as VcsInitInput, Ul as DesktopRuntimeArchSchema, Um as EnvironmentConnectionState, Un as DesktopHostTelemetryHello, Uo as ServerTraceDiagnosticsLogEvent, Up as ProjectMetaUpdatedPayload, Ur as AssetSigningKeyLoadError, Us as TimestampFormat, Ut as WsProjectsSearchEntriesRpc, Uu as PreviewAutomationHost, Va as VcsRemote, Vc as ProviderStopSessionInput, Vd as PreviewRenderedViewportSize, Vf as AssistantDeliveryMode, Vh as ServerAuthBootstrapMethod, Vi as VcsCreateWorktreeInput, Vl as DesktopPreviewTabStateSchema, Vm as ProviderOptionSelections, Vn as DesktopElectronProcessMetric, Vo as ServerTraceDiagnosticsErrorKind, Vp as ProjectCreatedPayload, Vr as AssetProjectFaviconResolutionError, Vs as SourceControlWritingStyleSettings, Vt as WsProjectsListEntriesRpc, Vu as PreviewAutomationEvaluateInput, Wa as VcsUnsupportedOperationError, Wc as TerminalAttachInput, Wd as PreviewSessionLookupError, Wf as ClientOrchestrationCommand, Wh as ServerAuthSessionMethod, Wi as VcsListRefsInput, Wl as DesktopRuntimeInfoSchema, Wm as ExecutionEnvironmentCapabilities, Wn as DesktopHostTelemetryMessage, Wo as ServerTraceDiagnosticsRecentFailure, Wp as ProjectScript, Wr as AssetWorkspaceAssetInspectionError, Ws as makeProviderSettingsSchema, Wt as WsProjectsWriteFileRpc, Wu as PreviewAutomationHostFocus, Xa as ServerConfigStreamEvent, Xc as TerminalCwdNotFoundError, Xd as AdvertisedEndpoint, Xf as ORCHESTRATION_WS_METHODS, Xh as ClientActivityReportInput, Xi as VcsStatusInput, Xl as DesktopSshEnvironmentEnsureInputSchema, Xm as RepositoryIdentityLocator, Xn as ResourceAttributionEntry, Xo as isProviderAvailable, Xp as ProviderInteractionMode, Xr as AssetWorkspaceRootNormalizationError, Xs as ExternalLauncherEditorSpawnError, Xt as WsServerGetProcessDiagnosticsRpc, Xu as PreviewAutomationNoAvailableHostError, Ya as ServerConfigSettingsUpdatedPayload, Yc as TerminalCwdNotDirectoryError, Yd as PreviewViewportSize, Yf as ModelSelection, Yh as ClientActivityLease, Yi as VcsRemoveWorktreeInput, Yl as DesktopSshEnvironmentBootstrapSchema, Ym as RepositoryIdentity, Yn as RESOURCE_MONITOR_PROTOCOL_VERSION, Yo as ServerUpsertKeybindingResult, Yp as ProviderApprovalPolicy, Yr as AssetWorkspaceResolutionError, Ys as ExternalLauncherCommandNotFoundError, Yt as WsServerGetConfigRpc, Yu as PreviewAutomationNetworkEntry, Za as ServerConfigStreamKeybindingsUpdatedEvent, Zc as TerminalCwdStatError, Zd as AdvertisedEndpointCompatibility, Zf as OrchestrationActorKind, Zh as ClientKind, Zi as VcsStatusLocalResult, Zl as DesktopSshEnvironmentEnsureOptionsSchema, Zm as ScopedProjectRef, Zn as ResourceAttributionSnapshot, Zo as BackgroundActivityOverrides, Zp as ProviderRequestKind, Zr as FilesystemBrowseEntry, Zs as ExternalLauncherError, Zt as WsServerGetProcessResourceHistoryRpc, Zu as PreviewAutomationOpenInput, _a as SourceControlPublishRepositoryResult, _c as ResolvedKeybindingRule, _d as PreviewAutomationTargetNotEditableError, _f as EnvironmentAuthenticatedPrincipal, _g as IsoDateTime, _h as AuthClientMetadata, _i as ProjectWriteFileResult, _l as DesktopDiscoveredSshHostSchema, _m as ThreadSnoozedPayload, _n as WsSubscribeBackgroundPolicyRpc, _o as ServerProviderAuth, _p as OrchestrationMessageRole, _r as ResourceTelemetryHistory, _s as DEFAULT_SIDEBAR_THREAD_SORT_ORDER, _t as WS_METHODS, _u as PickFolderOptionsSchema, aa as SourceControlCloneProtocol, ac as KeybindingValue, ad as PreviewAutomationResizeInput, af as RelayClientInstallFailedError, ag as ProviderInstanceEnvironmentVariable, ah as AuthAccessStreamClientUpsertedEvent, ai as ProjectFileOperation, al as TerminalResizeInput, am as ThreadCheckpointRevertRequestedPayload, an as WsServerReportHostPowerStateRpc, ao as ServerLifecycleStreamWelcomeEvent, ap as OrchestrationEvent, ar as ResourceMonitorHistoryChunkEvent, as as CursorSettings, au as DesktopSshPasswordPromptResolutionInputSchema, ba as SourceControlRepositoryError, bc as THREAD_JUMP_KEYBINDING_COMMANDS, bd as PreviewAutomationUnavailableError, bf as EnvironmentCloudPreferencesRequest, bg as PortSchema, bh as AuthClientSession, bi as T3_PROJECT_FILE_NAME, bl as DesktopPreviewAnnotationThemeSchema, bm as ThreadTurnInterruptRequestedPayload, bn as WsSubscribeResourceTelemetryRpc, bo as ServerProviderContinuation, bp as OrchestrationProposedPlan, br as ResourceTelemetryIoSemantics, bs as EnvironmentIdentificationMode, bt as WsCloudInstallRelayClientRpc, bu as PreviewAnnotationElementTargetSchema, ca as SourceControlDiscoveryResult, cc as KeybindingsConfig, cd as PreviewAutomationResultTooLargeError, cf as RelayClientInstallProgressStageSchema, cg as ProviderInstanceRef, ch as AuthAccessStreamPairingLinkRemovedEvent, ci as ProjectListEntriesResult, cl as TerminalSessionSnapshot, cm as ThreadInteractionModeSetPayload, cn as WsServerUpdateProviderRpc, co as ServerProcessDiagnosticsEntry, cp as OrchestrationGetFullThreadDiffError, cr as ResourceMonitorSampleNowCommand, cs as DEFAULT_CLIENT_SETTINGS, cu as DesktopUpdateChannelSchema, da as SourceControlProviderAuthStatus, dc as MAX_KEYBINDING_VALUE_LENGTH, dd as PreviewAutomationSetColorSchemeResult, df as AuthOtherClientSessionsRevokeResult, dg as ApprovalRequestId, dh as AuthAccessTokenResult, di as ProjectReadFileResult, dl as TerminalThreadInput, dm as ThreadProposedPlanUpsertedPayload, dn as WsServerUpsertKeybindingRpc, do as ServerProcessResourceHistoryFailureTag, dp as OrchestrationGetSnapshotError, dr as ResourceMonitorSetStreamingCommand, ds as DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, du as DesktopUpdateStateSchema, ea as VcsStatusStreamEvent, ec as LaunchEditorInput, ed as PreviewAutomationRecordingArtifact, ef as AdvertisedEndpointProviderKind, eg as HostPowerThermalState, eh as ServerSelfUpdateCapability, ei as FilesystemBrowseInput, el as TerminalHistoryError, em as ProviderUserInputAnswers, en as WsServerGetTraceDiagnosticsRpc, eo as ServerConfigStreamSnapshotEvent, ep as OrchestrationCheckpointStatus, er as ResourceMonitorConfigureCommand, es as BackgroundActivitySettings, eu as DesktopSshHostSourceSchema, fa as SourceControlProviderDiscoveryItem, fc as MAX_KEYBINDING_WHEN_LENGTH, fd as PreviewAutomationSnapshot, ff as AuthPairingLinkRevokeResult, fg as AuthSessionId, fh as AuthAccessTokenType, fi as ProjectSearchEntriesError, fl as TerminalWriteError, fm as ThreadRevertedPayload, fn as WsShellOpenInEditorRpc, fo as ServerProcessResourceHistoryInput, fp as OrchestrationGetTurnDiffError, fr as ResourceMonitorShutdownCommand, fs as DEFAULT_SERVER_SETTINGS, fu as DesktopUpdateStatusSchema, ga as SourceControlPublishRepositoryInput, gc as MODEL_PICKER_KEYBINDING_COMMANDS, gd as PreviewAutomationTabTargetInput, gf as EnvironmentAuthenticatedAuth, gg as EventId, gh as AuthBrowserSessionResult, gi as ProjectWriteFileInput, gl as DesktopAppStageLabelSchema, gm as ThreadSettledPayload, gn as WsSubscribeAuthAccessRpc, go as ServerProvider, gp as OrchestrationMessage, gr as ResourceTelemetryHealth, gs as DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, gu as PersistedSavedEnvironmentRecordSchema, ha as SourceControlProviderKind, hc as MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, hd as PreviewAutomationTabNotFoundError, hf as EnvironmentAuthInvalidReason, hg as EnvironmentId, hh as AuthBrowserSessionRequest, hi as ProjectWriteFileError, hl as DesktopAppBrandingSchema, hm as ThreadSessionStopRequestedPayload, hn as WsSourceControlPublishRepositoryRpc, ho as ServerProcessSignal, hp as OrchestrationLatestTurn, hr as ResourceTelemetryGroups, hs as DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, hu as PRIMARY_LOCAL_ENVIRONMENT_ID, ia as ChangeRequestState, ic as KeybindingShortcut, id as PreviewAutomationRequestQueueClosedError, if as DesktopBackendBootstrap, ig as ProviderInstanceEnvironment, ih as AuthAccessStreamClientRemovedEvent, ii as ProjectFileFailure, il as TerminalResizeError, im as ThreadArchivedPayload, in as WsServerReportClientActivityRpc, io as ServerLifecycleStreamReadyEvent, ip as OrchestrationDispatchCommandError, ir as ResourceMonitorHelloEvent, is as CodexSettings, iu as DesktopSshPasswordPromptRequestSchema, ja as VcsListWorkspaceFilesResult, jc as ToolLifecycleItemType, jd as PreviewCloseInput, jf as EnvironmentInternalErrorReason, jg as TrimmedString, jh as AuthReviewWriteScope, ji as GitPullRequestMaterializationError, jl as DesktopPreviewNavigateInputSchema, jm as DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, jn as WsTerminalRestartRpc, jo as ServerProviderVersionAdvisory, jp as OrchestrationThread, jr as ReviewDiffPreviewResult, js as ServerSettings, jt as WsPreviewAutomationConnectRpc, ju as PreviewAutomationActionEvent, ka as VcsFreshnessSource, kc as TOOL_LIFECYCLE_ITEM_TYPES, kd as PREVIEW_VIEWPORT_MIN_DIMENSION, kf as EnvironmentHttpUnauthorizedError, kg as ThreadId, kh as AuthRelayReadScope, ki as GitPreparePullRequestThreadInput, kl as DesktopPreviewConfigInputSchema, km as DEFAULT_MODEL_BY_PROVIDER, kn as WsTerminalOpenRpc, ko as ServerProviderUpdateStatus, kp as OrchestrationSubscribeShellInput, kr as ReviewDiffPreviewError, ks as ObservabilitySettings, kt as WsOrchestrationSubscribeShellRpc, ku as PREVIEW_AUTOMATION_OPERATIONS, la as SourceControlDiscoveryStatus, lc as KeybindingsConfigError, ld as PreviewAutomationScrollInput, lf as RelayClientStatusSchema, lg as defaultInstanceIdForDriver, lh as AuthAccessStreamPairingLinkUpsertedEvent, li as ProjectReadFileError, ll as TerminalSessionStatus, lm as ThreadMessageSentPayload, ln as WsServerUpdateServerRpc, lo as ServerProcessDiagnosticsResult, lp as OrchestrationGetFullThreadDiffInput, lr as ResourceMonitorSetExternalProcessesCommand, ls as DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, lu as DesktopUpdateCheckResultSchema, ma as SourceControlProviderInfo, mc as MAX_WHEN_EXPRESSION_DEPTH, md as PreviewAutomationStreamEvent, mf as EnvironmentAuthInvalidError, mg as CommandId, mh as AuthAdministrativeScopes, mi as ProjectSearchEntriesResult, ml as ContextMenuItemSchema, mm as ThreadSessionSetPayload, mn as WsSourceControlLookupRepositoryRpc, mo as ServerProcessResourceHistorySummary, mp as OrchestrationGetTurnDiffResult, mr as ResourceTelemetryAggregate, ms as DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, mu as DesktopWslStateSchema, na as VcsSwitchRefResult, nc as KeybindingCommand, nd as PreviewAutomationRemoteUnavailableError, nf as AdvertisedEndpointSource, ng as ProviderInstanceConfig, nh as AuthAccessReadScope, ni as ProjectEntriesFailure, nl as TerminalNotRunningError, nm as ThreadActivityAppendedPayload, nn as WsServerRefreshProvidersRpc, no as ServerLifecycleReadyPayload, np as OrchestrationCommand, nr as ResourceMonitorEvent, ns as ClientSettingsPatch, nu as DesktopSshPasswordPromptCancelledResultSchema, oa as SourceControlCloneRepositoryInput, oc as KeybindingWhen, od as PreviewAutomationResizeResult, of as RelayClientInstallFailureReasonSchema, og as ProviderInstanceEnvironmentVariableName, oh as AuthAccessStreamError, oi as ProjectListEntriesError, ol as TerminalRestartInput, om as ThreadCreatedPayload, on as WsServerRetryResourceTelemetryRpc, oo as ServerLifecycleWelcomePayload, op as OrchestrationEventMetadata, or as ResourceMonitorProcessSample, os as DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, ou as DesktopThemeSchema, pa as SourceControlProviderError, pc as MAX_SCRIPT_ID_LENGTH, pd as PreviewAutomationStatus, pf as EnvironmentAuthHttpApi, pg as CheckpointRef, ph as AuthAccessWriteScope, pi as ProjectSearchEntriesInput, pl as TerminalWriteInput, pm as ThreadRuntimeModeSetPayload, pn as WsSourceControlCloneRepositoryRpc, po as ServerProcessResourceHistoryResult, pp as OrchestrationGetTurnDiffInput, pr as ResourceMonitorSnapshotEvent, ps as DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, pu as DesktopWslDistroSchema, qa as ServerConfigKeybindingsUpdatedPayload, qc as TerminalCloseInput, qd as PreviewViewportPresetId, qf as DEFAULT_RUNTIME_MODE, qh as BackgroundScope, qi as VcsPullResult, ql as DesktopSshBearerBootstrapInputSchema, qm as ExecutionEnvironmentPlatformArch, qn as DesktopTelemetrySetDiagnosticsDemand, qo as ServerTraceDiagnosticsSpanSummary, qp as ProjectionPendingApprovalStatus, qr as AssetWorkspaceContextResolutionError, qs as EditorLaunchStyle, qt as WsServerDiscoverSourceControlRpc, qu as PreviewAutomationMalformedResponseError, ra as ChangeRequest, rc as KeybindingRule, rd as PreviewAutomationRequest, rf as AdvertisedEndpointStatus, rg as ProviderInstanceConfigMap, rh as AuthAccessSnapshot, ri as ProjectEntry, rl as TerminalOpenInput, rm as ThreadApprovalResponseRequestedPayload, rn as WsServerRemoveKeybindingRpc, ro as ServerLifecycleStreamEvent, rp as OrchestrationCommandReceiptStatus, rr as ResourceMonitorExternalProcess, rs as ClientSettingsSchema, ru as DesktopSshPasswordPromptCancelledType, sa as SourceControlCloneRepositoryResult, sc as KeybindingWhenNode, sd as PreviewAutomationResponse, sf as RelayClientInstallProgressEventSchema, sg as ProviderInstanceId, sh as AuthAccessStreamEvent, si as ProjectListEntriesInput, sl as TerminalSessionLookupError, sm as ThreadDeletedPayload, sn as WsServerSignalProcessRpc, so as ServerObservability, sp as OrchestrationEventType, sr as ResourceMonitorReadHistoryCommand, ss as DEFAULT_BACKGROUND_ACTIVITY_PROFILE, su as DesktopUpdateActionResultSchema, ta as VcsSwitchRefInput, tc as isExternalLauncherError, td as PreviewAutomationRecordingStatus, tf as AdvertisedEndpointReachability, tg as ProviderDriverKind, th as ServerSelfUpdateMethod, ti as FilesystemBrowseResult, tl as TerminalMetadataStreamEvent, tm as RuntimeMode, tn as WsServerProbeRpc, to as ServerConfigUpdatedPayload, tp as OrchestrationCheckpointSummary, tr as ResourceMonitorErrorEvent, ts as ClaudeSettings, tu as DesktopSshHttpBaseUrlInputSchema, ua as SourceControlProviderAuth, uc as MAX_KEYBINDINGS_COUNT, ud as PreviewAutomationSetColorSchemeInput, uf as AuthClientSessionRevokeResult, ug as isProviderDriverKind, uh as AuthAccessStreamSnapshotEvent, ui as ProjectReadFileInput, ul as TerminalSummary, um as ThreadMetaUpdatedPayload, un as WsServerUpdateSettingsRpc, uo as ServerProcessResourceHistoryBucket, up as OrchestrationGetFullThreadDiffResult, ur as ResourceMonitorSetSampleIntervalCommand, us as DEFAULT_GLASS_OPACITY, uu as DesktopUpdateReleaseNoteSchema, va as SourceControlPublishStatus, vc as ResolvedKeybindingsConfig, vd as PreviewAutomationTimeoutError, vf as EnvironmentCloudEndpointUnavailableError, vg as MessageId, vh as AuthClientMetadataDeviceType, vi as T3ProjectFile, vl as DesktopEnvironmentBootstrapSchema, vm as ThreadTurnDiff, vn as WsSubscribeDiscoveredLocalServersRpc, vo as ServerProviderAuthStatus, vp as OrchestrationProject, vr as ResourceTelemetryHistoryBucket, vs as DEFAULT_TIMESTAMP_FORMAT, vt as WsAssetsCreateUrlRpc, vu as PickedElementPayloadSchema, wa as VcsDiscoveryItem, wc as ItemLifecyclePayload, wd as DiscoveredLocalServer, wf as EnvironmentHttpBadRequestError, wg as RpcClientId, wh as AuthEnvironmentScopes, wi as GitActionProgressPhase, wl as DesktopPreviewAutomationPressInputSchema, wm as ThreadUnsettledPayload, wn as WsSubscribeTerminalMetadataRpc, wo as ServerProviderSlashCommandInput, wp as OrchestrationSession, wr as ResourceTelemetryProcessSummary, ws as MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, wt as WsGitRunStackedActionRpc, wu as PreviewAnnotationRegionTargetSchema, xa as SourceControlRepositoryInfo, xc as THREAD_KEYBINDING_COMMANDS, xd as PreviewAutomationUnsupportedClientError, xf as EnvironmentCloudRelayConfigResult, xg as PositiveInt, xh as AuthCreatePairingCredentialInput, xi as T3_PROJECT_FILE_SCHEMA_URL, xl as DesktopPreviewArtifactInputSchema, xm as ThreadTurnStartCommand, xn as WsSubscribeServerConfigRpc, xo as ServerProviderModel, xp as OrchestrationProposedPlanId, xr as ResourceTelemetryProcess, xs as GlassOpacity, xt as WsFilesystemBrowseRpc, xu as PreviewAnnotationPayloadSchema, ya as SourceControlRepositoryCloneUrls, yc as SCRIPT_RUN_COMMAND_PATTERN, yd as PreviewAutomationTypeInput, yf as EnvironmentCloudLinkStateResult, yg as NonNegativeInt, yh as AuthClientPresentationMetadata, yi as T3ProjectFileScript, yl as DesktopPreviewAnnotationThemeInputSchema, ym as ThreadTurnDiffCompletedPayload, yn as WsSubscribePreviewEventsRpc, yo as ServerProviderAvailability, yp as OrchestrationProjectShell, yr as ResourceTelemetryHistoryInput, ys as DEFAULT_UNIFIED_SETTINGS, yt as WsCloudGetRelayClientStatusRpc, yu as PickedElementStackFrameSchema, za as VcsProcessStdinWriteError, zc as ProviderSession, zd as PreviewOpenInput, zf as EnvironmentResourceNotFoundReason, zh as AuthWebSocketTicketResult, zi as VcsCreateRefInput, zl as DesktopPreviewTabIdSchema, zm as ProviderOptionSelection, zn as WsVcsRemoveWorktreeRpc, zo as ServerSignalProcessInput, zp as PROVIDER_SEND_TURN_MAX_INPUT_CHARS, zr as AssetProjectFaviconInspectionError, zs as SidebarThreadSortOrder, zt as WsPreviewReportStatusRpc, zu as PreviewAutomationElement } from "./shared.js";
2
+ export { AdvertisedEndpoint, AdvertisedEndpointCompatibility, AdvertisedEndpointHostedHttpsCompatibility, AdvertisedEndpointProvider, AdvertisedEndpointProviderKind, AdvertisedEndpointReachability, AdvertisedEndpointSource, AdvertisedEndpointStatus, ApprovalRequestId, AssetAccessError, AssetAttachmentNotFoundError, AssetCreateUrlInput, AssetCreateUrlResult, AssetPreviewTypeValidationError, AssetProjectFaviconInspectionError, AssetProjectFaviconNotFoundError, AssetProjectFaviconResolutionError, AssetResource, AssetSigningKeyLoadError, AssetWorkspaceAssetInspectionError, AssetWorkspaceAssetNotFoundError, AssetWorkspaceContextNotFoundError, AssetWorkspaceContextResolutionError, AssetWorkspacePathValidationError, AssetWorkspaceResolutionError, AssetWorkspaceRootNormalizationError, AssistantDeliveryMode, AuthAccessReadScope, AuthAccessSnapshot, AuthAccessStreamClientRemovedEvent, AuthAccessStreamClientUpsertedEvent, AuthAccessStreamError, AuthAccessStreamEvent, AuthAccessStreamPairingLinkRemovedEvent, AuthAccessStreamPairingLinkUpsertedEvent, AuthAccessStreamSnapshotEvent, AuthAccessTokenResult, AuthAccessTokenType, AuthAccessWriteScope, AuthAdministrativeScopes, AuthBrowserSessionRequest, AuthBrowserSessionResult, AuthClientMetadata, AuthClientMetadataDeviceType, AuthClientPresentationMetadata, AuthClientSession, AuthClientSessionRevokeResult, AuthCreatePairingCredentialInput, AuthEnvironmentBootstrapTokenType, AuthEnvironmentScope, AuthEnvironmentScopes, AuthOrchestrationOperateScope, AuthOrchestrationReadScope, AuthOtherClientSessionsRevokeResult, AuthPairingCredentialResult, AuthPairingLink, AuthPairingLinkRevokeResult, AuthRelayReadScope, AuthRelayWriteScope, AuthReviewWriteScope, AuthRevokeClientSessionInput, AuthRevokePairingLinkInput, AuthSessionId, AuthSessionState, AuthStandardClientScopes, AuthTerminalOperateScope, AuthTokenExchangeGrantType, AuthTokenExchangeRequest, AuthWebSocketTicketResult, BackgroundActivityOverrides, BackgroundActivityProfile, BackgroundActivityProfileSelection, BackgroundActivitySettings, BackgroundBooleanState, BackgroundPolicySnapshot, BackgroundScope, BooleanProviderOptionDescriptor, BrowserNavigationTarget, CanonicalItemType, CanonicalRequestType, ChangeRequest, ChangeRequestState, ChatAttachment, ChatImageAttachment, CheckpointRef, ClaudeSettings, ClientActivityClientId, ClientActivityLease, ClientActivityReportInput, ClientKind, ClientOrchestrationCommand, ClientSettingsPatch, ClientSettingsSchema, CodexSettings, CommandId, ContextMenuItemSchema, CorrelationId, CursorSettings, DEFAULT_AUTOMATIC_GIT_FETCH_INTERVAL, DEFAULT_BACKGROUND_ACTIVITY_PROFILE, DEFAULT_CLIENT_SETTINGS, DEFAULT_ENVIRONMENT_IDENTIFICATION_MODE, DEFAULT_GLASS_OPACITY, DEFAULT_MODEL, DEFAULT_MODEL_BY_PROVIDER, DEFAULT_PROVIDER_HEALTH_REFRESH_INTERVAL, DEFAULT_PROVIDER_INTERACTION_MODE, DEFAULT_RUNTIME_MODE, DEFAULT_SERVER_SETTINGS, DEFAULT_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, DEFAULT_SIDEBAR_PROJECT_GROUPING_MODE, DEFAULT_SIDEBAR_PROJECT_SORT_ORDER, DEFAULT_SIDEBAR_THREAD_PREVIEW_COUNT, DEFAULT_SIDEBAR_THREAD_SORT_ORDER, DEFAULT_TERMINAL_ID, DEFAULT_TEXT_GENERATION_MODEL, DEFAULT_TEXT_GENERATION_MODEL_BY_PROVIDER, DEFAULT_TIMESTAMP_FORMAT, DEFAULT_UNIFIED_SETTINGS, DesktopAppBrandingSchema, DesktopAppStageLabelSchema, DesktopBackendBootstrap, DesktopDiscoveredSshHostSchema, DesktopElectronProcessMetric, DesktopElectronProcessType, DesktopEnvironmentBootstrapSchema, DesktopHostTelemetryHello, DesktopHostTelemetryMessage, DesktopHostTelemetrySnapshot, DesktopPreviewAnnotationThemeInputSchema, DesktopPreviewAnnotationThemeSchema, DesktopPreviewArtifactInputSchema, DesktopPreviewAutomationClickInputSchema, DesktopPreviewAutomationEvaluateInputSchema, DesktopPreviewAutomationPressInputSchema, DesktopPreviewAutomationScrollInputSchema, DesktopPreviewAutomationTypeInputSchema, DesktopPreviewAutomationWaitForInputSchema, DesktopPreviewColorSchemeSchema, DesktopPreviewConfigInputSchema, DesktopPreviewNavStatusSchema, DesktopPreviewNavigateInputSchema, DesktopPreviewPointerEventSchema, DesktopPreviewRecordingArtifactSchema, DesktopPreviewRecordingFrameSchema, DesktopPreviewRecordingSaveInputSchema, DesktopPreviewRegisterWebviewInputSchema, DesktopPreviewScreenshotArtifactSchema, DesktopPreviewSetColorSchemeInputSchema, DesktopPreviewTabIdSchema, DesktopPreviewTabInputSchema, DesktopPreviewTabStateSchema, DesktopPreviewWebviewConfigSchema, DesktopRuntimeArchSchema, DesktopRuntimeInfoSchema, DesktopServerExposureModeSchema, DesktopServerExposureStateSchema, DesktopSshBearerBootstrapInputSchema, DesktopSshBearerRequestInputSchema, DesktopSshEnvironmentBootstrapSchema, DesktopSshEnvironmentEnsureInputSchema, DesktopSshEnvironmentEnsureOptionsSchema, DesktopSshEnvironmentEnsureResultSchema, DesktopSshEnvironmentTargetSchema, DesktopSshHostSourceSchema, DesktopSshHttpBaseUrlInputSchema, DesktopSshPasswordPromptCancelledResultSchema, DesktopSshPasswordPromptCancelledType, DesktopSshPasswordPromptRequestSchema, DesktopSshPasswordPromptResolutionInputSchema, DesktopTelemetryControlMessage, DesktopTelemetrySetDiagnosticsDemand, DesktopTelemetrySetHostPowerIntervals, DesktopThemeSchema, DesktopUpdateActionResultSchema, DesktopUpdateChannelSchema, DesktopUpdateCheckResultSchema, DesktopUpdateReleaseNoteSchema, DesktopUpdateStateSchema, DesktopUpdateStatusSchema, DesktopWslDistroSchema, DesktopWslStateSchema, DiscoveredLocalServer, DiscoveredLocalServerList, DispatchResult, EDITORS, EditorId, EditorLaunchStyle, EnvironmentAuthHttpApi, EnvironmentAuthInvalidError, EnvironmentAuthInvalidReason, EnvironmentAuthenticatedAuth, EnvironmentAuthenticatedPrincipal, EnvironmentAuthorizationError, EnvironmentCloudEndpointUnavailableError, EnvironmentCloudLinkStateResult, EnvironmentCloudPreferencesRequest, EnvironmentCloudRelayConfigResult, EnvironmentConnectHttpApi, EnvironmentConnectionState, EnvironmentHttpApi, EnvironmentHttpBadRequestError, EnvironmentHttpCommonError, EnvironmentHttpConflictError, EnvironmentHttpForbiddenError, EnvironmentHttpInternalServerError, EnvironmentHttpUnauthorizedError, EnvironmentId, EnvironmentIdentificationMode, EnvironmentInternalError, EnvironmentInternalErrorReason, EnvironmentMetadataHttpApi, EnvironmentOperationForbiddenError, EnvironmentOperationForbiddenReason, EnvironmentOrchestrationHttpApi, EnvironmentRequestInvalidError, EnvironmentRequestInvalidReason, EnvironmentResourceNotFoundError, EnvironmentResourceNotFoundReason, EnvironmentScopeRequiredError, EventId, ExecutionEnvironmentCapabilities, ExecutionEnvironmentDescriptor, ExecutionEnvironmentPlatform, ExecutionEnvironmentPlatformArch, ExecutionEnvironmentPlatformOs, ExternalLauncherBrowserSpawnError, ExternalLauncherCommandNotFoundError, ExternalLauncherEditorSpawnError, ExternalLauncherError, ExternalLauncherUnknownEditorError, ExternalLauncherUnsupportedEditorError, FILL_PREVIEW_VIEWPORT, FilesystemBrowseEntry, FilesystemBrowseError, FilesystemBrowseFailure, FilesystemBrowseInput, FilesystemBrowseResult, GitActionProgressEvent, GitActionProgressKind, GitActionProgressPhase, GitActionProgressStream, GitCommandError, GitManagerError, GitManagerServiceError, GitPreparePullRequestThreadInput, GitPreparePullRequestThreadResult, GitPullRequestMaterializationError, GitPullRequestRefInput, GitResolvePullRequestResult, GitRunStackedActionInput, GitRunStackedActionResult, GitRunStackedActionToastRunAction, GitStackedAction, GlassOpacity, GrokSettings, HostPowerSnapshot, HostPowerSource, HostPowerThermalState, IsoDateTime, ItemLifecyclePayload, KeybindingCommand, KeybindingRule, KeybindingShortcut, KeybindingValue, KeybindingWhen, KeybindingWhenNode, KeybindingsConfig, KeybindingsConfigError, LaunchEditorInput, MAX_GLASS_OPACITY, MAX_KEYBINDINGS_COUNT, MAX_KEYBINDING_VALUE_LENGTH, MAX_KEYBINDING_WHEN_LENGTH, MAX_SCRIPT_ID_LENGTH, MAX_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, MAX_SIDEBAR_THREAD_PREVIEW_COUNT, MAX_WHEN_EXPRESSION_DEPTH, MIN_GLASS_OPACITY, MIN_SIDEBAR_AUTO_SETTLE_AFTER_DAYS, MIN_SIDEBAR_THREAD_PREVIEW_COUNT, MODEL_PICKER_JUMP_KEYBINDING_COMMANDS, MODEL_PICKER_KEYBINDING_COMMANDS, MODEL_SLUG_ALIASES_BY_PROVIDER, MessageId, ModelCapabilities, ModelSelection, NonNegativeInt, ORCHESTRATION_WS_METHODS, ObservabilitySettings, OpenCodeSettings, OrchestrationActorKind, OrchestrationAggregateKind, OrchestrationCheckpointFile, OrchestrationCheckpointStatus, OrchestrationCheckpointSummary, OrchestrationCommand, OrchestrationCommandReceiptStatus, OrchestrationDispatchCommandError, OrchestrationEvent, OrchestrationEventMetadata, OrchestrationEventType, OrchestrationGetFullThreadDiffError, OrchestrationGetFullThreadDiffInput, OrchestrationGetFullThreadDiffResult, OrchestrationGetSnapshotError, OrchestrationGetTurnDiffError, OrchestrationGetTurnDiffInput, OrchestrationGetTurnDiffResult, OrchestrationLatestTurn, OrchestrationMessage, OrchestrationMessageRole, OrchestrationProject, OrchestrationProjectShell, OrchestrationProposedPlan, OrchestrationProposedPlanId, OrchestrationReadModel, OrchestrationRpcSchemas, OrchestrationSession, OrchestrationSessionStatus, OrchestrationShellSnapshot, OrchestrationShellStreamEvent, OrchestrationShellStreamItem, OrchestrationSubscribeShellInput, OrchestrationSubscribeThreadInput, OrchestrationThread, OrchestrationThreadActivity, OrchestrationThreadActivityTone, OrchestrationThreadDetailSnapshot, OrchestrationThreadShell, OrchestrationThreadStreamItem, PREFERRED_DEFAULT_CODEX_MODELS, PREVIEW_AUTOMATION_OPERATIONS, PREVIEW_AUTOMATION_V1_OPERATIONS, PREVIEW_VIEWPORT_MAX_AREA, PREVIEW_VIEWPORT_MAX_DIMENSION, PREVIEW_VIEWPORT_MIN_DIMENSION, PREVIEW_VIEWPORT_PRESET_IDS, PRIMARY_LOCAL_ENVIRONMENT_ID, PROVIDER_DISPLAY_NAMES, PROVIDER_SEND_TURN_MAX_ATTACHMENTS, PROVIDER_SEND_TURN_MAX_IMAGE_BYTES, PROVIDER_SEND_TURN_MAX_INPUT_CHARS, PersistedSavedEnvironmentRecordSchema, PickFolderOptionsSchema, PickedElementPayloadSchema, PickedElementStackFrameSchema, PortSchema, PositiveInt, PreviewAnnotationElementTargetSchema, PreviewAnnotationPayloadSchema, PreviewAnnotationPointSchema, PreviewAnnotationRectSchema, PreviewAnnotationRegionTargetSchema, PreviewAnnotationScreenshotSchema, PreviewAnnotationStrokeTargetSchema, PreviewAnnotationStyleChangeSchema, PreviewAutomationActionEvent, PreviewAutomationClickInput, PreviewAutomationClientDisconnectedError, PreviewAutomationClientId, PreviewAutomationColorScheme, PreviewAutomationConnectionId, PreviewAutomationConsoleEntry, PreviewAutomationControlInterruptedError, PreviewAutomationElement, PreviewAutomationError, PreviewAutomationEvaluateInput, PreviewAutomationExecutionError, PreviewAutomationHost, PreviewAutomationHostFocus, PreviewAutomationHostIdentity, PreviewAutomationInvalidSelectorError, PreviewAutomationMalformedResponseError, PreviewAutomationNavigateInput, PreviewAutomationNetworkEntry, PreviewAutomationNoAvailableHostError, PreviewAutomationOpenInput, PreviewAutomationOperation, PreviewAutomationPressInput, PreviewAutomationRecordingArtifact, PreviewAutomationRecordingStatus, PreviewAutomationRemoteUnavailableError, PreviewAutomationRequest, PreviewAutomationRequestQueueClosedError, PreviewAutomationResizeInput, PreviewAutomationResizeResult, PreviewAutomationResponse, PreviewAutomationResultTooLargeError, PreviewAutomationScrollInput, PreviewAutomationSetColorSchemeInput, PreviewAutomationSetColorSchemeResult, PreviewAutomationSnapshot, PreviewAutomationStatus, PreviewAutomationStreamEvent, PreviewAutomationTabNotFoundError, PreviewAutomationTabTargetInput, PreviewAutomationTargetNotEditableError, PreviewAutomationTimeoutError, PreviewAutomationTypeInput, PreviewAutomationUnavailableError, PreviewAutomationUnsupportedClientError, PreviewAutomationWaitForInput, PreviewCloseInput, PreviewError, PreviewEvent, PreviewInvalidUrlError, PreviewListInput, PreviewListResult, PreviewNavStatus, PreviewNavigateInput, PreviewOpenInput, PreviewRefreshInput, PreviewRenderedViewportSize, PreviewReportStatusInput, PreviewResizeInput, PreviewSessionLookupError, PreviewSessionSnapshot, PreviewTabId, PreviewUrlResolution, PreviewViewportPresetId, PreviewViewportSetting, PreviewViewportSize, ProjectCreateCommand, ProjectCreatedPayload, ProjectDeletedPayload, ProjectEntriesFailure, ProjectEntry, ProjectFileFailure, ProjectFileOperation, ProjectId, ProjectListEntriesError, ProjectListEntriesInput, ProjectListEntriesResult, ProjectMetaUpdatedPayload, ProjectReadFileError, ProjectReadFileInput, ProjectReadFileResult, ProjectScript, ProjectScriptIcon, ProjectSearchEntriesError, ProjectSearchEntriesInput, ProjectSearchEntriesResult, ProjectWriteFileError, ProjectWriteFileInput, ProjectWriteFileResult, ProjectionPendingApprovalDecision, ProjectionPendingApprovalStatus, ProviderApprovalDecision, ProviderApprovalPolicy, ProviderDriverKind, ProviderEvent, ProviderInstanceConfig, ProviderInstanceConfigMap, ProviderInstanceEnvironment, ProviderInstanceEnvironmentVariable, ProviderInstanceEnvironmentVariableName, ProviderInstanceId, ProviderInstanceRef, ProviderInteractionMode, ProviderInterruptTurnInput, ProviderItemId, ProviderOptionChoice, ProviderOptionDescriptor, ProviderOptionDescriptorType, ProviderOptionSelection, ProviderOptionSelectionValue, ProviderOptionSelections, ProviderRequestKind, ProviderRespondToRequestInput, ProviderRespondToUserInputInput, ProviderRuntimeEvent, ProviderRuntimeEventV2, ProviderRuntimeTurnStatus, ProviderSandboxMode, ProviderSendTurnInput, ProviderSession, ProviderSessionRuntimeStatus, ProviderSessionStartInput, ProviderStopSessionInput, ProviderTurnStartResult, ProviderUserInputAnswers, RESOURCE_MONITOR_PROTOCOL_VERSION, RelayClientInstallFailedError, RelayClientInstallFailureReasonSchema, RelayClientInstallProgressEventSchema, RelayClientInstallProgressStageSchema, RelayClientStatusSchema, RepositoryIdentity, RepositoryIdentityLocator, ResolvedKeybindingRule, ResolvedKeybindingsConfig, ResourceAttributionEntry, ResourceAttributionSnapshot, ResourceMonitorCapabilities, ResourceMonitorCommand, ResourceMonitorConfigureCommand, ResourceMonitorErrorEvent, ResourceMonitorEvent, ResourceMonitorExternalProcess, ResourceMonitorHelloEvent, ResourceMonitorHistoryChunkEvent, ResourceMonitorProcessSample, ResourceMonitorReadHistoryCommand, ResourceMonitorSampleNowCommand, ResourceMonitorSetExternalProcessesCommand, ResourceMonitorSetSampleIntervalCommand, ResourceMonitorSetStreamingCommand, ResourceMonitorShutdownCommand, ResourceMonitorSnapshotEvent, ResourceTelemetryAggregate, ResourceTelemetryGroups, ResourceTelemetryHealth, ResourceTelemetryHistory, ResourceTelemetryHistoryBucket, ResourceTelemetryHistoryInput, ResourceTelemetryIoSemantics, ResourceTelemetryProcess, ResourceTelemetryProcessCategory, ResourceTelemetryProcessIdentity, ResourceTelemetryProcessSummary, ResourceTelemetryRetryResult, ResourceTelemetrySnapshot, ResourceTelemetrySourceHealth, ResourceTelemetrySourceStatus, ReviewDiffPreviewError, ReviewDiffPreviewInput, ReviewDiffPreviewResult, ReviewDiffPreviewSource, ReviewDiffPreviewSourceKind, RpcClientId, RuntimeEventRaw, RuntimeItemId, RuntimeMode, RuntimeRequestId, RuntimeSessionId, RuntimeTaskId, SCRIPT_RUN_COMMAND_PATTERN, ScopedProjectRef, ScopedThreadRef, ScopedThreadSessionRef, SelectProviderOptionDescriptor, ServerAuthBootstrapMethod, ServerAuthDescriptor, ServerAuthPolicy, ServerAuthSessionMethod, ServerConfig, ServerConfigIssue, ServerConfigKeybindingsUpdatedPayload, ServerConfigProviderStatusesPayload, ServerConfigSettingsUpdatedPayload, ServerConfigStreamEvent, ServerConfigStreamKeybindingsUpdatedEvent, ServerConfigStreamProviderStatusesEvent, ServerConfigStreamSettingsUpdatedEvent, ServerConfigStreamSnapshotEvent, ServerConfigUpdatedPayload, ServerLifecycleReadyPayload, ServerLifecycleStreamEvent, ServerLifecycleStreamReadyEvent, ServerLifecycleStreamWelcomeEvent, ServerLifecycleWelcomePayload, ServerObservability, ServerProcessDiagnosticsEntry, ServerProcessDiagnosticsResult, ServerProcessResourceHistoryBucket, ServerProcessResourceHistoryFailureTag, ServerProcessResourceHistoryInput, ServerProcessResourceHistoryResult, ServerProcessResourceHistorySummary, ServerProcessSignal, ServerProvider, ServerProviderAuth, ServerProviderAuthStatus, ServerProviderAvailability, ServerProviderContinuation, ServerProviderModel, ServerProviderSkill, ServerProviderSlashCommand, ServerProviderSlashCommandInput, ServerProviderState, ServerProviderUpdateError, ServerProviderUpdateInput, ServerProviderUpdateState, ServerProviderUpdateStatus, ServerProviderUpdatedPayload, ServerProviderVersionAdvisory, ServerProviderVersionAdvisoryStatus, ServerProviders, ServerRemoveKeybindingInput, ServerRemoveKeybindingResult, ServerSelfUpdateCapability, ServerSelfUpdateError, ServerSelfUpdateInput, ServerSelfUpdateMethod, ServerSelfUpdateResult, ServerSettings, ServerSettingsError, ServerSettingsOperation, ServerSettingsPatch, ServerSignalProcessInput, ServerSignalProcessResult, ServerTraceDiagnosticsErrorKind, ServerTraceDiagnosticsFailureSummary, ServerTraceDiagnosticsLogEvent, ServerTraceDiagnosticsRecentFailure, ServerTraceDiagnosticsResult, ServerTraceDiagnosticsSpanOccurrence, ServerTraceDiagnosticsSpanSummary, ServerUpsertKeybindingInput, ServerUpsertKeybindingResult, SidebarAutoSettleAfterDays, SidebarProjectGroupingMode, SidebarProjectSortOrder, SidebarThreadPreviewCount, SidebarThreadSortOrder, SourceControlCloneProtocol, SourceControlCloneRepositoryInput, SourceControlCloneRepositoryResult, SourceControlDiscoveryResult, SourceControlDiscoveryStatus, SourceControlProviderAuth, SourceControlProviderAuthStatus, SourceControlProviderDiscoveryItem, SourceControlProviderError, SourceControlProviderInfo, SourceControlProviderKind, SourceControlPublishRepositoryInput, SourceControlPublishRepositoryResult, SourceControlPublishStatus, SourceControlRepositoryCloneUrls, SourceControlRepositoryError, SourceControlRepositoryInfo, SourceControlRepositoryLookupInput, SourceControlRepositoryVisibility, SourceControlWritingStyleMode, SourceControlWritingStyleSettings, T3ProjectFile, T3ProjectFileScript, T3_PROJECT_FILE_NAME, T3_PROJECT_FILE_SCHEMA_URL, THREAD_JUMP_KEYBINDING_COMMANDS, THREAD_KEYBINDING_COMMANDS, TOOL_LIFECYCLE_ITEM_TYPES, TerminalAttachInput, TerminalAttachStreamEvent, TerminalClearInput, TerminalCloseInput, TerminalCwdError, TerminalCwdNotDirectoryError, TerminalCwdNotFoundError, TerminalCwdStatError, TerminalError, TerminalEvent, TerminalHistoryError, TerminalMetadataStreamEvent, TerminalNotRunningError, TerminalOpenInput, TerminalResizeError, TerminalResizeInput, TerminalRestartInput, TerminalSessionLookupError, TerminalSessionSnapshot, TerminalSessionStatus, TerminalSummary, TerminalThreadInput, TerminalWriteError, TerminalWriteInput, TextGenerationError, ThreadActivityAppendedPayload, ThreadApprovalResponseRequestedPayload, ThreadArchivedPayload, ThreadCheckpointRevertRequestedPayload, ThreadCreatedPayload, ThreadDeletedPayload, ThreadEnvMode, ThreadId, ThreadInteractionModeSetPayload, ThreadMessageSentPayload, ThreadMetaUpdatedPayload, ThreadProposedPlanUpsertedPayload, ThreadRevertedPayload, ThreadRuntimeModeSetPayload, ThreadSessionSetPayload, ThreadSessionStopRequestedPayload, ThreadSettledPayload, ThreadSnoozedPayload, ThreadTokenUsageSnapshot, ThreadTurnDiff, ThreadTurnDiffCompletedPayload, ThreadTurnInterruptRequestedPayload, ThreadTurnStartCommand, ThreadTurnStartRequestedPayload, ThreadUnarchivedPayload, ThreadUnsettledPayload, ThreadUnsnoozedPayload, TimestampFormat, ToolLifecycleItemType, TrimmedNonEmptyString, TrimmedString, TurnCountRange, TurnId, UserInputQuestion, VcsCreateRefInput, VcsCreateRefResult, VcsCreateWorktreeInput, VcsCreateWorktreeResult, VcsDiscoveryItem, VcsDriverCapabilities, VcsDriverKind, VcsError, VcsFreshness, VcsFreshnessSource, VcsInitInput, VcsListRefsInput, VcsListRefsResult, VcsListRemotesResult, VcsListWorkspaceFilesResult, VcsOutputDecodeError, VcsProcessExitError, VcsProcessExitFailureKind, VcsProcessMissingExitCodeError, VcsProcessOutputLimitError, VcsProcessOutputReadError, VcsProcessSpawnError, VcsProcessStdinWriteError, VcsProcessTimeoutError, VcsPullInput, VcsPullResult, VcsRef, VcsRemote, VcsRemoveWorktreeInput, VcsRepositoryDetectionError, VcsRepositoryIdentity, VcsStatusInput, VcsStatusLocalResult, VcsStatusRemoteResult, VcsStatusResult, VcsStatusStreamEvent, VcsSwitchRefInput, VcsSwitchRefResult, VcsUnsupportedOperationError, WS_METHODS, WsAssetsCreateUrlRpc, WsCloudGetRelayClientStatusRpc, WsCloudInstallRelayClientRpc, WsFilesystemBrowseRpc, WsGitPreparePullRequestThreadRpc, WsGitResolvePullRequestRpc, WsGitRunStackedActionRpc, WsOrchestrationDispatchCommandRpc, WsOrchestrationGetArchivedShellSnapshotRpc, WsOrchestrationGetFullThreadDiffRpc, WsOrchestrationGetTurnDiffRpc, WsOrchestrationSubscribeShellRpc, WsOrchestrationSubscribeThreadRpc, WsPreviewAutomationConnectRpc, WsPreviewAutomationFocusHostRpc, WsPreviewAutomationRespondRpc, WsPreviewCloseRpc, WsPreviewListRpc, WsPreviewNavigateRpc, WsPreviewOpenRpc, WsPreviewRefreshRpc, WsPreviewReportStatusRpc, WsPreviewResizeRpc, WsProjectsListEntriesRpc, WsProjectsReadFileRpc, WsProjectsSearchEntriesRpc, WsProjectsWriteFileRpc, WsReviewGetDiffPreviewRpc, WsRpcGroup, WsServerDiscoverSourceControlRpc, WsServerGetBackgroundPolicyRpc, WsServerGetConfigRpc, WsServerGetProcessDiagnosticsRpc, WsServerGetProcessResourceHistoryRpc, WsServerGetResourceTelemetryHistoryRpc, WsServerGetSettingsRpc, WsServerGetTraceDiagnosticsRpc, WsServerProbeRpc, WsServerRefreshProvidersRpc, WsServerRemoveKeybindingRpc, WsServerReportClientActivityRpc, WsServerReportHostPowerStateRpc, WsServerRetryResourceTelemetryRpc, WsServerSignalProcessRpc, WsServerUpdateProviderRpc, WsServerUpdateServerRpc, WsServerUpdateSettingsRpc, WsServerUpsertKeybindingRpc, WsShellOpenInEditorRpc, WsSourceControlCloneRepositoryRpc, WsSourceControlLookupRepositoryRpc, WsSourceControlPublishRepositoryRpc, WsSubscribeAuthAccessRpc, WsSubscribeBackgroundPolicyRpc, WsSubscribeDiscoveredLocalServersRpc, WsSubscribePreviewEventsRpc, WsSubscribeResourceTelemetryRpc, WsSubscribeServerConfigRpc, WsSubscribeServerLifecycleRpc, WsSubscribeTerminalEventsRpc, WsSubscribeTerminalMetadataRpc, WsSubscribeVcsStatusRpc, WsTerminalAttachRpc, WsTerminalClearRpc, WsTerminalCloseRpc, WsTerminalOpenRpc, WsTerminalResizeRpc, WsTerminalRestartRpc, WsTerminalWriteRpc, WsVcsCreateRefRpc, WsVcsCreateWorktreeRpc, WsVcsInitRpc, WsVcsListRefsRpc, WsVcsPullRpc, WsVcsRefreshStatusRpc, WsVcsRemoveWorktreeRpc, WsVcsSwitchRefRpc, defaultInstanceIdForDriver, isExternalLauncherError, isProviderAvailable, isProviderDriverKind, isToolLifecycleItemType, makeProviderSettingsSchema };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "t3code-cli",
3
- "version": "0.11.0",
3
+ "version": "0.13.0",
4
4
  "description": "CLI for t3code",
5
5
  "keywords": [
6
6
  "claude",
@@ -27,82 +27,87 @@
27
27
  ],
28
28
  "type": "module",
29
29
  "types": "./dist/src/index.d.ts",
30
- "imports": {
31
- "#t3tools/contracts": {
32
- "types": "./dist/upstream-t3code/packages/contracts/src/index.d.ts",
33
- "default": "./dist/upstream-t3code/packages/contracts/src/index.d.ts"
34
- }
35
- },
36
30
  "exports": {
37
31
  ".": {
38
32
  "types": "./dist/src/index.d.ts",
33
+ "import": "./dist/index.js",
39
34
  "default": "./dist/index.js"
40
35
  },
41
36
  "./application": {
42
37
  "types": "./dist/src/application/index.d.ts",
38
+ "import": "./dist/application.js",
43
39
  "default": "./dist/application.js"
44
40
  },
45
41
  "./auth": {
46
42
  "types": "./dist/src/auth/index.d.ts",
43
+ "import": "./dist/auth.js",
47
44
  "default": "./dist/auth.js"
48
45
  },
49
46
  "./cli": {
50
47
  "types": "./dist/src/cli/index.d.ts",
48
+ "import": "./dist/cli.js",
51
49
  "default": "./dist/cli.js"
52
50
  },
53
51
  "./config": {
54
52
  "types": "./dist/src/config/index.d.ts",
53
+ "import": "./dist/config.js",
55
54
  "default": "./dist/config.js"
56
55
  },
57
56
  "./connection": {
58
57
  "types": "./dist/src/connection/index.d.ts",
58
+ "import": "./dist/connection.js",
59
59
  "default": "./dist/connection.js"
60
60
  },
61
61
  "./contracts": {
62
62
  "types": "./dist/src/contracts/index.d.ts",
63
+ "import": "./dist/contracts.js",
63
64
  "default": "./dist/contracts.js"
64
65
  },
65
- "./t3tools": {
66
- "types": "./dist/upstream-t3code/packages/contracts/src/index.d.ts",
67
- "default": "./dist/t3tools.js"
68
- },
69
- "./layout": {
70
- "types": "./dist/src/layout/index.d.ts",
71
- "default": "./dist/layout.js"
72
- },
73
66
  "./node": {
74
67
  "types": "./dist/src/node/index.d.ts",
68
+ "import": "./dist/node.js",
75
69
  "default": "./dist/node.js"
76
70
  },
77
71
  "./orchestration": {
78
72
  "types": "./dist/src/orchestration/index.d.ts",
73
+ "import": "./dist/orchestration.js",
79
74
  "default": "./dist/orchestration.js"
80
75
  },
81
76
  "./rpc": {
82
77
  "types": "./dist/src/rpc/index.d.ts",
78
+ "import": "./dist/rpc.js",
83
79
  "default": "./dist/rpc.js"
84
80
  },
85
81
  "./runtime": {
86
82
  "types": "./dist/src/runtime/index.d.ts",
83
+ "import": "./dist/runtime.js",
87
84
  "default": "./dist/runtime.js"
88
85
  },
89
- "./scope": {
90
- "types": "./dist/src/scope/index.d.ts",
91
- "default": "./dist/scope.js"
92
- }
86
+ "./t3tools": {
87
+ "types": "./dist/src/t3tools/index.d.ts",
88
+ "import": "./dist/t3tools.js",
89
+ "default": "./dist/t3tools.js"
90
+ },
91
+ "./package.json": "./package.json"
93
92
  },
94
93
  "dependencies": {
95
94
  "@effect/platform-node": "4.0.0-beta.78",
96
- "effect": "4.0.0-beta.78"
95
+ "@napi-rs/keyring": "^1.3.0",
96
+ "effect": "4.0.0-beta.78",
97
+ "marked": "^15.0.12",
98
+ "marked-terminal": "^7.3.0",
99
+ "string-width": "^8.2.2",
100
+ "wrap-ansi": "^10.0.0"
97
101
  },
98
102
  "devDependencies": {
99
- "@changesets/cli": "^2.31.0",
103
+ "@changesets/cli": "^2.31.1",
100
104
  "@effect/vitest": "4.0.0-beta.78",
105
+ "@t3tools/client-runtime": "link:upstream-t3code/packages/client-runtime",
101
106
  "@total-typescript/shoehorn": "^0.1.2",
102
- "@types/node": "^25.9.1",
103
- "typescript": "^6.0.3",
104
- "vite-plus": "^0.1.24",
105
- "@t3tools/contracts": "0.0.24"
107
+ "@types/node": "^26.1.2",
108
+ "typescript": "^7.0.2",
109
+ "vite-plus": "^0.2.6",
110
+ "@t3tools/contracts": "0.0.30"
106
111
  },
107
112
  "engines": {
108
113
  "node": ">=24.0.0"