@verdocs/js-sdk 6.3.1 → 6.3.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 +9 -1
- package/dist/index.d.ts +9 -1
- package/dist/index.js +9 -1
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +9 -1
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.mjs
CHANGED
|
@@ -2862,7 +2862,7 @@ const resetRecipient = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
|
2862
2862
|
* sender to determine how to reply.
|
|
2863
2863
|
*
|
|
2864
2864
|
* @group Recipients
|
|
2865
|
-
* @api POST /envelopes/:envelope_id/recipients/:role_name/ask-
|
|
2865
|
+
* @api POST /envelopes/:envelope_id/recipients/:role_name/ask-question Ask Sender a Question
|
|
2866
2866
|
* @apiParam string(format:uuid) envelope_id The envelope to operate on.
|
|
2867
2867
|
* @apiParam string role_name The role name to update.
|
|
2868
2868
|
* @apiBody string question The question to ask.
|
|
@@ -3524,6 +3524,10 @@ const getOrganizationUsage = (endpoint, organizationId, params) => endpoint.api
|
|
|
3524
3524
|
* @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
|
|
3525
3525
|
* @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
|
|
3526
3526
|
* @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
|
|
3527
|
+
* @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
|
|
3528
|
+
* @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
|
|
3529
|
+
* @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
|
|
3530
|
+
* @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
|
|
3527
3531
|
* @apiSuccess IAuthenticateResponse . Authentication credentials for user in the new organization. The user will be made an Owner automatically.
|
|
3528
3532
|
*/
|
|
3529
3533
|
const createOrganization = (endpoint, params) => endpoint.api //
|
|
@@ -3547,6 +3551,10 @@ const createOrganization = (endpoint, params) => endpoint.api //
|
|
|
3547
3551
|
* @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
|
|
3548
3552
|
* @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
|
|
3549
3553
|
* @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
|
|
3554
|
+
* @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
|
|
3555
|
+
* @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
|
|
3556
|
+
* @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
|
|
3557
|
+
* @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
|
|
3550
3558
|
* @apiSuccess IOrganization . The details for the updated organization
|
|
3551
3559
|
*/
|
|
3552
3560
|
const updateOrganization = (endpoint, organizationId, params) => endpoint.api //
|