Feat: Added support for session graph and session essence templates. (#16851)

### Summary

Feat: Added support for session graph and session essence templates.
This commit is contained in:
balibabu
2026-07-13 14:48:02 +08:00
committed by GitHub
parent d549194562
commit 2b9569ff51
40 changed files with 212 additions and 827 deletions

View File

@@ -0,0 +1,10 @@
import { capitalize, lowerCase } from 'lodash';
export function formatKindLabel(kind: string): string {
return capitalize(lowerCase(kind));
}
export const isCreateCompilationTemplateGroup = (
id?: string,
): id is undefined => {
return !id;
};