@norman-else/dsh-claude 0.1.47 → 0.1.48
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/lib/client.d.ts +2 -4
- package/lib/client.js +259 -294
- package/lib/client.js.map +1 -1
- package/lib/index.mjs +323 -53
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/client.d.ts
CHANGED
|
@@ -195,8 +195,6 @@ declare const en: {
|
|
|
195
195
|
readonly planPanelTitle: "Plan";
|
|
196
196
|
readonly planClose: "Close plan panel";
|
|
197
197
|
readonly planOpen: "View plan";
|
|
198
|
-
readonly planMaximize: "Maximize plan panel";
|
|
199
|
-
readonly planRestore: "Restore plan panel";
|
|
200
198
|
readonly planNth: "{index} / {total}";
|
|
201
199
|
readonly planHistory: "Plans in this session";
|
|
202
200
|
readonly planNotePlaceholder: "What should change? Enter files a note, ⌘/Ctrl+Enter sends";
|
|
@@ -231,12 +229,12 @@ declare const en: {
|
|
|
231
229
|
readonly presetHeaderHint: "The agent preset this session runs";
|
|
232
230
|
readonly diffRepository: "Repository";
|
|
233
231
|
readonly repositoryLinked: "Linked repository: changed by this session";
|
|
232
|
+
readonly linkedRepositoryPrompt: "The following concerns the linked repository at {root} (branch {branch}), not this session's own checkout.";
|
|
234
233
|
readonly diffFiles: "{count} modified file(s)";
|
|
235
234
|
readonly diffFilesShort: "{count} files";
|
|
236
235
|
readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
|
|
237
236
|
readonly diffEmpty: "No tracked file changes to display";
|
|
238
237
|
readonly diffElided: "Skipped {count} oversized file(s): {files}";
|
|
239
|
-
readonly diffMaximize: "Maximize diff panel";
|
|
240
238
|
readonly diffCommentPrevious: "Previous comment";
|
|
241
239
|
readonly diffCommentNext: "Next comment";
|
|
242
240
|
readonly diffCommentPosition: "Comment {index} of {total}";
|
|
@@ -246,7 +244,6 @@ declare const en: {
|
|
|
246
244
|
readonly diffCardFiles: "{count} files";
|
|
247
245
|
readonly diffExpandAll: "Expand all files";
|
|
248
246
|
readonly diffCollapseAll: "Collapse all files";
|
|
249
|
-
readonly diffRestore: "Restore diff panel";
|
|
250
247
|
readonly diffCommit: "Commit";
|
|
251
248
|
readonly diffCommitMenu: "Open commit actions";
|
|
252
249
|
readonly diffCommitPush: "Commit & Push…";
|
|
@@ -359,6 +356,7 @@ declare const en: {
|
|
|
359
356
|
readonly cleanupTitle: "Clean up merged branch";
|
|
360
357
|
readonly cleanupDescription: "Remove the worktree and local branch, then archive the workspace sessions and delete the workspace; a plain checkout switches back to the base branch and deletes the merged branch.";
|
|
361
358
|
readonly cleanupCompleted: "Cleaned up {branch}";
|
|
359
|
+
readonly cleanupDescriptionUnmerged: "This worktree has no pull request. Remove the worktree and local branch, then archive the workspace sessions and delete the workspace; refused while the branch holds commits that are on no remote.";
|
|
362
360
|
readonly overviewOpen: "Open the Claude session board";
|
|
363
361
|
readonly overviewTitle: "Session board";
|
|
364
362
|
readonly overviewBody: "Run state, branch, and pull request across Claude sessions";
|