@verdocs/js-sdk 6.7.1 → 6.7.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 +14 -0
- package/dist/index.d.ts +14 -0
- package/dist/index.js +4 -0
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +4 -0
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1581,6 +1581,7 @@ class VerdocsEndpoint {
|
|
|
1581
1581
|
* @apiBody boolean no_contact? If set to true, no email or SMS messages will be sent to any recipients.
|
|
1582
1582
|
* @apiBody integer(min: 0) initial_reminder? Override the template initial-reminder setting in ms.
|
|
1583
1583
|
* @apiBody integer(min: 0) followup_reminders? Override the template initial-reminder setting in ms.
|
|
1584
|
+
* @apiBody number max_reminder_days? Maximum number of days (after envelope creation) for which reminders will be sent. Defaults to 14.
|
|
1584
1585
|
* @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.
|
|
1585
1586
|
* @apiSuccess IEnvelope . The newly-created envelope.
|
|
1586
1587
|
*/
|
|
@@ -1680,6 +1681,7 @@ const getEnvelopeFile = async (endpoint, documentId) => endpoint.api //
|
|
|
1680
1681
|
* @apiBody string sender_email? New Sender Email for the envelope
|
|
1681
1682
|
* @apiBody integer(min: 0) initial_reminder? Change the initial-reminder setting (in ms).
|
|
1682
1683
|
* @apiBody integer(min: 0) followup_reminders? Change the followup-reminder setting (in ms).
|
|
1684
|
+
* @apiBody number max_reminder_days? Maximum number of days (after envelope creation) for which reminders will be sent. Defaults to 14.
|
|
1683
1685
|
* @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.
|
|
1684
1686
|
* @apiBody string(enum:'private'|'shared') visibility? Change the envelope's visibility setting
|
|
1685
1687
|
* @apiBody boolean no_contact? If set to true, no email or SMS messages will be sent to any recipients.
|
|
@@ -2356,6 +2358,7 @@ const ALLOWED_CREATE_FIELDS = [
|
|
|
2356
2358
|
* @apiBody TTemplateSender sender? Who may send envelopes using this template
|
|
2357
2359
|
* @apiBody number initial_reminder? Delay (in seconds) before the first reminder is sent (min: 4hrs). Set to 0 or null to disable.
|
|
2358
2360
|
* @apiBody number followup_reminders? Delay (in seconds) before the subsequent reminders are sent (min: 12hrs). Set to 0 or null to disable.
|
|
2361
|
+
* @apiBody number max_reminder_days? Maximum number of days (after envelope creation) for which reminders will be sent. Defaults to 14.
|
|
2359
2362
|
* @apiBody array(items:object) documents? Optional list of documents to attach to the template
|
|
2360
2363
|
* @apiBody array(items:IRole) roles? Optional list of roles to create. Note that if roles are not included in the request, fields will be ignored.
|
|
2361
2364
|
* @apiBody array(fields:ITemplateField) fields? Optional list of fields to create. Note that if fields that do not match a role will be ignored.
|
|
@@ -2447,6 +2450,7 @@ const createTemplateFromSharepoint = (endpoint, params) => {
|
|
|
2447
2450
|
* @apiBody TTemplateSender sender? Who may send envelopes using this template
|
|
2448
2451
|
* @apiBody number initial_reminder? Delay in ms before the first reminder is sent (min: 4hrs). Set to 0 or null to disable.
|
|
2449
2452
|
* @apiBody number followup_reminders? Delay in ms before the subsequent reminders are sent (min: 12hrs). Set to 0 or null to disable.
|
|
2453
|
+
* @apiBody number max_reminder_days? Maximum number of days (after envelope creation) for which reminders will be sent. Defaults to 14.
|
|
2450
2454
|
* @apiSuccess ITemplate . The updated template
|
|
2451
2455
|
*/
|
|
2452
2456
|
const updateTemplate = (endpoint, templateId, params) => endpoint.api //
|