@norman-else/dsh-claude 0.1.21 → 0.1.22
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 +7 -0
- package/lib/client.js +362 -153
- package/lib/client.js.map +1 -1
- package/lib/index.mjs +30 -2
- package/lib/index.mjs.map +1 -1
- package/package.json +1 -1
package/lib/client.d.ts
CHANGED
|
@@ -190,6 +190,13 @@ declare const en: {
|
|
|
190
190
|
readonly diffCommitCompleted: "Created commit {commit}";
|
|
191
191
|
readonly diffCommitPreserved: "Local commit {commit} was preserved.";
|
|
192
192
|
readonly diffOpenPr: "Open pull request";
|
|
193
|
+
readonly diffMergePr: "Merge";
|
|
194
|
+
readonly repositoryMergeMenu: "Open merge options";
|
|
195
|
+
readonly diffMerge_merge: "Create a merge commit";
|
|
196
|
+
readonly diffMerge_squash: "Squash and merge";
|
|
197
|
+
readonly diffMerge_rebase: "Rebase and merge";
|
|
198
|
+
readonly diffMergeDescription: "Merge the pull request for this branch with the selected method.";
|
|
199
|
+
readonly diffMergeCompleted: "Merged PR #{number}";
|
|
193
200
|
readonly reviewCommentAdd: "Add line comment";
|
|
194
201
|
readonly reviewCommentPlaceholder: "Request changes";
|
|
195
202
|
readonly reviewCommentSubmit: "Comment";
|