@cullit/core 2.0.1 → 2.0.2
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 -1
- package/dist/index.js +3 -3
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -71,7 +71,7 @@ interface PipelineResult {
|
|
|
71
71
|
duration: number;
|
|
72
72
|
}
|
|
73
73
|
|
|
74
|
-
declare const VERSION = "2.0.
|
|
74
|
+
declare const VERSION = "2.0.2";
|
|
75
75
|
declare const DEFAULT_CATEGORIES: string[];
|
|
76
76
|
declare const DEFAULT_MODELS: Record<string, string>;
|
|
77
77
|
declare const AI_PROVIDERS: readonly ["anthropic", "openai", "gemini", "ollama", "none"];
|
package/dist/index.js
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
// src/constants.ts
|
|
2
|
-
var VERSION = "2.0.
|
|
2
|
+
var VERSION = "2.0.2";
|
|
3
3
|
var DEFAULT_CATEGORIES = ["features", "fixes", "breaking", "improvements", "chores"];
|
|
4
4
|
var DEFAULT_MODELS = {
|
|
5
5
|
anthropic: "claude-sonnet-4-20250514",
|
|
@@ -844,7 +844,7 @@ function isAudienceToneAllowed(license) {
|
|
|
844
844
|
return (license.tier === "pro" || license.tier === "team" || license.tier === "enterprise") && license.valid;
|
|
845
845
|
}
|
|
846
846
|
function upgradeMessage(feature) {
|
|
847
|
-
return `\u{1F512} ${feature} requires a Cullit
|
|
847
|
+
return `\u{1F512} ${feature} requires a paid Cullit plan.
|
|
848
848
|
Upgrade at https://cullit.io/pricing
|
|
849
849
|
Then set CULLIT_API_KEY in your environment.`;
|
|
850
850
|
}
|
|
@@ -863,7 +863,7 @@ var FEATURE_TIERS = {
|
|
|
863
863
|
approvals: /* @__PURE__ */ new Set(["team", "enterprise"]),
|
|
864
864
|
shared_history: /* @__PURE__ */ new Set(["team", "enterprise"]),
|
|
865
865
|
project_templates: /* @__PURE__ */ new Set(["team", "enterprise"]),
|
|
866
|
-
hosted_changelog: /* @__PURE__ */ new Set(["
|
|
866
|
+
hosted_changelog: /* @__PURE__ */ new Set(["pro", "team", "enterprise"]),
|
|
867
867
|
branded_widget: /* @__PURE__ */ new Set(["team", "enterprise"]),
|
|
868
868
|
team_publishers: /* @__PURE__ */ new Set(["team", "enterprise"]),
|
|
869
869
|
org_settings: /* @__PURE__ */ new Set(["team", "enterprise"]),
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@cullit/core",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.2",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"description": "Core engine for Cullit — AI-powered release note generation.",
|
|
6
6
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -38,7 +38,7 @@
|
|
|
38
38
|
"access": "public"
|
|
39
39
|
},
|
|
40
40
|
"dependencies": {
|
|
41
|
-
"@cullit/config": "2.0.
|
|
41
|
+
"@cullit/config": "2.0.2"
|
|
42
42
|
},
|
|
43
43
|
"scripts": {
|
|
44
44
|
"build": "tsup src/index.ts --format esm --dts --clean",
|