@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 CHANGED
@@ -2124,7 +2124,7 @@ declare const resetRecipient: (endpoint: VerdocsEndpoint, envelopeId: string, ro
2124
2124
  * sender to determine how to reply.
2125
2125
  *
2126
2126
  * @group Recipients
2127
- * @api POST /envelopes/:envelope_id/recipients/:role_name/ask-sender Ask Sender a Question
2127
+ * @api POST /envelopes/:envelope_id/recipients/:role_name/ask-question Ask Sender a Question
2128
2128
  * @apiParam string(format:uuid) envelope_id The envelope to operate on.
2129
2129
  * @apiParam string role_name The role name to update.
2130
2130
  * @apiBody string question The question to ask.
@@ -2982,6 +2982,10 @@ declare const getOrganizationUsage: (endpoint: VerdocsEndpoint, organizationId:
2982
2982
  * @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
2983
2983
  * @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
2984
2984
  * @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
2985
+ * @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
2986
+ * @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
2987
+ * @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
2988
+ * @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
2985
2989
  * @apiSuccess IAuthenticateResponse . Authentication credentials for user in the new organization. The user will be made an Owner automatically.
2986
2990
  */
2987
2991
  declare const createOrganization: (endpoint: VerdocsEndpoint, params: {
@@ -3008,6 +3012,10 @@ declare const createOrganization: (endpoint: VerdocsEndpoint, params: {
3008
3012
  * @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
3009
3013
  * @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
3010
3014
  * @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
3015
+ * @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
3016
+ * @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
3017
+ * @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
3018
+ * @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
3011
3019
  * @apiSuccess IOrganization . The details for the updated organization
3012
3020
  */
3013
3021
  declare const updateOrganization: (endpoint: VerdocsEndpoint, organizationId: string, params: Partial<IOrganization>) => Promise<IOrganization>;
package/dist/index.d.ts CHANGED
@@ -2124,7 +2124,7 @@ declare const resetRecipient: (endpoint: VerdocsEndpoint, envelopeId: string, ro
2124
2124
  * sender to determine how to reply.
2125
2125
  *
2126
2126
  * @group Recipients
2127
- * @api POST /envelopes/:envelope_id/recipients/:role_name/ask-sender Ask Sender a Question
2127
+ * @api POST /envelopes/:envelope_id/recipients/:role_name/ask-question Ask Sender a Question
2128
2128
  * @apiParam string(format:uuid) envelope_id The envelope to operate on.
2129
2129
  * @apiParam string role_name The role name to update.
2130
2130
  * @apiBody string question The question to ask.
@@ -2982,6 +2982,10 @@ declare const getOrganizationUsage: (endpoint: VerdocsEndpoint, organizationId:
2982
2982
  * @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
2983
2983
  * @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
2984
2984
  * @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
2985
+ * @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
2986
+ * @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
2987
+ * @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
2988
+ * @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
2985
2989
  * @apiSuccess IAuthenticateResponse . Authentication credentials for user in the new organization. The user will be made an Owner automatically.
2986
2990
  */
2987
2991
  declare const createOrganization: (endpoint: VerdocsEndpoint, params: {
@@ -3008,6 +3012,10 @@ declare const createOrganization: (endpoint: VerdocsEndpoint, params: {
3008
3012
  * @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
3009
3013
  * @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
3010
3014
  * @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
3015
+ * @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
3016
+ * @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
3017
+ * @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
3018
+ * @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
3011
3019
  * @apiSuccess IOrganization . The details for the updated organization
3012
3020
  */
3013
3021
  declare const updateOrganization: (endpoint: VerdocsEndpoint, organizationId: string, params: Partial<IOrganization>) => Promise<IOrganization>;
package/dist/index.js CHANGED
@@ -2864,7 +2864,7 @@ const resetRecipient = (endpoint, envelopeId, roleName) => endpoint.api //
2864
2864
  * sender to determine how to reply.
2865
2865
  *
2866
2866
  * @group Recipients
2867
- * @api POST /envelopes/:envelope_id/recipients/:role_name/ask-sender Ask Sender a Question
2867
+ * @api POST /envelopes/:envelope_id/recipients/:role_name/ask-question Ask Sender a Question
2868
2868
  * @apiParam string(format:uuid) envelope_id The envelope to operate on.
2869
2869
  * @apiParam string role_name The role name to update.
2870
2870
  * @apiBody string question The question to ask.
@@ -3526,6 +3526,10 @@ const getOrganizationUsage = (endpoint, organizationId, params) => endpoint.api
3526
3526
  * @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
3527
3527
  * @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
3528
3528
  * @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
3529
+ * @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
3530
+ * @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
3531
+ * @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
3532
+ * @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
3529
3533
  * @apiSuccess IAuthenticateResponse . Authentication credentials for user in the new organization. The user will be made an Owner automatically.
3530
3534
  */
3531
3535
  const createOrganization = (endpoint, params) => endpoint.api //
@@ -3549,6 +3553,10 @@ const createOrganization = (endpoint, params) => endpoint.api //
3549
3553
  * @apiBody string thumbnail_url? URL of a small-format (square is recommended) PNG logo
3550
3554
  * @apiBody string primary_color? URL of a small-format (square is recommended) PNG logo
3551
3555
  * @apiBody string secondary_color? URL of a small-format (square is recommended) PNG logo
3556
+ * @apiBody string terms_use_url? URL of a Terms of Use page, shown in bottom-right of signing experience. Hidden if not set.
3557
+ * @apiBody string privacy_policy_url? URL of a Privacy Policy page, shown in bottom-right of signing experience. Hidden if not set.
3558
+ * @apiBody string powered_by_label? "Powered-by..." label, shown in bottom-left of signing experience. Hidden if not set.
3559
+ * @apiBody string powered_by_url? URL for the Powered By label to show when clicked. Rendered as a static label if not set.
3552
3560
  * @apiSuccess IOrganization . The details for the updated organization
3553
3561
  */
3554
3562
  const updateOrganization = (endpoint, organizationId, params) => endpoint.api //