@verdocs/js-sdk 6.2.0-beta.9 → 6.2.1
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.js +2 -2
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +2 -2
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +3 -3
- package/package.json +3 -3
package/dist/index.js
CHANGED
|
@@ -2706,7 +2706,7 @@ const envelopeRecipientDecline = (endpoint, envelopeId, roleName) => endpoint.ap
|
|
|
2706
2706
|
* @apiSuccess IRecipient . The updated Recipient.
|
|
2707
2707
|
*/
|
|
2708
2708
|
const envelopeRecipientSubmit = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
2709
|
-
.
|
|
2709
|
+
.post(`/v2/envelopes/${envelopeId}/recipients/${roleName}/submit`)
|
|
2710
2710
|
.then((r) => r.data);
|
|
2711
2711
|
/**
|
|
2712
2712
|
* Begin a signing session for an Envelope. This path requires an invite code, and should generally
|
|
@@ -2797,7 +2797,7 @@ const verifySigner = (endpoint, params) => endpoint.api //
|
|
|
2797
2797
|
* @apiSuccess string . Success message.
|
|
2798
2798
|
*/
|
|
2799
2799
|
const delegateRecipient = (endpoint, envelopeId, roleName, params) => endpoint.api //
|
|
2800
|
-
.
|
|
2800
|
+
.post(`/v2/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}/delegate`, params)
|
|
2801
2801
|
.then((r) => r.data);
|
|
2802
2802
|
/**
|
|
2803
2803
|
* Update a recipient. NOTE: User interfaces should rate-limit this operation to avoid spamming recipients.
|