📦 deps(thirdparty): update snapshots

This commit is contained in:
ci[bot]
2026-05-29 08:33:53 +00:00
parent fdb52f1e96
commit 06e0d13d57
1615 changed files with 232858 additions and 0 deletions
@@ -0,0 +1,41 @@
/**
* Issue template types and registry for stack-feedback skill
*/
export interface IssueTemplate {
type: string;
labels: string[];
titlePrefix: string;
bodyTemplate: string;
requiredFields: string[];
optionalFields: string[];
}
export interface TemplateFields {
[key: string]: string | undefined;
}
// Import all templates
import bug from "./bug.json";
import enhancement from "./enhancement.json";
import docs from "./docs.json";
import unclearPattern from "./unclear-pattern.json";
import dx from "./dx.json";
import migrationPattern from "./migration-pattern.json";
import conversionHelper from "./conversion-helper.json";
import compatibility from "./compatibility.json";
import migrationDocs from "./migration-docs.json";
export const templates: Record<string, IssueTemplate> = {
bug,
enhancement,
docs,
"unclear-pattern": unclearPattern,
dx,
"migration-pattern": migrationPattern,
"conversion-helper": conversionHelper,
compatibility,
"migration-docs": migrationDocs,
};
export const templateTypes = Object.keys(templates);