@cullit/config 0.5.0 → 1.0.0
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 +21 -1
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -38,6 +38,22 @@ interface OpenClawConfig {
|
|
|
38
38
|
baseUrl?: string;
|
|
39
39
|
token?: string;
|
|
40
40
|
}
|
|
41
|
+
interface GitLabConfig {
|
|
42
|
+
domain?: string;
|
|
43
|
+
projectId: string;
|
|
44
|
+
}
|
|
45
|
+
interface BitbucketConfig {
|
|
46
|
+
workspace: string;
|
|
47
|
+
repoSlug: string;
|
|
48
|
+
}
|
|
49
|
+
interface ConfluenceConfig {
|
|
50
|
+
domain: string;
|
|
51
|
+
spaceKey: string;
|
|
52
|
+
parentPageId?: string;
|
|
53
|
+
}
|
|
54
|
+
interface NotionConfig {
|
|
55
|
+
databaseId: string;
|
|
56
|
+
}
|
|
41
57
|
interface CullConfig {
|
|
42
58
|
ai: AIConfig;
|
|
43
59
|
source: SourceConfig;
|
|
@@ -45,6 +61,10 @@ interface CullConfig {
|
|
|
45
61
|
jira?: JiraConfig;
|
|
46
62
|
linear?: LinearConfig;
|
|
47
63
|
openclaw?: OpenClawConfig;
|
|
64
|
+
gitlab?: GitLabConfig;
|
|
65
|
+
bitbucket?: BitbucketConfig;
|
|
66
|
+
confluence?: ConfluenceConfig;
|
|
67
|
+
notion?: NotionConfig;
|
|
48
68
|
}
|
|
49
69
|
|
|
50
70
|
/**
|
|
@@ -54,4 +74,4 @@ interface CullConfig {
|
|
|
54
74
|
*/
|
|
55
75
|
declare function loadConfig(cwdOrPath?: string): CullConfig;
|
|
56
76
|
|
|
57
|
-
export { type AIConfig, type AIProvider, type Audience, type CullConfig, type EnrichmentType, type JiraConfig, type LinearConfig, type OpenClawConfig, type OutputFormat, type PublishTarget, type PublisherType, type SourceConfig, type Tone, loadConfig };
|
|
77
|
+
export { type AIConfig, type AIProvider, type Audience, type BitbucketConfig, type ConfluenceConfig, type CullConfig, type EnrichmentType, type GitLabConfig, type JiraConfig, type LinearConfig, type NotionConfig, type OpenClawConfig, type OutputFormat, type PublishTarget, type PublisherType, type SourceConfig, type Tone, loadConfig };
|