@verdocs/js-sdk 5.2.1 → 5.2.2
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 +1 -1
- package/dist/index.d.ts +1 -1
- 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 +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2005,8 +2005,8 @@ const resendInvitation = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
|
2005
2005
|
* @apiBody string ssn_last_4? If KBA-based authentication is used, the recipient's SSN-last-4 to prefill. May only be changed if the recipient has not already completed KBA-based auth.
|
|
2006
2006
|
* @apiSuccess IRecipient . The updated Recipient.
|
|
2007
2007
|
*/
|
|
2008
|
-
const updateRecipient = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
2009
|
-
.patch(`/v2/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}`,
|
|
2008
|
+
const updateRecipient = (endpoint, envelopeId, roleName, params) => endpoint.api //
|
|
2009
|
+
.patch(`/v2/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}`, params)
|
|
2010
2010
|
.then((r) => r.data);
|
|
2011
2011
|
|
|
2012
2012
|
/**
|