opencode-gitlab-dap 1.16.1 → 1.16.3
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/dist/index.cjs +44 -13
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +44 -13
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.js
CHANGED
|
@@ -3867,8 +3867,8 @@ var z6 = tool6.schema;
|
|
|
3867
3867
|
var PREFIX2 = "agents";
|
|
3868
3868
|
var SKILLS_PREFIX = `${PREFIX2}/skills`;
|
|
3869
3869
|
var DRAFTS_PREFIX = `${PREFIX2}/skills-drafts`;
|
|
3870
|
-
var SKILLS_INDEX = `${SKILLS_PREFIX}/
|
|
3871
|
-
var DRAFTS_INDEX = `${DRAFTS_PREFIX}/
|
|
3870
|
+
var SKILLS_INDEX = `${SKILLS_PREFIX}/_registry`;
|
|
3871
|
+
var DRAFTS_INDEX = `${DRAFTS_PREFIX}/_registry`;
|
|
3872
3872
|
var PROJECT_ID_DESC2 = "Project path from git remote";
|
|
3873
3873
|
function resolveScope2(args) {
|
|
3874
3874
|
if (args.scope === "groups" && args.group_id) {
|
|
@@ -3925,14 +3925,27 @@ async function readIndex(instanceUrl, token, scope, id, indexSlug) {
|
|
|
3925
3925
|
return [];
|
|
3926
3926
|
}
|
|
3927
3927
|
}
|
|
3928
|
+
async function sleep2(ms) {
|
|
3929
|
+
return new Promise((resolve) => setTimeout(resolve, ms));
|
|
3930
|
+
}
|
|
3928
3931
|
async function writeIndex(instanceUrl, token, scope, id, indexSlug, entries) {
|
|
3929
|
-
const content = formatIndex(entries) || "# Skills
|
|
3930
|
-
|
|
3931
|
-
|
|
3932
|
-
|
|
3933
|
-
|
|
3932
|
+
const content = formatIndex(entries) || "# Skills Registry";
|
|
3933
|
+
for (let attempt = 0; attempt < 3; attempt++) {
|
|
3934
|
+
try {
|
|
3935
|
+
await updateWikiPage(instanceUrl, token, scope, id, indexSlug, content);
|
|
3936
|
+
return;
|
|
3937
|
+
} catch (updateErr) {
|
|
3938
|
+
const msg = updateErr.message ?? "";
|
|
3939
|
+
if (msg.includes("not found") || msg.includes("404")) {
|
|
3940
|
+
await createWikiPage(instanceUrl, token, scope, id, indexSlug, content);
|
|
3941
|
+
return;
|
|
3942
|
+
}
|
|
3943
|
+
if (attempt < 2) {
|
|
3944
|
+
await sleep2(1e3 * (attempt + 1));
|
|
3945
|
+
continue;
|
|
3946
|
+
}
|
|
3934
3947
|
throw updateErr;
|
|
3935
|
-
|
|
3948
|
+
}
|
|
3936
3949
|
}
|
|
3937
3950
|
}
|
|
3938
3951
|
async function upsertIndexEntry(instanceUrl, token, scope, id, indexSlug, entry) {
|
|
@@ -3953,12 +3966,30 @@ async function removeIndexEntry(instanceUrl, token, scope, id, indexSlug, name)
|
|
|
3953
3966
|
}
|
|
3954
3967
|
}
|
|
3955
3968
|
async function upsertPage(instanceUrl, token, scope, id, slug, content) {
|
|
3956
|
-
|
|
3957
|
-
|
|
3958
|
-
|
|
3959
|
-
|
|
3969
|
+
for (let attempt = 0; attempt < 3; attempt++) {
|
|
3970
|
+
try {
|
|
3971
|
+
await updateWikiPage(instanceUrl, token, scope, id, slug, content);
|
|
3972
|
+
return;
|
|
3973
|
+
} catch (updateErr) {
|
|
3974
|
+
const msg = updateErr.message ?? "";
|
|
3975
|
+
if (msg.includes("not found") || msg.includes("404")) {
|
|
3976
|
+
try {
|
|
3977
|
+
await createWikiPage(instanceUrl, token, scope, id, slug, content);
|
|
3978
|
+
return;
|
|
3979
|
+
} catch (createErr) {
|
|
3980
|
+
if (attempt < 2 && (createErr.message?.includes("Duplicate") || createErr.message?.includes("reference"))) {
|
|
3981
|
+
await sleep2(1e3 * (attempt + 1));
|
|
3982
|
+
continue;
|
|
3983
|
+
}
|
|
3984
|
+
throw createErr;
|
|
3985
|
+
}
|
|
3986
|
+
}
|
|
3987
|
+
if (attempt < 2) {
|
|
3988
|
+
await sleep2(1e3 * (attempt + 1));
|
|
3989
|
+
continue;
|
|
3990
|
+
}
|
|
3960
3991
|
throw updateErr;
|
|
3961
|
-
|
|
3992
|
+
}
|
|
3962
3993
|
}
|
|
3963
3994
|
}
|
|
3964
3995
|
var EMPTY_FILE_SENTINEL = "__EMPTY_FILE__";
|