feat(ms22-p2): add AgentTemplate admin CRUD endpoints (#678)

Co-authored-by: Jason Woltje <[email protected]>
Co-committed-by: Jason Woltje <[email protected]>
This commit is contained in:
2026-03-05 02:32:17 +00:00
committed by jason.woltje
parent 5bd08b0d0b
commit ee4d6fa12b
6 changed files with 165 additions and 0 deletions
@@ -0,0 +1,4 @@
import { PartialType } from "@nestjs/mapped-types";
import { CreateAgentTemplateDto } from "./create-agent-template.dto";
export class UpdateAgentTemplateDto extends PartialType(CreateAgentTemplateDto) {}