opencode-gitlab-duo-agentic 0.1.7 → 0.1.8
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.d.ts +1 -20
- package/dist/index.js +4 -2712
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,24 +1,5 @@
|
|
|
1
1
|
import { Plugin } from '@opencode-ai/plugin';
|
|
2
|
-
import { ProviderV2 } from '@ai-sdk/provider';
|
|
3
|
-
|
|
4
|
-
/**
|
|
5
|
-
* OpenCode plugin entry point for GitLab Duo Agentic.
|
|
6
|
-
*
|
|
7
|
-
* This file is the module that OpenCode discovers and loads — it composes
|
|
8
|
-
* the config hook and tool definitions from their respective modules.
|
|
9
|
-
*/
|
|
10
2
|
|
|
11
3
|
declare const GitLabDuoAgenticPlugin: Plugin;
|
|
12
4
|
|
|
13
|
-
|
|
14
|
-
instanceUrl: string;
|
|
15
|
-
apiKey: string;
|
|
16
|
-
sendSystemContext?: boolean;
|
|
17
|
-
enableMcp?: boolean;
|
|
18
|
-
systemRules?: string;
|
|
19
|
-
};
|
|
20
|
-
|
|
21
|
-
type GitLabDuoAgenticProviderInput = Partial<GitLabDuoAgenticProviderOptions>;
|
|
22
|
-
declare function createGitLabDuoAgentic(options?: GitLabDuoAgenticProviderInput): ProviderV2;
|
|
23
|
-
|
|
24
|
-
export { GitLabDuoAgenticPlugin, createGitLabDuoAgentic, GitLabDuoAgenticPlugin as default };
|
|
5
|
+
export { GitLabDuoAgenticPlugin, GitLabDuoAgenticPlugin as default };
|