@norman-else/dsh-claude 0.1.45 → 0.1.47

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 CHANGED
@@ -191,6 +191,7 @@ declare const en: {
191
191
  readonly yes: "Yes";
192
192
  readonly no: "No";
193
193
  readonly diffOpen: "View branch changes";
194
+ readonly diffTabTitle: "Branch changes";
194
195
  readonly planPanelTitle: "Plan";
195
196
  readonly planClose: "Close plan panel";
196
197
  readonly planOpen: "View plan";
@@ -213,9 +214,6 @@ declare const en: {
213
214
  readonly planEmpty: "This session has no plan to read yet.";
214
215
  readonly planPendingHint: "Approve or reject this plan in the DSH approval dialog.";
215
216
  readonly diffClose: "Close diff panel";
216
- readonly sessionMenu: "Session menu";
217
- readonly sessionMenuOpenIn: "Open in";
218
- readonly sessionMenuOpenFailed: "Could not open: {message}";
219
217
  readonly promptSource: "Prompts";
220
218
  readonly promptSave: "Save as a prompt";
221
219
  readonly promptSaveName: "Name";
@@ -231,11 +229,13 @@ declare const en: {
231
229
  readonly promptSaveExists: "A prompt with that name already exists. Try another.";
232
230
  readonly promptSaveFailed: "Could not save: {message}";
233
231
  readonly presetHeaderHint: "The agent preset this session runs";
234
- readonly diffWorkingTree: "Branch changes";
232
+ readonly diffRepository: "Repository";
233
+ readonly repositoryLinked: "Linked repository: changed by this session";
235
234
  readonly diffFiles: "{count} modified file(s)";
236
235
  readonly diffFilesShort: "{count} files";
237
236
  readonly diffTruncated: "The diff exceeds the safe display limit. Use the terminal to inspect the complete content.";
238
237
  readonly diffEmpty: "No tracked file changes to display";
238
+ readonly diffElided: "Skipped {count} oversized file(s): {files}";
239
239
  readonly diffMaximize: "Maximize diff panel";
240
240
  readonly diffCommentPrevious: "Previous comment";
241
241
  readonly diffCommentNext: "Next comment";
@@ -282,6 +282,7 @@ declare const en: {
282
282
  readonly diffMerge_squash: "Squash and merge";
283
283
  readonly diffMerge_rebase: "Rebase and merge";
284
284
  readonly diffMergeDescription: "Merge the pull request for this branch with the selected method.";
285
+ readonly diffMergeAdmin: "Merge as administrator (bypass branch protection)";
285
286
  readonly diffMergeCompleted: "Merged PR #{number}";
286
287
  readonly diffUpdateBranch: "Update branch…";
287
288
  readonly repositoryUpdateBranch: "Update branch";
@@ -445,15 +446,8 @@ declare const en: {
445
446
  type ClaudeCodeSettingsKey = keyof typeof en;
446
447
  //#endregion
447
448
  //#region src/client/index.d.ts
448
- /** The right-side details column slot declared by dsh-client-ui-layout
449
- * (kind 'single', scope 'session'). Merged locally because this package does
450
- * not depend on the layout package's client types. */
451
449
  declare module '@deepseek-ai/dsh-client-ui-slots' {
452
450
  interface SlotMap {
453
- details: {
454
- kind: 'single';
455
- scope: 'session';
456
- };
457
451
  'shell.overlay': {
458
452
  kind: 'list';
459
453
  scope: 'root';