claude-teammate 0.1.232 → 0.1.233
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/package.json +1 -1
- package/src/forge/github.js +1 -1
- package/src/forge/gitlab.js +1 -1
package/package.json
CHANGED
package/src/forge/github.js
CHANGED
|
@@ -19,7 +19,7 @@ export function createGitHubClient(config) {
|
|
|
19
19
|
async findIssueByJiraKey(repoUrl, jiraKey) {
|
|
20
20
|
const repo = parseGitHubRepoUrl(repoUrl);
|
|
21
21
|
const url = new URL(`https://api.github.com/repos/${repo.owner}/${repo.name}/issues`);
|
|
22
|
-
url.searchParams.set("state", "
|
|
22
|
+
url.searchParams.set("state", "open");
|
|
23
23
|
url.searchParams.set("per_page", "100");
|
|
24
24
|
|
|
25
25
|
const payload = await requestGitHub(url, config, {
|
package/src/forge/gitlab.js
CHANGED
|
@@ -21,7 +21,7 @@ export function createGitLabClient(config) {
|
|
|
21
21
|
const repo = parseGitLabRepoUrl(repoUrl);
|
|
22
22
|
const payload = await requestGitLabProject(config, repo, "/issues", {
|
|
23
23
|
searchParams: {
|
|
24
|
-
state: "
|
|
24
|
+
state: "opened",
|
|
25
25
|
search: jiraKey,
|
|
26
26
|
per_page: "100"
|
|
27
27
|
}
|