@verdocs/js-sdk 4.2.54 → 4.2.65
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 -9
- package/dist/index.d.ts +4 -9
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +3 -3
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -1618,19 +1618,19 @@ const getSignerToken = (endpoint, envelope_id, role_name) => endpoint.api //
|
|
|
1618
1618
|
* Get an in-person signing link.
|
|
1619
1619
|
*/
|
|
1620
1620
|
const getInPersonLink = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
1621
|
-
.
|
|
1621
|
+
.put(`/v2/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}`, { action: 'get_links' })
|
|
1622
1622
|
.then((r) => r.data);
|
|
1623
1623
|
/**
|
|
1624
1624
|
* Send a delegation request.
|
|
1625
1625
|
*/
|
|
1626
1626
|
const sendDelegate = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
1627
|
-
.post(`/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}
|
|
1627
|
+
.post(`/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}`)
|
|
1628
1628
|
.then((r) => r.data);
|
|
1629
1629
|
/**
|
|
1630
1630
|
* Resend a recipient's invitation.
|
|
1631
1631
|
*/
|
|
1632
1632
|
const resendInvitation = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
1633
|
-
.
|
|
1633
|
+
.put(`/v2/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}`, { action: 'resend' })
|
|
1634
1634
|
.then((r) => r.data);
|
|
1635
1635
|
|
|
1636
1636
|
/**
|