@verdocs/js-sdk 3.3.1 → 3.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -98,6 +98,10 @@ export interface ITemplate {
98
98
  * File attachments for this template.
99
99
  */
100
100
  template_documents?: ITemplateDocument[];
101
+ /**
102
+ * Fields connected to the template.
103
+ */
104
+ fields?: ITemplateField[];
101
105
  }
102
106
  /**
103
107
  * Some template search and list endpoints return only a partial set of fields for each entry via this structure.
@@ -223,6 +227,9 @@ export interface IRole {
223
227
  * arrange recipients to match related business processes so this field allows for that.
224
228
  */
225
229
  order: number;
230
+ /**
231
+ * @deprecated. Use the fields array at the template level instead. This nested block will be removed in a future release.
232
+ */
226
233
  fields?: ITemplateField[];
227
234
  delegator?: boolean;
228
235
  message?: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.3.1",
3
+ "version": "3.3.2",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",