workflow-agent-cli 2.8.0 → 2.8.1
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/config/index.d.ts
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
import { W as WorkflowConfig } from '../schema-
|
|
2
|
-
export { B as BranchType, C as ConventionalType, S as Scope, a as WorkflowConfigSchema } from '../schema-
|
|
1
|
+
import { W as WorkflowConfig } from '../schema-BUu8Cefw.js';
|
|
2
|
+
export { B as BranchType, C as ConventionalType, S as Scope, a as WorkflowConfigSchema } from '../schema-BUu8Cefw.js';
|
|
3
3
|
import 'zod';
|
|
4
4
|
|
|
5
5
|
declare function loadConfig(cwd?: string): Promise<WorkflowConfig | null>;
|
package/dist/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export { hasConfig, loadConfig } from './config/index.js';
|
|
2
2
|
export { ValidationResult, discoverCustomScopes, getAllScopes, invalidateCustomScopesCache, validateBranchName, validateCommitMessage, validatePRTitle } from './validators/index.js';
|
|
3
|
-
export { B as BranchType, C as ConventionalType, S as Scope, W as WorkflowConfig, a as WorkflowConfigSchema } from './schema-
|
|
3
|
+
export { B as BranchType, C as ConventionalType, S as Scope, W as WorkflowConfig, a as WorkflowConfigSchema } from './schema-BUu8Cefw.js';
|
|
4
4
|
import 'zod';
|
|
5
5
|
|
|
6
6
|
interface CheckDefinition {
|
package/package.json
CHANGED
|
@@ -189,6 +189,8 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
189
189
|
nodeVersions?: string[] | undefined;
|
|
190
190
|
checks?: ("build" | "test" | "lint" | "typecheck" | "format")[] | undefined;
|
|
191
191
|
} | undefined;
|
|
192
|
+
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
193
|
+
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
192
194
|
advisory?: {
|
|
193
195
|
enabled: boolean;
|
|
194
196
|
defaultDepth: "executive" | "quick" | "standard" | "comprehensive";
|
|
@@ -208,8 +210,6 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
208
210
|
} | undefined;
|
|
209
211
|
excludePatterns?: string[] | undefined;
|
|
210
212
|
} | undefined;
|
|
211
|
-
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
212
|
-
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
213
213
|
analytics?: {
|
|
214
214
|
enabled: boolean;
|
|
215
215
|
shareAnonymous: boolean;
|
|
@@ -242,6 +242,8 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
242
242
|
defaultBranch?: string | undefined;
|
|
243
243
|
checks?: ("build" | "test" | "lint" | "typecheck" | "format")[] | undefined;
|
|
244
244
|
} | undefined;
|
|
245
|
+
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
246
|
+
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
245
247
|
advisory?: {
|
|
246
248
|
enabled?: boolean | undefined;
|
|
247
249
|
defaultDepth?: "executive" | "quick" | "standard" | "comprehensive" | undefined;
|
|
@@ -261,8 +263,6 @@ declare const WorkflowConfigSchema: z.ZodObject<{
|
|
|
261
263
|
excludePatterns?: string[] | undefined;
|
|
262
264
|
includeHealthMetrics?: boolean | undefined;
|
|
263
265
|
} | undefined;
|
|
264
|
-
branchTypes?: ("test" | "docs" | "feature" | "bugfix" | "hotfix" | "chore" | "refactor" | "release")[] | undefined;
|
|
265
|
-
conventionalTypes?: ("build" | "test" | "docs" | "ci" | "chore" | "refactor" | "feat" | "fix" | "perf" | "style" | "revert")[] | undefined;
|
|
266
266
|
enforcement?: "strict" | "advisory" | "learning" | undefined;
|
|
267
267
|
language?: string | undefined;
|
|
268
268
|
analytics?: {
|