@verdocs/js-sdk 6.2.2 → 6.2.3
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.
- package/dist/index.d.mts +4 -4
- package/dist/index.d.ts +4 -4
- package/dist/index.js +4 -4
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -4
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +3 -3
- package/package.json +3 -3
package/dist/index.mjs
CHANGED
|
@@ -1587,8 +1587,8 @@ class VerdocsEndpoint {
|
|
|
1587
1587
|
* @apiBody string name? Override the name of the envelope (defaults to the template name).
|
|
1588
1588
|
* @apiBody string description? Override the description of the envelope (defaults to the template description).
|
|
1589
1589
|
* @apiBody boolean no_contact? If set to true, no email or SMS messages will be sent to any recipients.
|
|
1590
|
-
* @apiBody integer(min: 0) initial_reminder? Override the template initial-reminder setting.
|
|
1591
|
-
* @apiBody integer(min: 0) followup_reminders? Override the template initial-reminder setting.
|
|
1590
|
+
* @apiBody integer(min: 0) initial_reminder? Override the template initial-reminder setting (in milliseconds).
|
|
1591
|
+
* @apiBody integer(min: 0) followup_reminders? Override the template initial-reminder setting (in milliseconds).
|
|
1592
1592
|
* @apiBody string expires_at? If set, the envelope will automatically expire (be canceled) at this date and time. Expirations must be at least 1 day in the future.
|
|
1593
1593
|
* @apiSuccess IEnvelope . The newly-created envelope.
|
|
1594
1594
|
*/
|
|
@@ -2396,8 +2396,8 @@ const createTemplateFromSharepoint = (endpoint, params) => {
|
|
|
2396
2396
|
* @apiBody boolean is_personal? Deprecated. If true, the template is personal and can only be seen by the caller. (Use "visibility" for new calls.)
|
|
2397
2397
|
* @apiBody boolean is_public? Deprecated. If true, the template is public and can be seen by anybody. (Use "visibility" for new calls.)
|
|
2398
2398
|
* @apiBody TTemplateSender sender? Who may send envelopes using this template
|
|
2399
|
-
* @apiBody number initial_reminder? Delay (in
|
|
2400
|
-
* @apiBody number followup_reminders? Delay (in
|
|
2399
|
+
* @apiBody number initial_reminder? Delay (in milliseconds) before the first reminder is sent (min: 4hrs). Set to 0 or null to disable.
|
|
2400
|
+
* @apiBody number followup_reminders? Delay (in milliseconds) before the subsequent reminders are sent (min: 12hrs). Set to 0 or null to disable.
|
|
2401
2401
|
* @apiSuccess ITemplate . The updated template
|
|
2402
2402
|
*/
|
|
2403
2403
|
const updateTemplate = (endpoint, templateId, params) => endpoint.api //
|