@cullit/config 0.3.0 → 0.5.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 +8 -7
- package/package.json +1 -1
package/dist/index.d.ts
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
|
-
type AIProvider =
|
|
2
|
-
type Audience =
|
|
3
|
-
type Tone =
|
|
4
|
-
type OutputFormat =
|
|
5
|
-
type PublisherType =
|
|
6
|
-
type EnrichmentType =
|
|
1
|
+
type AIProvider = string;
|
|
2
|
+
type Audience = string;
|
|
3
|
+
type Tone = string;
|
|
4
|
+
type OutputFormat = string;
|
|
5
|
+
type PublisherType = string;
|
|
6
|
+
type EnrichmentType = string;
|
|
7
7
|
interface AIConfig {
|
|
8
8
|
provider: AIProvider;
|
|
9
9
|
model?: string;
|
|
@@ -14,7 +14,7 @@ interface AIConfig {
|
|
|
14
14
|
maxTokens?: number;
|
|
15
15
|
}
|
|
16
16
|
interface SourceConfig {
|
|
17
|
-
type:
|
|
17
|
+
type: string;
|
|
18
18
|
owner?: string;
|
|
19
19
|
repo?: string;
|
|
20
20
|
enrichment?: EnrichmentType[];
|
|
@@ -24,6 +24,7 @@ interface PublishTarget {
|
|
|
24
24
|
channel?: string;
|
|
25
25
|
webhookUrl?: string;
|
|
26
26
|
path?: string;
|
|
27
|
+
[key: string]: unknown;
|
|
27
28
|
}
|
|
28
29
|
interface JiraConfig {
|
|
29
30
|
domain: string;
|