t3code-cli 0.11.0 → 0.12.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.
- package/README.md +42 -10
- package/dist/application.js +2 -2
- package/dist/auth.js +1 -1
- package/dist/bin.js +85526 -2662
- package/dist/cli.js +15 -2
- package/dist/config.js +120 -2
- package/dist/connection.js +2 -2
- package/dist/index.js +1 -1
- package/dist/node.js +6 -2
- package/dist/orchestration.js +2 -2
- package/dist/rpc.js +1 -1
- package/dist/runtime.js +2 -2
- package/dist/shared.js +42956 -38119
- package/dist/src/application/actions.d.ts +25 -0
- package/dist/src/application/index.d.ts +3 -3
- package/dist/src/application/layer.d.ts +51 -35
- package/dist/src/application/model-selection.d.ts +2 -2
- package/dist/src/application/models.d.ts +1 -1
- package/dist/src/application/project-commands.d.ts +22 -2
- package/dist/src/application/projects.d.ts +7 -7
- package/dist/src/application/service.d.ts +65 -2
- package/dist/src/application/shell-sequence.d.ts +11 -0
- package/dist/src/application/terminals.d.ts +2 -2
- package/dist/src/application/thread-commands.d.ts +1 -1
- package/dist/src/application/thread-wait.d.ts +9 -0
- package/dist/src/application/threads.d.ts +56 -5
- package/dist/src/auth/error.d.ts +2 -1
- package/dist/src/auth/index.d.ts +1 -1
- package/dist/src/auth/layer.d.ts +34 -6
- package/dist/src/auth/local-base-dir.d.ts +5 -2
- package/dist/src/auth/local-origin.d.ts +3 -3
- package/dist/src/auth/local-token.d.ts +3 -3
- package/dist/src/auth/service.d.ts +15 -3
- package/dist/src/auth/type.d.ts +40 -1
- package/dist/src/cli/env/flag.d.ts +2 -0
- package/dist/src/cli/env/index.d.ts +2 -0
- package/dist/src/cli/env/selection-layer.d.ts +3 -0
- package/dist/src/cli/flags.d.ts +2 -0
- package/dist/src/cli/format/index.d.ts +1 -0
- package/dist/src/cli/format/output.d.ts +12 -0
- package/dist/src/cli/index.d.ts +4 -0
- package/dist/src/cli/runtime/index.d.ts +1 -0
- package/dist/src/cli/runtime/service.d.ts +16 -0
- package/dist/src/{scope → cli/scope}/resolve.d.ts +5 -4
- package/dist/src/config/config.d.ts +49 -0
- package/dist/src/config/credential/cipher-node.d.ts +3 -0
- package/dist/src/config/credential/cipher-web.d.ts +3 -0
- package/dist/src/config/credential/cipher.d.ts +29 -0
- package/dist/src/config/credential/env.d.ts +3 -0
- package/dist/src/config/credential/error.d.ts +8 -0
- package/dist/src/config/credential/index.d.ts +6 -0
- package/dist/src/config/credential/service.d.ts +34 -0
- package/dist/src/config/env/env.d.ts +55 -0
- package/dist/src/config/env/index.d.ts +2 -0
- package/dist/src/{layout/base-dir.d.ts → config/env/layout.d.ts} +0 -1
- package/dist/src/config/environment-name/index.d.ts +1 -0
- package/dist/src/config/environment-name/name.d.ts +10 -0
- package/dist/src/config/error.d.ts +4 -11
- package/dist/src/config/index.d.ts +10 -5
- package/dist/src/config/keystore/error.d.ts +8 -0
- package/dist/src/config/keystore/file.d.ts +9 -0
- package/dist/src/config/keystore/index.d.ts +4 -0
- package/dist/src/config/keystore/keyring-node.d.ts +4 -0
- package/dist/src/config/keystore/service.d.ts +33 -0
- package/dist/src/config/paths/index.d.ts +1 -0
- package/dist/src/config/paths/paths.d.ts +6 -0
- package/dist/src/config/persist/file-mode.d.ts +4 -0
- package/dist/src/config/persist/migration.d.ts +68 -0
- package/dist/src/config/persist/persist.d.ts +40 -0
- package/dist/src/config/persist/schema.d.ts +68 -0
- package/dist/src/config/resolve/resolve.d.ts +40 -0
- package/dist/src/config/selection/index.d.ts +1 -0
- package/dist/src/config/selection/resolve.d.ts +4 -0
- package/dist/src/config/selection/service.d.ts +10 -0
- package/dist/src/config/types.d.ts +36 -0
- package/dist/src/config/url/error.d.ts +10 -0
- package/dist/src/config/url/index.d.ts +2 -0
- package/dist/src/connection/index.d.ts +0 -1
- package/dist/src/contracts/index.d.ts +1 -1
- package/dist/src/domain/error.d.ts +14 -1
- package/dist/src/domain/helpers.d.ts +16 -1
- package/dist/src/domain/model-config.d.ts +4 -1
- package/dist/src/domain/thread-activities.d.ts +1 -1
- package/dist/src/domain/thread-lifecycle.d.ts +10 -1
- package/dist/src/index.d.ts +1 -2
- package/dist/src/{connection/node.d.ts → node/connection.d.ts} +1 -1
- package/dist/src/node/index.d.ts +1 -2
- package/dist/src/orchestration/index.d.ts +0 -1
- package/dist/src/orchestration/layer.d.ts +153 -7
- package/dist/src/orchestration/service.d.ts +1 -1
- package/dist/src/rpc/error.d.ts +2 -2
- package/dist/src/rpc/index.d.ts +2 -3
- package/dist/src/rpc/layer.d.ts +574 -46
- package/dist/src/rpc/operation.d.ts +574 -46
- package/dist/src/rpc/ws-group.d.ts +184 -19
- package/dist/src/runtime/index.d.ts +1 -2
- package/dist/src/runtime/layer.d.ts +12 -8
- package/dist/src/t3tools/index.d.ts +1 -1
- package/dist/t3tools.js +2 -2
- package/package.json +25 -21
- package/src/application/actions.test.ts +328 -0
- package/src/application/actions.ts +475 -0
- package/src/application/index.ts +9 -5
- package/src/application/layer.ts +9 -0
- package/src/application/model-selection.ts +2 -2
- package/src/application/project-commands.ts +23 -5
- package/src/application/projects.ts +6 -7
- package/src/application/service.ts +79 -1
- package/src/application/shell-sequence.ts +1 -1
- package/src/application/terminals.ts +2 -1
- package/src/application/thread-commands.ts +1 -1
- package/src/application/thread-update.ts +1 -1
- package/src/application/thread-wait.ts +1 -1
- package/src/application/threads.test.ts +9 -3
- package/src/application/threads.ts +6 -6
- package/src/auth/error.ts +2 -1
- package/src/auth/index.ts +7 -0
- package/src/auth/layer.test-utils.ts +34 -0
- package/src/auth/layer.ts +116 -34
- package/src/auth/local-base-dir.ts +13 -6
- package/src/auth/local-origin.ts +10 -7
- package/src/auth/local-token.ts +28 -23
- package/src/auth/service.test.ts +200 -0
- package/src/auth/service.ts +27 -3
- package/src/auth/transport.ts +2 -2
- package/src/auth/type.ts +47 -1
- package/src/bin.ts +24 -6
- package/src/cli/action-format.ts +110 -0
- package/src/cli/action.ts +398 -0
- package/src/cli/app.ts +6 -0
- package/src/cli/auth.ts +76 -23
- package/src/cli/env/flag.ts +8 -0
- package/src/cli/env/index.ts +2 -0
- package/src/cli/env/selection-layer.test.ts +49 -0
- package/src/cli/env/selection-layer.ts +27 -0
- package/src/cli/env.ts +107 -0
- package/src/cli/extra-args.test.ts +32 -0
- package/src/cli/extra-args.ts +22 -0
- package/src/cli/flags.ts +11 -1
- package/src/cli/format/auth.ts +92 -0
- package/src/cli/format/human.ts +131 -0
- package/src/cli/format/index.ts +12 -0
- package/src/cli/format/model.ts +29 -0
- package/src/cli/format/output.ts +51 -0
- package/src/cli/format/project.ts +32 -0
- package/src/cli/format/terminal.ts +87 -0
- package/src/cli/{thread-format.test.ts → format/thread.test.ts} +6 -4
- package/src/cli/format/thread.ts +185 -0
- package/src/cli/index.ts +20 -0
- package/src/cli/interaction/confirm.ts +64 -0
- package/src/cli/{self-action.ts → interaction/self-action.ts} +8 -6
- package/src/cli/message-input.ts +1 -1
- package/src/cli/model.ts +9 -5
- package/src/cli/project.ts +13 -7
- package/src/cli/projects/delete.ts +13 -12
- package/src/cli/require.ts +9 -7
- package/src/cli/runtime/index.ts +1 -0
- package/src/cli/runtime/service.ts +28 -0
- package/src/{scope → cli/scope}/resolve.ts +11 -9
- package/src/cli/terminal/attach.ts +3 -6
- package/src/cli/terminal/create.ts +10 -9
- package/src/cli/terminal/destroy.ts +13 -11
- package/src/cli/terminal/list.ts +10 -9
- package/src/cli/terminal/read.test-utils.ts +48 -0
- package/src/cli/terminal/read.test.ts +35 -0
- package/src/cli/terminal/read.ts +3 -6
- package/src/cli/terminal/scope.ts +10 -5
- package/src/cli/terminal/shared.ts +1 -1
- package/src/cli/terminal/stream.ts +3 -6
- package/src/cli/terminal/wait.test.ts +5 -3
- package/src/cli/terminal/wait.ts +10 -9
- package/src/cli/terminal/write.test.ts +34 -0
- package/src/cli/terminal/write.ts +10 -9
- package/src/cli/threads/approve.ts +11 -7
- package/src/cli/threads/archive.ts +14 -9
- package/src/cli/threads/callback.ts +6 -4
- package/src/cli/threads/delete.ts +17 -11
- package/src/cli/threads/interrupt.ts +14 -9
- package/src/cli/threads/list.test.ts +5 -3
- package/src/cli/threads/list.ts +10 -10
- package/src/cli/threads/messages.ts +11 -7
- package/src/cli/threads/respond.ts +11 -7
- package/src/cli/threads/send.ts +19 -9
- package/src/cli/threads/show.ts +11 -7
- package/src/cli/threads/start.ts +18 -13
- package/src/cli/threads/unarchive.ts +11 -7
- package/src/cli/threads/update.ts +14 -9
- package/src/cli/threads/wait.ts +11 -7
- package/src/cli/wait-events.ts +1 -1
- package/src/config/config.ts +260 -0
- package/src/config/credential/cipher-node.ts +40 -0
- package/src/config/credential/cipher-web.ts +82 -0
- package/src/config/credential/cipher.ts +39 -0
- package/src/config/credential/env.ts +13 -0
- package/src/config/credential/error.ts +9 -0
- package/src/config/credential/index.ts +6 -0
- package/src/config/credential/service.test-utils.ts +25 -0
- package/src/config/credential/service.test.ts +116 -0
- package/src/config/credential/service.ts +205 -0
- package/src/config/env/env.test-utils.ts +14 -0
- package/src/config/env/env.ts +81 -0
- package/src/config/env/index.ts +2 -0
- package/src/{layout/base-dir.ts → config/env/layout.ts} +0 -9
- package/src/config/environment-name/index.ts +7 -0
- package/src/config/environment-name/name.test.ts +66 -0
- package/src/config/environment-name/name.ts +49 -0
- package/src/config/error.ts +6 -8
- package/src/config/index.ts +16 -5
- package/src/config/keystore/error.ts +9 -0
- package/src/config/keystore/file.ts +96 -0
- package/src/config/keystore/index.ts +4 -0
- package/src/config/keystore/keyring-node.test.ts +12 -0
- package/src/config/keystore/keyring-node.ts +100 -0
- package/src/config/keystore/service.test-utils.ts +15 -0
- package/src/config/keystore/service.test.ts +18 -0
- package/src/config/keystore/service.ts +29 -0
- package/src/config/layer.test-utils.ts +45 -0
- package/src/config/layer.test.ts +209 -0
- package/src/config/paths/index.ts +1 -0
- package/src/config/paths/paths.ts +36 -0
- package/src/config/persist/file-mode.ts +21 -0
- package/src/config/persist/migration.test.ts +71 -0
- package/src/config/persist/migration.ts +82 -0
- package/src/config/persist/persist.test.ts +113 -0
- package/src/config/persist/persist.ts +65 -0
- package/src/config/persist/schema.ts +37 -0
- package/src/config/platform.test-utils.ts +20 -0
- package/src/config/resolve/resolve.test-utils.ts +20 -0
- package/src/config/resolve/resolve.test.ts +137 -0
- package/src/config/resolve/resolve.ts +104 -0
- package/src/config/selection/index.ts +1 -0
- package/src/config/selection/resolve.ts +14 -0
- package/src/config/selection/service.ts +29 -0
- package/src/config/temp-home.test-utils.ts +7 -0
- package/src/config/types.ts +49 -0
- package/src/config/url/error.ts +8 -0
- package/src/config/url/index.ts +7 -0
- package/src/config/url/url.test.ts +31 -0
- package/src/connection/index.ts +0 -1
- package/src/contracts/index.ts +1 -1
- package/src/domain/error.ts +20 -1
- package/src/domain/helpers.test.ts +1 -1
- package/src/domain/helpers.ts +1 -1
- package/src/domain/model-config.ts +1 -1
- package/src/domain/thread-activities.test.ts +1 -1
- package/src/domain/thread-activities.ts +1 -1
- package/src/domain/thread-lifecycle.test.ts +1 -1
- package/src/domain/thread-lifecycle.ts +1 -1
- package/src/effect.test-utils.ts +25 -0
- package/src/index.ts +1 -1
- package/src/{connection/node.ts → node/connection.ts} +1 -1
- package/src/node/index.ts +1 -2
- package/src/orchestration/index.ts +0 -1
- package/src/orchestration/layer.ts +1 -1
- package/src/orchestration/service.ts +1 -1
- package/src/rpc/error.ts +2 -2
- package/src/rpc/index.ts +2 -3
- package/src/rpc/layer.ts +1 -1
- package/src/rpc/ws-group.ts +1 -1
- package/src/runtime/index.ts +2 -1
- package/src/runtime/layer.test-utils.ts +32 -0
- package/src/runtime/layer.test.ts +66 -0
- package/src/runtime/layer.ts +15 -9
- package/src/t3tools/index.ts +1 -1
- package/src/types/marked-terminal.d.ts +11 -0
- package/dist/layout.js +0 -2
- package/dist/scope.js +0 -2
- package/dist/src/cli/output-format.d.ts +0 -11
- package/dist/src/config/layer.d.ts +0 -22
- package/dist/src/config/service.d.ts +0 -22
- package/dist/src/environment/layer.d.ts +0 -3
- package/dist/src/environment/service.d.ts +0 -12
- package/dist/src/layout/index.d.ts +0 -1
- package/dist/upstream-t3code/packages/contracts/src/auth.d.ts +0 -441
- package/dist/upstream-t3code/packages/contracts/src/baseSchemas.d.ts +0 -38
- package/dist/upstream-t3code/packages/contracts/src/desktopBootstrap.d.ts +0 -14
- package/dist/upstream-t3code/packages/contracts/src/editor.d.ts +0 -124
- package/dist/upstream-t3code/packages/contracts/src/environment.d.ts +0 -64
- package/dist/upstream-t3code/packages/contracts/src/environmentHttp.d.ts +0 -762
- package/dist/upstream-t3code/packages/contracts/src/filesystem.d.ts +0 -26
- package/dist/upstream-t3code/packages/contracts/src/git.d.ts +0 -500
- package/dist/upstream-t3code/packages/contracts/src/index.d.ts +0 -25
- package/dist/upstream-t3code/packages/contracts/src/ipc.d.ts +0 -490
- package/dist/upstream-t3code/packages/contracts/src/keybindings.d.ts +0 -133
- package/dist/upstream-t3code/packages/contracts/src/model.d.ts +0 -112
- package/dist/upstream-t3code/packages/contracts/src/orchestration.d.ts +0 -6682
- package/dist/upstream-t3code/packages/contracts/src/project.d.ts +0 -45
- package/dist/upstream-t3code/packages/contracts/src/provider.d.ts +0 -116
- package/dist/upstream-t3code/packages/contracts/src/providerInstance.d.ts +0 -99
- package/dist/upstream-t3code/packages/contracts/src/providerRuntime.d.ts +0 -4276
- package/dist/upstream-t3code/packages/contracts/src/relay.d.ts +0 -1262
- package/dist/upstream-t3code/packages/contracts/src/relayClient.d.ts +0 -48
- package/dist/upstream-t3code/packages/contracts/src/remoteAccess.d.ts +0 -45
- package/dist/upstream-t3code/packages/contracts/src/review.d.ts +0 -37
- package/dist/upstream-t3code/packages/contracts/src/rpc.d.ts +0 -8218
- package/dist/upstream-t3code/packages/contracts/src/server.d.ts +0 -2291
- package/dist/upstream-t3code/packages/contracts/src/settings.d.ts +0 -271
- package/dist/upstream-t3code/packages/contracts/src/sourceControl.d.ts +0 -177
- package/dist/upstream-t3code/packages/contracts/src/terminal.d.ts +0 -330
- package/dist/upstream-t3code/packages/contracts/src/vcs.d.ts +0 -148
- package/src/cli/auth-format.ts +0 -45
- package/src/cli/confirm.ts +0 -31
- package/src/cli/model-format.ts +0 -18
- package/src/cli/output-format.ts +0 -45
- package/src/cli/project-format.ts +0 -18
- package/src/cli/terminal/commands.test.ts +0 -101
- package/src/cli/terminal-format.ts +0 -167
- package/src/cli/thread-format.ts +0 -128
- package/src/config/layer.ts +0 -105
- package/src/config/service.ts +0 -26
- package/src/environment/layer.ts +0 -12
- package/src/environment/service.ts +0 -13
- package/src/layout/index.ts +0 -1
- /package/dist/src/{scope → cli/scope}/index.d.ts +0 -0
- /package/dist/src/config/{url.d.ts → url/url.d.ts} +0 -0
- /package/src/{scope → cli/scope}/index.ts +0 -0
- /package/src/config/{url.ts → url/url.ts} +0 -0
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { EnvironmentAuthorizationError, KeybindingsConfigError, OrchestrationDispatchCommandError, OrchestrationGetSnapshotError, ServerSettingsError, TerminalCwdError, TerminalHistoryError, TerminalNotRunningError, TerminalSessionLookupError } from "
|
|
1
|
+
import { EnvironmentAuthorizationError, KeybindingsConfigError, OrchestrationDispatchCommandError, OrchestrationGetSnapshotError, ServerSettingsError, TerminalCwdError, TerminalHistoryError, TerminalNotRunningError, TerminalSessionLookupError } from "@t3tools/contracts";
|
|
2
2
|
import * as Schema from "effect/Schema";
|
|
3
3
|
import { Rpc, RpcGroup } from "effect/unstable/rpc";
|
|
4
4
|
export declare const FallbackServerConfig: Schema.Struct<{
|
|
@@ -12,6 +12,7 @@ export declare const FallbackServerConfig: Schema.Struct<{
|
|
|
12
12
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
13
13
|
}>>;
|
|
14
14
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
15
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
15
16
|
readonly enabled: Schema.Boolean;
|
|
16
17
|
readonly installed: Schema.Boolean;
|
|
17
18
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -112,7 +113,7 @@ export declare const CliServerConfig: Schema.Union<readonly [Schema.Struct<{
|
|
|
112
113
|
readonly cwd: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
113
114
|
readonly keybindingsConfigPath: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
114
115
|
readonly keybindings: Schema.$Array<Schema.Struct<{
|
|
115
|
-
readonly command: Schema.Union<readonly [Schema.Literals<readonly ["terminal.toggle", "terminal.split", "terminal.new", "terminal.close", "diff.toggle", "commandPalette.toggle", "chat.new", "chat.newLocal", "editor.openFavorite", "modelPicker.toggle", "modelPicker.jump.1", "modelPicker.jump.2", "modelPicker.jump.3", "modelPicker.jump.4", "modelPicker.jump.5", "modelPicker.jump.6", "modelPicker.jump.7", "modelPicker.jump.8", "modelPicker.jump.9", "thread.previous", "thread.next", "thread.jump.1", "thread.jump.2", "thread.jump.3", "thread.jump.4", "thread.jump.5", "thread.jump.6", "thread.jump.7", "thread.jump.8", "thread.jump.9"]>, Schema.TemplateLiteral<readonly [Schema.Literal<"script.">, Schema.NonEmptyString, Schema.Literal<".run">]>]>;
|
|
116
|
+
readonly command: Schema.Union<readonly [Schema.Literals<readonly ["terminal.toggle", "terminal.split", "terminal.splitVertical", "terminal.new", "terminal.close", "rightPanel.toggle", "diff.toggle", "preview.toggle", "preview.refresh", "preview.focusUrl", "preview.zoomIn", "preview.zoomOut", "preview.resetZoom", "commandPalette.toggle", "chat.new", "chat.newLocal", "editor.openFavorite", "modelPicker.toggle", "modelPicker.jump.1", "modelPicker.jump.2", "modelPicker.jump.3", "modelPicker.jump.4", "modelPicker.jump.5", "modelPicker.jump.6", "modelPicker.jump.7", "modelPicker.jump.8", "modelPicker.jump.9", "thread.previous", "thread.next", "thread.jump.1", "thread.jump.2", "thread.jump.3", "thread.jump.4", "thread.jump.5", "thread.jump.6", "thread.jump.7", "thread.jump.8", "thread.jump.9"]>, Schema.TemplateLiteral<readonly [Schema.Literal<"script.">, Schema.NonEmptyString, Schema.Literal<".run">]>]>;
|
|
116
117
|
readonly shortcut: Schema.Struct<{
|
|
117
118
|
readonly key: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
118
119
|
readonly metaKey: Schema.Boolean;
|
|
@@ -126,15 +127,15 @@ export declare const CliServerConfig: Schema.Union<readonly [Schema.Struct<{
|
|
|
126
127
|
readonly name: Schema.NonEmptyString;
|
|
127
128
|
}>, Schema.Struct<{
|
|
128
129
|
readonly type: Schema.Literal<"not">;
|
|
129
|
-
readonly node: Schema.suspend<Schema.Codec<import("
|
|
130
|
+
readonly node: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
130
131
|
}>, Schema.Struct<{
|
|
131
132
|
readonly type: Schema.Literal<"and">;
|
|
132
|
-
readonly left: Schema.suspend<Schema.Codec<import("
|
|
133
|
-
readonly right: Schema.suspend<Schema.Codec<import("
|
|
133
|
+
readonly left: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
134
|
+
readonly right: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
134
135
|
}>, Schema.Struct<{
|
|
135
136
|
readonly type: Schema.Literal<"or">;
|
|
136
|
-
readonly left: Schema.suspend<Schema.Codec<import("
|
|
137
|
-
readonly right: Schema.suspend<Schema.Codec<import("
|
|
137
|
+
readonly left: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
138
|
+
readonly right: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
138
139
|
}>]>>;
|
|
139
140
|
}>>;
|
|
140
141
|
readonly issues: Schema.$Array<Schema.Union<readonly [Schema.Struct<{
|
|
@@ -155,6 +156,7 @@ export declare const CliServerConfig: Schema.Union<readonly [Schema.Struct<{
|
|
|
155
156
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
156
157
|
}>>;
|
|
157
158
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
159
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
158
160
|
readonly enabled: Schema.Boolean;
|
|
159
161
|
readonly installed: Schema.Boolean;
|
|
160
162
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -282,6 +284,11 @@ export declare const CliServerConfig: Schema.Union<readonly [Schema.Struct<{
|
|
|
282
284
|
readonly apiEndpoint: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.String, never, never>, never>;
|
|
283
285
|
readonly customModels: Schema.withDecodingDefault<Schema.$Array<Schema.String>, never>;
|
|
284
286
|
}>, never>;
|
|
287
|
+
readonly grok: Schema.withDecodingDefault<Schema.Struct<{
|
|
288
|
+
readonly enabled: Schema.withDecodingDefault<Schema.Boolean, never>;
|
|
289
|
+
readonly binaryPath: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.decodeTo<Schema.String, Schema.String, never, never>, never, never>, never>;
|
|
290
|
+
readonly customModels: Schema.withDecodingDefault<Schema.$Array<Schema.String>, never>;
|
|
291
|
+
}>, never>;
|
|
285
292
|
readonly opencode: Schema.withDecodingDefault<Schema.Struct<{
|
|
286
293
|
readonly enabled: Schema.withDecodingDefault<Schema.Boolean, never>;
|
|
287
294
|
readonly binaryPath: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.decodeTo<Schema.String, Schema.String, never, never>, never, never>, never>;
|
|
@@ -319,6 +326,7 @@ export declare const CliServerConfig: Schema.Union<readonly [Schema.Struct<{
|
|
|
319
326
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
320
327
|
}>>;
|
|
321
328
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
329
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
322
330
|
readonly enabled: Schema.Boolean;
|
|
323
331
|
readonly installed: Schema.Boolean;
|
|
324
332
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -419,7 +427,7 @@ export declare const WsServerGetConfigRpc: Rpc.Rpc<"server.getConfig", Schema.St
|
|
|
419
427
|
readonly cwd: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
420
428
|
readonly keybindingsConfigPath: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
421
429
|
readonly keybindings: Schema.$Array<Schema.Struct<{
|
|
422
|
-
readonly command: Schema.Union<readonly [Schema.Literals<readonly ["terminal.toggle", "terminal.split", "terminal.new", "terminal.close", "diff.toggle", "commandPalette.toggle", "chat.new", "chat.newLocal", "editor.openFavorite", "modelPicker.toggle", "modelPicker.jump.1", "modelPicker.jump.2", "modelPicker.jump.3", "modelPicker.jump.4", "modelPicker.jump.5", "modelPicker.jump.6", "modelPicker.jump.7", "modelPicker.jump.8", "modelPicker.jump.9", "thread.previous", "thread.next", "thread.jump.1", "thread.jump.2", "thread.jump.3", "thread.jump.4", "thread.jump.5", "thread.jump.6", "thread.jump.7", "thread.jump.8", "thread.jump.9"]>, Schema.TemplateLiteral<readonly [Schema.Literal<"script.">, Schema.NonEmptyString, Schema.Literal<".run">]>]>;
|
|
430
|
+
readonly command: Schema.Union<readonly [Schema.Literals<readonly ["terminal.toggle", "terminal.split", "terminal.splitVertical", "terminal.new", "terminal.close", "rightPanel.toggle", "diff.toggle", "preview.toggle", "preview.refresh", "preview.focusUrl", "preview.zoomIn", "preview.zoomOut", "preview.resetZoom", "commandPalette.toggle", "chat.new", "chat.newLocal", "editor.openFavorite", "modelPicker.toggle", "modelPicker.jump.1", "modelPicker.jump.2", "modelPicker.jump.3", "modelPicker.jump.4", "modelPicker.jump.5", "modelPicker.jump.6", "modelPicker.jump.7", "modelPicker.jump.8", "modelPicker.jump.9", "thread.previous", "thread.next", "thread.jump.1", "thread.jump.2", "thread.jump.3", "thread.jump.4", "thread.jump.5", "thread.jump.6", "thread.jump.7", "thread.jump.8", "thread.jump.9"]>, Schema.TemplateLiteral<readonly [Schema.Literal<"script.">, Schema.NonEmptyString, Schema.Literal<".run">]>]>;
|
|
423
431
|
readonly shortcut: Schema.Struct<{
|
|
424
432
|
readonly key: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
425
433
|
readonly metaKey: Schema.Boolean;
|
|
@@ -433,15 +441,15 @@ export declare const WsServerGetConfigRpc: Rpc.Rpc<"server.getConfig", Schema.St
|
|
|
433
441
|
readonly name: Schema.NonEmptyString;
|
|
434
442
|
}>, Schema.Struct<{
|
|
435
443
|
readonly type: Schema.Literal<"not">;
|
|
436
|
-
readonly node: Schema.suspend<Schema.Codec<import("
|
|
444
|
+
readonly node: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
437
445
|
}>, Schema.Struct<{
|
|
438
446
|
readonly type: Schema.Literal<"and">;
|
|
439
|
-
readonly left: Schema.suspend<Schema.Codec<import("
|
|
440
|
-
readonly right: Schema.suspend<Schema.Codec<import("
|
|
447
|
+
readonly left: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
448
|
+
readonly right: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
441
449
|
}>, Schema.Struct<{
|
|
442
450
|
readonly type: Schema.Literal<"or">;
|
|
443
|
-
readonly left: Schema.suspend<Schema.Codec<import("
|
|
444
|
-
readonly right: Schema.suspend<Schema.Codec<import("
|
|
451
|
+
readonly left: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
452
|
+
readonly right: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
445
453
|
}>]>>;
|
|
446
454
|
}>>;
|
|
447
455
|
readonly issues: Schema.$Array<Schema.Union<readonly [Schema.Struct<{
|
|
@@ -462,6 +470,7 @@ export declare const WsServerGetConfigRpc: Rpc.Rpc<"server.getConfig", Schema.St
|
|
|
462
470
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
463
471
|
}>>;
|
|
464
472
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
473
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
465
474
|
readonly enabled: Schema.Boolean;
|
|
466
475
|
readonly installed: Schema.Boolean;
|
|
467
476
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -589,6 +598,11 @@ export declare const WsServerGetConfigRpc: Rpc.Rpc<"server.getConfig", Schema.St
|
|
|
589
598
|
readonly apiEndpoint: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.String, never, never>, never>;
|
|
590
599
|
readonly customModels: Schema.withDecodingDefault<Schema.$Array<Schema.String>, never>;
|
|
591
600
|
}>, never>;
|
|
601
|
+
readonly grok: Schema.withDecodingDefault<Schema.Struct<{
|
|
602
|
+
readonly enabled: Schema.withDecodingDefault<Schema.Boolean, never>;
|
|
603
|
+
readonly binaryPath: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.decodeTo<Schema.String, Schema.String, never, never>, never, never>, never>;
|
|
604
|
+
readonly customModels: Schema.withDecodingDefault<Schema.$Array<Schema.String>, never>;
|
|
605
|
+
}>, never>;
|
|
592
606
|
readonly opencode: Schema.withDecodingDefault<Schema.Struct<{
|
|
593
607
|
readonly enabled: Schema.withDecodingDefault<Schema.Boolean, never>;
|
|
594
608
|
readonly binaryPath: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.decodeTo<Schema.String, Schema.String, never, never>, never, never>, never>;
|
|
@@ -626,6 +640,7 @@ export declare const WsServerGetConfigRpc: Rpc.Rpc<"server.getConfig", Schema.St
|
|
|
626
640
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
627
641
|
}>>;
|
|
628
642
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
643
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
629
644
|
readonly enabled: Schema.Boolean;
|
|
630
645
|
readonly installed: Schema.Boolean;
|
|
631
646
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -709,6 +724,7 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
709
724
|
readonly cols: Schema.optional<Schema.Int>;
|
|
710
725
|
readonly rows: Schema.optional<Schema.Int>;
|
|
711
726
|
readonly env: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
727
|
+
readonly projectId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProjectId">>;
|
|
712
728
|
readonly terminalId: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
713
729
|
readonly threadId: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
714
730
|
}>, Schema.Struct<{
|
|
@@ -731,6 +747,7 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
731
747
|
readonly rows: Schema.optional<Schema.Int>;
|
|
732
748
|
readonly env: Schema.optional<Schema.$Record<Schema.String, Schema.String>>;
|
|
733
749
|
readonly restartIfNotRunning: Schema.optional<Schema.Boolean>;
|
|
750
|
+
readonly projectId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProjectId">>;
|
|
734
751
|
readonly terminalId: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
735
752
|
readonly threadId: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
736
753
|
}>, import("effect/unstable/rpc/RpcSchema").Stream<Schema.Union<readonly [Schema.Struct<{
|
|
@@ -869,6 +886,8 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
869
886
|
readonly command: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
870
887
|
readonly icon: Schema.Literals<readonly ["play", "test", "lint", "configure", "build", "debug"]>;
|
|
871
888
|
readonly runOnWorktreeCreate: Schema.Boolean;
|
|
889
|
+
readonly previewUrl: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
890
|
+
readonly autoOpenPreview: Schema.optional<Schema.Boolean>;
|
|
872
891
|
}>>>;
|
|
873
892
|
}>, Schema.Struct<{
|
|
874
893
|
readonly type: Schema.Literal<"project.delete">;
|
|
@@ -1053,6 +1072,20 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1053
1072
|
readonly commandId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">;
|
|
1054
1073
|
readonly threadId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">;
|
|
1055
1074
|
readonly createdAt: Schema.String;
|
|
1075
|
+
}>, Schema.Struct<{
|
|
1076
|
+
readonly type: Schema.Literal<"thread.goal.request">;
|
|
1077
|
+
readonly commandId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">;
|
|
1078
|
+
readonly threadId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">;
|
|
1079
|
+
readonly request: Schema.Union<readonly [Schema.Struct<{
|
|
1080
|
+
readonly kind: Schema.Literal<"status">;
|
|
1081
|
+
}>, Schema.Struct<{
|
|
1082
|
+
readonly kind: Schema.Literal<"control">;
|
|
1083
|
+
readonly action: Schema.Literals<readonly ["pause", "resume", "clear"]>;
|
|
1084
|
+
}>, Schema.Struct<{
|
|
1085
|
+
readonly kind: Schema.Literal<"set">;
|
|
1086
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1087
|
+
}>]>;
|
|
1088
|
+
readonly createdAt: Schema.String;
|
|
1056
1089
|
}>]>, Schema.Struct<{
|
|
1057
1090
|
readonly sequence: Schema.Int;
|
|
1058
1091
|
}>, Schema.Union<readonly [typeof OrchestrationDispatchCommandError, typeof EnvironmentAuthorizationError]>, never, never> | Rpc.Rpc<"orchestration.getArchivedShellSnapshot", Schema.Struct<{}>, Schema.Struct<{
|
|
@@ -1096,6 +1129,8 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1096
1129
|
readonly command: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1097
1130
|
readonly icon: Schema.Literals<readonly ["play", "test", "lint", "configure", "build", "debug"]>;
|
|
1098
1131
|
readonly runOnWorktreeCreate: Schema.Boolean;
|
|
1132
|
+
readonly previewUrl: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1133
|
+
readonly autoOpenPreview: Schema.optional<Schema.Boolean>;
|
|
1099
1134
|
}>>;
|
|
1100
1135
|
readonly createdAt: Schema.String;
|
|
1101
1136
|
readonly updatedAt: Schema.String;
|
|
@@ -1149,6 +1184,15 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1149
1184
|
readonly lastError: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1150
1185
|
readonly updatedAt: Schema.String;
|
|
1151
1186
|
}>>;
|
|
1187
|
+
readonly goal: Schema.withDecodingDefault<Schema.NullOr<Schema.Struct<{
|
|
1188
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1189
|
+
readonly status: Schema.Literals<readonly ["active", "paused", "blocked", "usageLimited", "budgetLimited", "complete"]>;
|
|
1190
|
+
readonly tokensUsed: Schema.Int;
|
|
1191
|
+
readonly tokenBudget: Schema.NullOr<Schema.Int>;
|
|
1192
|
+
readonly timeUsedSeconds: Schema.Int;
|
|
1193
|
+
readonly createdAt: Schema.String;
|
|
1194
|
+
readonly updatedAt: Schema.String;
|
|
1195
|
+
}>>, never>;
|
|
1152
1196
|
readonly latestUserMessageAt: Schema.NullOr<Schema.String>;
|
|
1153
1197
|
readonly hasPendingApprovals: Schema.Boolean;
|
|
1154
1198
|
readonly hasPendingUserInput: Schema.Boolean;
|
|
@@ -1198,6 +1242,8 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1198
1242
|
readonly command: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1199
1243
|
readonly icon: Schema.Literals<readonly ["play", "test", "lint", "configure", "build", "debug"]>;
|
|
1200
1244
|
readonly runOnWorktreeCreate: Schema.Boolean;
|
|
1245
|
+
readonly previewUrl: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1246
|
+
readonly autoOpenPreview: Schema.optional<Schema.Boolean>;
|
|
1201
1247
|
}>>;
|
|
1202
1248
|
readonly createdAt: Schema.String;
|
|
1203
1249
|
readonly updatedAt: Schema.String;
|
|
@@ -1251,6 +1297,15 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1251
1297
|
readonly lastError: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1252
1298
|
readonly updatedAt: Schema.String;
|
|
1253
1299
|
}>>;
|
|
1300
|
+
readonly goal: Schema.withDecodingDefault<Schema.NullOr<Schema.Struct<{
|
|
1301
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1302
|
+
readonly status: Schema.Literals<readonly ["active", "paused", "blocked", "usageLimited", "budgetLimited", "complete"]>;
|
|
1303
|
+
readonly tokensUsed: Schema.Int;
|
|
1304
|
+
readonly tokenBudget: Schema.NullOr<Schema.Int>;
|
|
1305
|
+
readonly timeUsedSeconds: Schema.Int;
|
|
1306
|
+
readonly createdAt: Schema.String;
|
|
1307
|
+
readonly updatedAt: Schema.String;
|
|
1308
|
+
}>>, never>;
|
|
1254
1309
|
readonly latestUserMessageAt: Schema.NullOr<Schema.String>;
|
|
1255
1310
|
readonly hasPendingApprovals: Schema.Boolean;
|
|
1256
1311
|
readonly hasPendingUserInput: Schema.Boolean;
|
|
@@ -1300,6 +1355,8 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1300
1355
|
readonly command: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1301
1356
|
readonly icon: Schema.Literals<readonly ["play", "test", "lint", "configure", "build", "debug"]>;
|
|
1302
1357
|
readonly runOnWorktreeCreate: Schema.Boolean;
|
|
1358
|
+
readonly previewUrl: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1359
|
+
readonly autoOpenPreview: Schema.optional<Schema.Boolean>;
|
|
1303
1360
|
}>>;
|
|
1304
1361
|
readonly createdAt: Schema.String;
|
|
1305
1362
|
readonly updatedAt: Schema.String;
|
|
@@ -1360,6 +1417,15 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1360
1417
|
readonly lastError: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1361
1418
|
readonly updatedAt: Schema.String;
|
|
1362
1419
|
}>>;
|
|
1420
|
+
readonly goal: Schema.withDecodingDefault<Schema.NullOr<Schema.Struct<{
|
|
1421
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1422
|
+
readonly status: Schema.Literals<readonly ["active", "paused", "blocked", "usageLimited", "budgetLimited", "complete"]>;
|
|
1423
|
+
readonly tokensUsed: Schema.Int;
|
|
1424
|
+
readonly tokenBudget: Schema.NullOr<Schema.Int>;
|
|
1425
|
+
readonly timeUsedSeconds: Schema.Int;
|
|
1426
|
+
readonly createdAt: Schema.String;
|
|
1427
|
+
readonly updatedAt: Schema.String;
|
|
1428
|
+
}>>, never>;
|
|
1363
1429
|
readonly latestUserMessageAt: Schema.NullOr<Schema.String>;
|
|
1364
1430
|
readonly hasPendingApprovals: Schema.Boolean;
|
|
1365
1431
|
readonly hasPendingUserInput: Schema.Boolean;
|
|
@@ -1415,6 +1481,15 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1415
1481
|
readonly updatedAt: Schema.String;
|
|
1416
1482
|
readonly archivedAt: Schema.withDecodingDefault<Schema.NullOr<Schema.String>, never>;
|
|
1417
1483
|
readonly deletedAt: Schema.NullOr<Schema.String>;
|
|
1484
|
+
readonly goal: Schema.withDecodingDefault<Schema.NullOr<Schema.Struct<{
|
|
1485
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1486
|
+
readonly status: Schema.Literals<readonly ["active", "paused", "blocked", "usageLimited", "budgetLimited", "complete"]>;
|
|
1487
|
+
readonly tokensUsed: Schema.Int;
|
|
1488
|
+
readonly tokenBudget: Schema.NullOr<Schema.Int>;
|
|
1489
|
+
readonly timeUsedSeconds: Schema.Int;
|
|
1490
|
+
readonly createdAt: Schema.String;
|
|
1491
|
+
readonly updatedAt: Schema.String;
|
|
1492
|
+
}>>, never>;
|
|
1418
1493
|
readonly messages: Schema.$Array<Schema.Struct<{
|
|
1419
1494
|
readonly id: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "MessageId">;
|
|
1420
1495
|
readonly role: Schema.Literals<readonly ["user", "assistant", "system"]>;
|
|
@@ -1519,6 +1594,8 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1519
1594
|
readonly command: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1520
1595
|
readonly icon: Schema.Literals<readonly ["play", "test", "lint", "configure", "build", "debug"]>;
|
|
1521
1596
|
readonly runOnWorktreeCreate: Schema.Boolean;
|
|
1597
|
+
readonly previewUrl: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1598
|
+
readonly autoOpenPreview: Schema.optional<Schema.Boolean>;
|
|
1522
1599
|
}>>;
|
|
1523
1600
|
readonly createdAt: Schema.String;
|
|
1524
1601
|
readonly updatedAt: Schema.String;
|
|
@@ -1579,6 +1656,8 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
1579
1656
|
readonly command: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
1580
1657
|
readonly icon: Schema.Literals<readonly ["play", "test", "lint", "configure", "build", "debug"]>;
|
|
1581
1658
|
readonly runOnWorktreeCreate: Schema.Boolean;
|
|
1659
|
+
readonly previewUrl: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
1660
|
+
readonly autoOpenPreview: Schema.optional<Schema.Boolean>;
|
|
1582
1661
|
}>>>;
|
|
1583
1662
|
readonly updatedAt: Schema.String;
|
|
1584
1663
|
}>;
|
|
@@ -2051,6 +2130,85 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
2051
2130
|
readonly requestId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ApprovalRequestId">>;
|
|
2052
2131
|
readonly ingestedAt: Schema.optional<Schema.String>;
|
|
2053
2132
|
}>;
|
|
2133
|
+
}>, Schema.Struct<{
|
|
2134
|
+
readonly type: Schema.Literal<"thread.goal-requested">;
|
|
2135
|
+
readonly payload: Schema.Struct<{
|
|
2136
|
+
readonly threadId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">;
|
|
2137
|
+
readonly request: Schema.Union<readonly [Schema.Struct<{
|
|
2138
|
+
readonly kind: Schema.Literal<"status">;
|
|
2139
|
+
}>, Schema.Struct<{
|
|
2140
|
+
readonly kind: Schema.Literal<"control">;
|
|
2141
|
+
readonly action: Schema.Literals<readonly ["pause", "resume", "clear"]>;
|
|
2142
|
+
}>, Schema.Struct<{
|
|
2143
|
+
readonly kind: Schema.Literal<"set">;
|
|
2144
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2145
|
+
}>]>;
|
|
2146
|
+
readonly createdAt: Schema.String;
|
|
2147
|
+
}>;
|
|
2148
|
+
readonly sequence: Schema.Int;
|
|
2149
|
+
readonly eventId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "EventId">;
|
|
2150
|
+
readonly aggregateKind: Schema.Literals<readonly ["project", "thread"]>;
|
|
2151
|
+
readonly aggregateId: Schema.Union<readonly [Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProjectId">, Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">]>;
|
|
2152
|
+
readonly occurredAt: Schema.String;
|
|
2153
|
+
readonly commandId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">>;
|
|
2154
|
+
readonly causationEventId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "EventId">>;
|
|
2155
|
+
readonly correlationId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">>;
|
|
2156
|
+
readonly metadata: Schema.Struct<{
|
|
2157
|
+
readonly providerTurnId: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
2158
|
+
readonly providerItemId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProviderItemId">>;
|
|
2159
|
+
readonly adapterKey: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
2160
|
+
readonly requestId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ApprovalRequestId">>;
|
|
2161
|
+
readonly ingestedAt: Schema.optional<Schema.String>;
|
|
2162
|
+
}>;
|
|
2163
|
+
}>, Schema.Struct<{
|
|
2164
|
+
readonly type: Schema.Literal<"thread.goal-updated">;
|
|
2165
|
+
readonly payload: Schema.Struct<{
|
|
2166
|
+
readonly threadId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">;
|
|
2167
|
+
readonly goal: Schema.Struct<{
|
|
2168
|
+
readonly objective: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2169
|
+
readonly status: Schema.Literals<readonly ["active", "paused", "blocked", "usageLimited", "budgetLimited", "complete"]>;
|
|
2170
|
+
readonly tokensUsed: Schema.Int;
|
|
2171
|
+
readonly tokenBudget: Schema.NullOr<Schema.Int>;
|
|
2172
|
+
readonly timeUsedSeconds: Schema.Int;
|
|
2173
|
+
readonly createdAt: Schema.String;
|
|
2174
|
+
readonly updatedAt: Schema.String;
|
|
2175
|
+
}>;
|
|
2176
|
+
}>;
|
|
2177
|
+
readonly sequence: Schema.Int;
|
|
2178
|
+
readonly eventId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "EventId">;
|
|
2179
|
+
readonly aggregateKind: Schema.Literals<readonly ["project", "thread"]>;
|
|
2180
|
+
readonly aggregateId: Schema.Union<readonly [Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProjectId">, Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">]>;
|
|
2181
|
+
readonly occurredAt: Schema.String;
|
|
2182
|
+
readonly commandId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">>;
|
|
2183
|
+
readonly causationEventId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "EventId">>;
|
|
2184
|
+
readonly correlationId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">>;
|
|
2185
|
+
readonly metadata: Schema.Struct<{
|
|
2186
|
+
readonly providerTurnId: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
2187
|
+
readonly providerItemId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProviderItemId">>;
|
|
2188
|
+
readonly adapterKey: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
2189
|
+
readonly requestId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ApprovalRequestId">>;
|
|
2190
|
+
readonly ingestedAt: Schema.optional<Schema.String>;
|
|
2191
|
+
}>;
|
|
2192
|
+
}>, Schema.Struct<{
|
|
2193
|
+
readonly type: Schema.Literal<"thread.goal-cleared">;
|
|
2194
|
+
readonly payload: Schema.Struct<{
|
|
2195
|
+
readonly threadId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">;
|
|
2196
|
+
}>;
|
|
2197
|
+
readonly sequence: Schema.Int;
|
|
2198
|
+
readonly eventId: Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "EventId">;
|
|
2199
|
+
readonly aggregateKind: Schema.Literals<readonly ["project", "thread"]>;
|
|
2200
|
+
readonly aggregateId: Schema.Union<readonly [Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProjectId">, Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ThreadId">]>;
|
|
2201
|
+
readonly occurredAt: Schema.String;
|
|
2202
|
+
readonly commandId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">>;
|
|
2203
|
+
readonly causationEventId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "EventId">>;
|
|
2204
|
+
readonly correlationId: Schema.NullOr<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "CommandId">>;
|
|
2205
|
+
readonly metadata: Schema.Struct<{
|
|
2206
|
+
readonly providerTurnId: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
2207
|
+
readonly providerItemId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ProviderItemId">>;
|
|
2208
|
+
readonly adapterKey: Schema.optional<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
2209
|
+
readonly requestId: Schema.optional<Schema.brand<Schema.decodeTo<Schema.String, Schema.String, never, never>, "ApprovalRequestId">>;
|
|
2210
|
+
readonly ingestedAt: Schema.optional<Schema.String>;
|
|
2211
|
+
}>;
|
|
2054
2212
|
}>, Schema.Struct<{
|
|
2055
2213
|
readonly type: Schema.Literal<"thread.proposed-plan-upserted">;
|
|
2056
2214
|
readonly payload: Schema.Struct<{
|
|
@@ -2273,7 +2431,7 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
2273
2431
|
readonly cwd: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2274
2432
|
readonly keybindingsConfigPath: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2275
2433
|
readonly keybindings: Schema.$Array<Schema.Struct<{
|
|
2276
|
-
readonly command: Schema.Union<readonly [Schema.Literals<readonly ["terminal.toggle", "terminal.split", "terminal.new", "terminal.close", "diff.toggle", "commandPalette.toggle", "chat.new", "chat.newLocal", "editor.openFavorite", "modelPicker.toggle", "modelPicker.jump.1", "modelPicker.jump.2", "modelPicker.jump.3", "modelPicker.jump.4", "modelPicker.jump.5", "modelPicker.jump.6", "modelPicker.jump.7", "modelPicker.jump.8", "modelPicker.jump.9", "thread.previous", "thread.next", "thread.jump.1", "thread.jump.2", "thread.jump.3", "thread.jump.4", "thread.jump.5", "thread.jump.6", "thread.jump.7", "thread.jump.8", "thread.jump.9"]>, Schema.TemplateLiteral<readonly [Schema.Literal<"script.">, Schema.NonEmptyString, Schema.Literal<".run">]>]>;
|
|
2434
|
+
readonly command: Schema.Union<readonly [Schema.Literals<readonly ["terminal.toggle", "terminal.split", "terminal.splitVertical", "terminal.new", "terminal.close", "rightPanel.toggle", "diff.toggle", "preview.toggle", "preview.refresh", "preview.focusUrl", "preview.zoomIn", "preview.zoomOut", "preview.resetZoom", "commandPalette.toggle", "chat.new", "chat.newLocal", "editor.openFavorite", "modelPicker.toggle", "modelPicker.jump.1", "modelPicker.jump.2", "modelPicker.jump.3", "modelPicker.jump.4", "modelPicker.jump.5", "modelPicker.jump.6", "modelPicker.jump.7", "modelPicker.jump.8", "modelPicker.jump.9", "thread.previous", "thread.next", "thread.jump.1", "thread.jump.2", "thread.jump.3", "thread.jump.4", "thread.jump.5", "thread.jump.6", "thread.jump.7", "thread.jump.8", "thread.jump.9"]>, Schema.TemplateLiteral<readonly [Schema.Literal<"script.">, Schema.NonEmptyString, Schema.Literal<".run">]>]>;
|
|
2277
2435
|
readonly shortcut: Schema.Struct<{
|
|
2278
2436
|
readonly key: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2279
2437
|
readonly metaKey: Schema.Boolean;
|
|
@@ -2287,15 +2445,15 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
2287
2445
|
readonly name: Schema.NonEmptyString;
|
|
2288
2446
|
}>, Schema.Struct<{
|
|
2289
2447
|
readonly type: Schema.Literal<"not">;
|
|
2290
|
-
readonly node: Schema.suspend<Schema.Codec<import("
|
|
2448
|
+
readonly node: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
2291
2449
|
}>, Schema.Struct<{
|
|
2292
2450
|
readonly type: Schema.Literal<"and">;
|
|
2293
|
-
readonly left: Schema.suspend<Schema.Codec<import("
|
|
2294
|
-
readonly right: Schema.suspend<Schema.Codec<import("
|
|
2451
|
+
readonly left: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
2452
|
+
readonly right: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
2295
2453
|
}>, Schema.Struct<{
|
|
2296
2454
|
readonly type: Schema.Literal<"or">;
|
|
2297
|
-
readonly left: Schema.suspend<Schema.Codec<import("
|
|
2298
|
-
readonly right: Schema.suspend<Schema.Codec<import("
|
|
2455
|
+
readonly left: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
2456
|
+
readonly right: Schema.suspend<Schema.Codec<import("@t3tools/contracts").KeybindingWhenNode, import("@t3tools/contracts").KeybindingWhenNode, never, never>>;
|
|
2299
2457
|
}>]>>;
|
|
2300
2458
|
}>>;
|
|
2301
2459
|
readonly issues: Schema.$Array<Schema.Union<readonly [Schema.Struct<{
|
|
@@ -2316,6 +2474,7 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
2316
2474
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2317
2475
|
}>>;
|
|
2318
2476
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
2477
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
2319
2478
|
readonly enabled: Schema.Boolean;
|
|
2320
2479
|
readonly installed: Schema.Boolean;
|
|
2321
2480
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -2443,6 +2602,11 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
2443
2602
|
readonly apiEndpoint: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.String, never, never>, never>;
|
|
2444
2603
|
readonly customModels: Schema.withDecodingDefault<Schema.$Array<Schema.String>, never>;
|
|
2445
2604
|
}>, never>;
|
|
2605
|
+
readonly grok: Schema.withDecodingDefault<Schema.Struct<{
|
|
2606
|
+
readonly enabled: Schema.withDecodingDefault<Schema.Boolean, never>;
|
|
2607
|
+
readonly binaryPath: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.decodeTo<Schema.String, Schema.String, never, never>, never, never>, never>;
|
|
2608
|
+
readonly customModels: Schema.withDecodingDefault<Schema.$Array<Schema.String>, never>;
|
|
2609
|
+
}>, never>;
|
|
2446
2610
|
readonly opencode: Schema.withDecodingDefault<Schema.Struct<{
|
|
2447
2611
|
readonly enabled: Schema.withDecodingDefault<Schema.Boolean, never>;
|
|
2448
2612
|
readonly binaryPath: Schema.withDecodingDefault<Schema.decodeTo<Schema.String, Schema.decodeTo<Schema.String, Schema.String, never, never>, never, never>, never>;
|
|
@@ -2480,6 +2644,7 @@ export declare const CliWsRpcGroup: RpcGroup.RpcGroup<Rpc.Rpc<"terminal.open", S
|
|
|
2480
2644
|
readonly groupKey: Schema.decodeTo<Schema.String, Schema.String, never, never>;
|
|
2481
2645
|
}>>;
|
|
2482
2646
|
readonly showInteractionModeToggle: Schema.optional<Schema.Boolean>;
|
|
2647
|
+
readonly requiresNewThreadForModelChange: Schema.optional<Schema.Boolean>;
|
|
2483
2648
|
readonly enabled: Schema.Boolean;
|
|
2484
2649
|
readonly installed: Schema.Boolean;
|
|
2485
2650
|
readonly version: Schema.NullOr<Schema.decodeTo<Schema.String, Schema.String, never, never>>;
|
|
@@ -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
|
|
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("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem | Selection.T3ConfigSelection>;
|
|
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,
|
|
5
|
-
export declare const T3LocalAuthTokenLayer: Layer.Layer<import("../auth/local-token.ts").T3LocalAuthToken,
|
|
6
|
-
export declare const T3LocalAuthLayer: Layer.Layer<import("../auth/local.ts").T3LocalAuth,
|
|
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/Path").Path | import("effect/FileSystem").FileSystem>;
|
|
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/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
|
|
8
|
+
export declare const T3LocalAuthLayer: Layer.Layer<import("../auth/local.ts").T3LocalAuth, import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Path").Path | import("effect/Crypto").Crypto | import("effect/FileSystem").FileSystem>;
|
|
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,
|
|
9
|
-
export declare const T3OrchestrationLayer: Layer.Layer<import("../orchestration/service.ts").T3Orchestration,
|
|
10
|
-
export declare const
|
|
11
|
-
export declare const
|
|
10
|
+
export declare const T3AuthLayer: Layer.Layer<import("../auth/service.ts").T3Auth, import("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem | Selection.T3ConfigSelection>;
|
|
11
|
+
export declare const T3OrchestrationLayer: Layer.Layer<import("../orchestration/service.ts").T3Orchestration, import("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem | Selection.T3ConfigSelection>;
|
|
12
|
+
export declare const BaseAppLayer: Layer.Layer<import("../orchestration/service.ts").T3Orchestration | import("../index.ts").T3Application | import("../rpc/service.ts").T3Rpc | import("../rpc/operation.ts").T3RpcOperations | Config.T3Config | import("../auth/service.ts").T3Auth | import("../cli-path/service.ts").CliPath, import("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem | Selection.T3ConfigSelection>;
|
|
13
|
+
export declare const BaseAuthAppLayer: Layer.Layer<Config.T3Config | import("../auth/service.ts").T3Auth, import("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem | Selection.T3ConfigSelection>;
|
|
14
|
+
export declare const AuthAppLayer: Layer.Layer<Selection.T3ConfigSelection | Config.T3Config | import("../auth/service.ts").T3Auth, import("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem>;
|
|
15
|
+
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 | Selection.T3ConfigSelection | Config.T3Config | import("../auth/service.ts").T3Auth | import("../cli-path/service.ts").CliPath, import("../config/error.ts").ConfigError | import("effect/Config").ConfigError, import("../cli/runtime/service.ts").CliRuntime | import("effect/Path").Path | import("effect/Crypto").Crypto | import("../config/credential/cipher.ts").T3CredentialCipher | import("../config/keystore/service.ts").T3MasterKeyKeystoreFactory | import("effect/FileSystem").FileSystem>;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
export * from "
|
|
1
|
+
export * from "@t3tools/contracts";
|