@verdocs/js-sdk 4.2.85 → 4.2.86
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 +21 -65
- package/dist/index.d.ts +21 -65
- package/dist/index.js +0 -60
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +1 -53
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +3 -2
- package/package.json +3 -2
package/dist/index.mjs
CHANGED
|
@@ -1702,32 +1702,6 @@ const resendInvitation = (endpoint, envelopeId, roleName) => endpoint.api //
|
|
|
1702
1702
|
.put(`/v2/envelopes/${envelopeId}/recipients/${encodeURIComponent(roleName)}`, { action: 'resend' })
|
|
1703
1703
|
.then((r) => r.data);
|
|
1704
1704
|
|
|
1705
|
-
/**
|
|
1706
|
-
* Enable automatic reminders. setup_time is the number of days after the envelope is sent that the first reminder
|
|
1707
|
-
* should be sent. interval_time is the number of days between reminders.
|
|
1708
|
-
*/
|
|
1709
|
-
const createEnvelopeReminder = (endpoint, envelopeId, params) => endpoint.api //
|
|
1710
|
-
.post(`/envelopes/${envelopeId}/reminder/`, params)
|
|
1711
|
-
.then((r) => r.data);
|
|
1712
|
-
/**
|
|
1713
|
-
* Get the reminder configuration for an envelope.
|
|
1714
|
-
*/
|
|
1715
|
-
const getEnvelopeReminder = (endpoint, envelopeId, reminderId) => endpoint.api //
|
|
1716
|
-
.get(`/envelopes/${envelopeId}/reminder/${reminderId}`)
|
|
1717
|
-
.then((r) => r.data);
|
|
1718
|
-
/**
|
|
1719
|
-
* Update the reminder configuration for an envelope.
|
|
1720
|
-
*/
|
|
1721
|
-
const updateEnvelopeReminder = (endpoint, envelopeId, reminderId, params) => endpoint.api //
|
|
1722
|
-
.put(`/envelopes/${envelopeId}/reminder/${reminderId}`, params)
|
|
1723
|
-
.then((r) => r.data);
|
|
1724
|
-
/**
|
|
1725
|
-
* Delete the reminder configuration for an envelope.
|
|
1726
|
-
*/
|
|
1727
|
-
const deleteEnvelopeReminder = (endpoint, envelopeId, reminderId) => endpoint.api //
|
|
1728
|
-
.delete(`/envelopes/${envelopeId}/reminder/${reminderId}`)
|
|
1729
|
-
.then((r) => r.data);
|
|
1730
|
-
|
|
1731
1705
|
/**
|
|
1732
1706
|
* Various helpers to identify available operations for an envelope by a user.
|
|
1733
1707
|
*
|
|
@@ -2589,32 +2563,6 @@ const userCanPreviewTemplate = (profile, template) => {
|
|
|
2589
2563
|
return hasPermission && signers.length > 0 && signers.every((signer) => getFieldsForRole(template, signer.name).length > 0);
|
|
2590
2564
|
};
|
|
2591
2565
|
|
|
2592
|
-
/**
|
|
2593
|
-
* Enable automatic reminders. setup_time is the number of days after the envelope is sent that the first reminder
|
|
2594
|
-
* should be sent. interval_time is the number of days between reminders.
|
|
2595
|
-
*/
|
|
2596
|
-
const createTemplateReminder = (endpoint, templateId, params) => endpoint.api //
|
|
2597
|
-
.post(`/templates/${templateId}/reminder/`, params)
|
|
2598
|
-
.then((r) => r.data);
|
|
2599
|
-
/**
|
|
2600
|
-
* Get the reminder configuration for a template.
|
|
2601
|
-
*/
|
|
2602
|
-
const getTemplateReminder = (endpoint, templateId, reminderId) => endpoint.api //
|
|
2603
|
-
.get(`/templates/${templateId}/reminder/${reminderId}`)
|
|
2604
|
-
.then((r) => r.data);
|
|
2605
|
-
/**
|
|
2606
|
-
* Update the reminder configuration for a template.
|
|
2607
|
-
*/
|
|
2608
|
-
const updateTemplateReminder = (endpoint, templateId, reminderId, params) => endpoint.api //
|
|
2609
|
-
.put(`/templates/${templateId}/reminder/${reminderId}`, params)
|
|
2610
|
-
.then((r) => r.data);
|
|
2611
|
-
/**
|
|
2612
|
-
* Delete the reminder configuration for a template.
|
|
2613
|
-
*/
|
|
2614
|
-
const deleteTemplateReminder = (endpoint, templateId, reminderId) => endpoint.api //
|
|
2615
|
-
.delete(`/templates/${templateId}/reminder/${reminderId}`)
|
|
2616
|
-
.then((r) => r.data);
|
|
2617
|
-
|
|
2618
2566
|
/**
|
|
2619
2567
|
* A "role" is an individual participant in a signing flow, such as a signer or CC contact.
|
|
2620
2568
|
* A role is a placeholder that will eventually become a named recipient. For example, "Tenant 1"
|
|
@@ -2974,5 +2922,5 @@ const isValidRoleName = (value, roles) => roles.findIndex((role) => role.name ==
|
|
|
2974
2922
|
const TagRegEx = /^[a-zA-Z0-9-]{0,32}$/;
|
|
2975
2923
|
const isValidTag = (value, tags) => TagRegEx.test(value) || tags.findIndex((tag) => tag === value) !== -1;
|
|
2976
2924
|
|
|
2977
|
-
export { ALL_PERMISSIONS, AtoB, Countries, DEFAULT_FIELD_HEIGHTS, DEFAULT_FIELD_WIDTHS, FIELD_TYPES, RolePermissions, VerdocsEndpoint, WEBHOOK_EVENTS, acceptOrganizationInvitation, addGroupMember, addTemplateTag, authenticate, blobToBase64, canPerformTemplateAction, cancelEnvelope, capitalize, changePassword, convertToE164, createApiKey, createEnvelope,
|
|
2925
|
+
export { ALL_PERMISSIONS, AtoB, Countries, DEFAULT_FIELD_HEIGHTS, DEFAULT_FIELD_WIDTHS, FIELD_TYPES, RolePermissions, VerdocsEndpoint, WEBHOOK_EVENTS, acceptOrganizationInvitation, addGroupMember, addTemplateTag, authenticate, blobToBase64, canPerformTemplateAction, cancelEnvelope, capitalize, changePassword, convertToE164, createApiKey, createEnvelope, createField, createGroup, createInitials, createOrganizationContact, createOrganizationInvitation, createProfile, createSignature, createTag, createTemplate, createTemplateDocument, createTemplateFromSharepoint, createTemplateRole, declineOrganizationInvitation, decodeAccessTokenBody, decodeJWTBody, deleteApiKey, deleteEnvelopeFieldAttachment, deleteField, deleteGroup, deleteGroupMember, deleteOrganizationContact, deleteOrganizationInvitation, deleteOrganizationMember, deleteProfile, deleteSignature, deleteTemplate, deleteTemplateDocument, deleteTemplateRole, deleteTemplateTag, downloadBlob, envelopeIsActive, envelopeIsComplete, envelopeRecipientAgree, envelopeRecipientChangeOwner, envelopeRecipientDecline, envelopeRecipientPrepare, envelopeRecipientSubmit, envelopeRecipientUpdateName, fileToDataUrl, formatFullName, formatInitials, formatShortTimeAgo, fullNameToInitials, getAllTags, getApiKeys, getCountryByCode, getCurrentProfile, getDocumentDownloadLink, getDocumentPreviewLink, getEnvelope, getEnvelopeDocument, getEnvelopeDocumentPageDisplayUri, getEnvelopeFile, getEnvelopes, getFieldAttachment, getFieldsForRole, getGroup, getGroups, getInPersonLink, getKbaStep, getMatchingCountry, getMyUser, getNextRecipient, getNotifications, getOrganization, getOrganizationContacts, getOrganizationInvitation, getOrganizationInvitations, getOrganizationMembers, getPlusOneCountry, getProfiles, getRGB, getRGBA, getRLeft, getRTop, getRValue, getRecipientsWithActions, getRoleColor, getSignature, getSignatures, getStars, getTag, getTemplate, getTemplateDocument, getTemplateDocumentFile, getTemplateDocumentPageDisplayUri, getTemplateDocumentThumbnail, getTemplateDocuments, getTemplateTags, getTemplates, getValidator, getValidators, getWebhooks, hasRequiredPermissions, integerSequence, isAmericanSamoa, isCanada, isDominicanRepublic, isFrenchGuiana, isGuadeloupe, isMartinique, isMayotte, isPuertoRico, isValidEmail, isValidPhone, isValidRoleName, isValidTag, nameToRGBA, randomString, recipientCanAct, recipientHasAction, refreshToken, rescale, resendInvitation, resendOrganizationInvitation, resendVerification, resetPassword, rotateApiKey, sendDelegate, setWebhooks, startSigningSession, submitKbaChallengeResponse, submitKbaIdentity, submitKbaPin, switchProfile, toggleStar, updateApiKey, updateEnvelopeField, updateEnvelopeFieldInitials, updateEnvelopeFieldSignature, updateField, updateGroup, updateOrganization, updateOrganizationContact, updateOrganizationInvitation, updateOrganizationLogo, updateOrganizationMember, updateOrganizationThumbnail, updateProfile, updateProfilePhoto, updateRecipient, updateTemplate, updateTemplateRole, uploadEnvelopeFieldAttachment, userCanAct, userCanBuildTemplate, userCanCancelEnvelope, userCanChangeOrgVisibility, userCanCreateOrgTemplate, userCanCreatePersonalTemplate, userCanCreatePublicTemplate, userCanCreateTemplate, userCanDeleteTemplate, userCanFinishEnvelope, userCanMakeTemplatePrivate, userCanMakeTemplatePublic, userCanMakeTemplateShared, userCanPreviewTemplate, userCanReadTemplate, userCanSendTemplate, userCanSignNow, userCanUpdateTemplate, userHasPermissions, userHasSharedTemplate, userIsEnvelopeOwner, userIsEnvelopeRecipient, userIsTemplateCreator, verifyEmail };
|
|
2978
2926
|
//# sourceMappingURL=index.mjs.map
|