@opentabs-dev/opentabs-plugin-gitlab 0.0.80 → 0.0.82
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/adapter.iife.js +11 -2
- package/dist/adapter.iife.js.map +3 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.d.ts.map +1 -1
- package/dist/index.js +9 -0
- package/dist/index.js.map +1 -1
- package/dist/tools.json +10 -1
- package/package.json +13 -4
package/dist/adapter.iife.js
CHANGED
|
@@ -15110,6 +15110,15 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15110
15110
|
displayName = "GitLab";
|
|
15111
15111
|
urlPatterns = ["*://gitlab.com/*"];
|
|
15112
15112
|
homepage = "https://gitlab.com";
|
|
15113
|
+
configSchema = {
|
|
15114
|
+
instanceUrl: {
|
|
15115
|
+
type: "url",
|
|
15116
|
+
label: "GitLab URL",
|
|
15117
|
+
description: "The URL of your self-hosted GitLab instance (e.g., https://gitlab.example.com). Leave empty to use gitlab.com.",
|
|
15118
|
+
required: false,
|
|
15119
|
+
placeholder: "https://gitlab.example.com"
|
|
15120
|
+
}
|
|
15121
|
+
};
|
|
15113
15122
|
tools = [
|
|
15114
15123
|
// Projects
|
|
15115
15124
|
listProjects,
|
|
@@ -15149,7 +15158,7 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15149
15158
|
};
|
|
15150
15159
|
var src_default = new GitLabPlugin();
|
|
15151
15160
|
|
|
15152
|
-
// dist/
|
|
15161
|
+
// dist/_adapter_entry_f865d23a-0d8b-4dac-a41a-cf6014d5e40b.ts
|
|
15153
15162
|
if (!globalThis.__openTabs) {
|
|
15154
15163
|
globalThis.__openTabs = {};
|
|
15155
15164
|
} else {
|
|
@@ -15365,5 +15374,5 @@ Set the \`cycles\` parameter to \`"ref"\` to resolve cyclical schemas with defs.
|
|
|
15365
15374
|
};
|
|
15366
15375
|
delete src_default.onDeactivate;
|
|
15367
15376
|
}
|
|
15368
|
-
})();(function(){var o=(globalThis).__openTabs;if(o&&o.adapters&&o.adapters["gitlab"]){var a=o.adapters["gitlab"];a.__adapterHash="
|
|
15377
|
+
})();(function(){var o=(globalThis).__openTabs;if(o&&o.adapters&&o.adapters["gitlab"]){var a=o.adapters["gitlab"];a.__adapterHash="c6dc1690e54deb55b622b2d0d42f409d27710a7ed451582efb480c5b4c3e1343";if(a.tools&&Array.isArray(a.tools)){for(var i=0;i<a.tools.length;i++){Object.freeze(a.tools[i]);}Object.freeze(a.tools);}Object.freeze(a);Object.defineProperty(o.adapters,"gitlab",{value:a,writable:false,configurable:false,enumerable:true});Object.defineProperty(o,"adapters",{value:o.adapters,writable:false,configurable:false});}})();
|
|
15369
15378
|
//# sourceMappingURL=adapter.iife.js.map
|