v7.0.0

Thu, 18 September, 2025

Feature

  • Added TemplateName and TemplateId properties to the Document Properties API, under the Files property.

Breaking changes

  • Changed the type of the Files property in the Template Properties API from List<DocumentFiles> to List<TemplateFiles>.

Previous

var templateClient = new TemplateClient(apiClient);
var templateProperties = templateClient.GetProperties("templateId");
List<DocumentFiles> files = templateProperties.Files;

Now

var templateClient = new TemplateClient(apiClient);
var templateProperties = templateClient.GetProperties("templateId");
List<TemplateFiles> files = templateProperties.Files;