@verdocs/js-sdk 3.0.32 → 3.0.33

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.
@@ -34,6 +34,10 @@ export interface ITemplate {
34
34
  * Number of times the template has been "starred".
35
35
  */
36
36
  star_counter: number;
37
+ /**
38
+ * If true, the template is considered "sendable" (it has at least one signer, and every signer has at least one field.)
39
+ */
40
+ is_sendable: boolean;
37
41
  /**
38
42
  * If true, the template is only visible to the creator. If false, the template will also be visible to the user's
39
43
  * organization, if any.
@@ -106,6 +110,10 @@ export interface ITemplateSummaryEntry {
106
110
  description: string | null;
107
111
  created_at: string;
108
112
  updated_at: string;
113
+ /**
114
+ * If true, the template is considered "sendable" (it has at least one signer, and every signer has at least one field.)
115
+ */
116
+ is_sendable: boolean;
109
117
  is_personal: boolean;
110
118
  is_public: boolean;
111
119
  profile_id: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@verdocs/js-sdk",
3
- "version": "3.0.32",
3
+ "version": "3.0.33",
4
4
  "private": false,
5
5
  "homepage": "https://github.com/Verdocs/js-sdk",
6
6
  "description": "Verdocs JS SDK",