Circle V2 API Docs
    Preparing search index...

    Variable templateAuditTemplatesRepoConst

    templateAuditTemplatesRepo: DbRepo<
        {
            link: (
                templateId: TemplateId,
                auditTemplateId: AuditTemplateId,
            ) => Promise<InsertResult[]>;
            listByTemplateId: (
                templateId: TemplateId,
            ) => Promise<
                {
                    audit_template_id: string & { __brand: "AuditTemplateId" };
                    template_id: string & { __brand: "TemplateId" };
                }[],
            >;
            unlink: (
                templateId: TemplateId,
                auditTemplateId: AuditTemplateId,
            ) => Promise<DeleteResult[]>;
        },
    > = ...