@verdocs/js-sdk 5.0.15 → 5.0.16
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 +11 -25
- package/dist/index.d.ts +11 -25
- package/dist/index.js +16 -11
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +16 -12
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +7 -7
- package/package.json +7 -7
package/dist/index.d.mts
CHANGED
|
@@ -689,28 +689,18 @@ interface IRecipient {
|
|
|
689
689
|
created_at: string;
|
|
690
690
|
updated_at: string;
|
|
691
691
|
last_attempt_at?: string;
|
|
692
|
+
/** The type of authentication required for this recipient. */
|
|
693
|
+
auth_method?: TRecipientAuthMethod;
|
|
692
694
|
/**
|
|
693
|
-
* If set
|
|
694
|
-
* created from this template. For privacy reasons, this field will only be visible to the creator
|
|
695
|
-
* of the envelope and the recipient referenced.
|
|
696
|
-
*/
|
|
697
|
-
kba_method?: TKBAMethod;
|
|
698
|
-
/**
|
|
699
|
-
* If KBA is set to "PIN" this will be set to the PIN code required. For security reasons, this
|
|
695
|
+
* If auth_method is set to "passcode" this is the passcode required. For security reasons, this
|
|
700
696
|
* field will only be visible to the creator of the envelope.
|
|
701
697
|
*/
|
|
702
|
-
|
|
703
|
-
/**
|
|
704
|
-
* If KBA has been completed successfully, this will be set to true. For privacy reasons, this
|
|
705
|
-
* field will only be visible to the creator of the envelope and the recipient referenced.
|
|
706
|
-
*/
|
|
707
|
-
kba_completed?: boolean;
|
|
698
|
+
passcode?: string | null;
|
|
708
699
|
/**
|
|
709
|
-
* If
|
|
710
|
-
*
|
|
711
|
-
* to the recipient referenced.
|
|
700
|
+
* If authentication has been completed successfully, this will be set to 'complete'. This is a union type
|
|
701
|
+
* to allow for future expansion with authentication modules that may require multiple steps.
|
|
712
702
|
*/
|
|
713
|
-
|
|
703
|
+
auth_step?: TRecipientAuthStep | null;
|
|
714
704
|
envelope?: IEnvelope;
|
|
715
705
|
profile?: IProfile;
|
|
716
706
|
}
|
|
@@ -746,12 +736,6 @@ interface IRole {
|
|
|
746
736
|
*/
|
|
747
737
|
order: number;
|
|
748
738
|
delegator: boolean | null;
|
|
749
|
-
/**
|
|
750
|
-
* If set, "KBA required" will carry through to automatically enable the same setting in Envelopes
|
|
751
|
-
* created from this template. Note that KBA details may not be specified here. They must be unique to
|
|
752
|
-
* each individual recipient and therefore cannot be set as defaults in the template.
|
|
753
|
-
*/
|
|
754
|
-
kba_method: TKBAMethod;
|
|
755
739
|
}
|
|
756
740
|
interface ISignature {
|
|
757
741
|
id: string;
|
|
@@ -959,8 +943,9 @@ type TEnvelopeUpdateResult = Omit<IEnvelope, "histories" | "recipients" | "certi
|
|
|
959
943
|
type TFieldType = "signature" | "initial" | "checkbox" | "radio" | "textbox" | "timestamp" | "date" | "dropdown" | "textarea" | "attachment" | "payment";
|
|
960
944
|
type TWebhookEvent = "envelope_created" | "envelope_completed" | "envelope_canceled" | "envelope_updated" | "template_created" | "template_updated" | "template_deleted" | "template_used";
|
|
961
945
|
type TTemplateVisibility = "private" | "shared" | "public";
|
|
962
|
-
type TKBAMethod = "pin" | "kba" | "id" | "sms" | "" | null;
|
|
963
946
|
type TEntitlement = "envelope" | "kba_auth" | "passcode_auth" | "sms_auth" | "kba_id_auth" | "id_auth";
|
|
947
|
+
type TRecipientAuthMethod = "kba_auth" | "passcode_auth" | "sms_auth" | "kba_id_auth" | "id_auth" | null;
|
|
948
|
+
type TRecipientAuthStep = "complete" | null;
|
|
964
949
|
declare const FIELD_TYPES: TFieldType[];
|
|
965
950
|
declare const DEFAULT_FIELD_WIDTHS: Record<TFieldType, number>;
|
|
966
951
|
declare const DEFAULT_FIELD_HEIGHTS: Record<TFieldType, number>;
|
|
@@ -3338,6 +3323,7 @@ declare function nameToRGBA(str: string): string | undefined;
|
|
|
3338
3323
|
*/
|
|
3339
3324
|
declare function getRoleColor(name: string, roles: TRole[], index?: number): string | undefined;
|
|
3340
3325
|
declare const formatShortTimeAgo: (val: any) => string;
|
|
3326
|
+
declare const collapseEntitlements: (entitlements: IEntitlement[]) => Partial<Record<TEntitlement, IEntitlement>>;
|
|
3341
3327
|
declare function getRTop(y: number, fieldHeight: number, iTextHeight: number, yRatio: number): number;
|
|
3342
3328
|
declare function getRLeft(x: number, ratio: number): number;
|
|
3343
3329
|
declare function getRValue(y: number, ratio: number): number;
|
|
@@ -3433,4 +3419,4 @@ declare const decodeJWTBody: (token: string) => any;
|
|
|
3433
3419
|
* the presence of the `document_id` field, which will only be present for signing sessions.
|
|
3434
3420
|
*/
|
|
3435
3421
|
declare const decodeAccessTokenBody: (token: string) => TSession;
|
|
3436
|
-
export { TRequestStatus, TTemplateSender, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, TDeprecatedHistoryEvent, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, TWebhookEvent, TTemplateVisibility,
|
|
3422
|
+
export { TRequestStatus, TTemplateSender, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, TDeprecatedHistoryEvent, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, TWebhookEvent, TTemplateVisibility, TEntitlement, TRecipientAuthMethod, TRecipientAuthStep, FIELD_TYPES, DEFAULT_FIELD_WIDTHS, DEFAULT_FIELD_HEIGHTS, WEBHOOK_EVENTS, ALL_PERMISSIONS, IChannel, IDisabledChannel, INotification, IApiKey, IGroup, IGroupProfile, IOAuth2App, IEntitlement, IOrganization, IOrganizationInvitation, IPendingWebhook, IProfile, IUser, IWebhookEvents, IWebhook, IInPersonAccessKey, IInAppAccessKey, IEmailAccessKey, ISMSAccessKey, TAccessKey, IEnvelope, IEnvelopeDocument, IDropdownOption, IEnvelopeField, IEnvelopeFieldOptions, IEnvelopeFieldSettings, IEnvelopeHistory, IInitial, IKbaPINRequired, IRecipient, IRole, ISignature, ITemplate, ITemplateDocument, ITemplateField, ITextFieldSetting, ITemplateFieldSetting, TEnvironment, TSessionChangedListener, VerdocsEndpointOptions, VerdocsEndpoint, createEnvelope, getEnvelope, getEnvelopeDocument, getDocumentDownloadLink, getDocumentPreviewLink, cancelEnvelope, getEnvelopeFile, updateEnvelope, updateEnvelopeField, updateEnvelopeFieldSignature, updateEnvelopeFieldInitials, uploadEnvelopeFieldAttachment, deleteEnvelopeFieldAttachment, getFieldAttachment, getEnvelopeDocumentPageDisplayUri, ITimeRange, IListEnvelopesParams, getEnvelopes, createInitials, IRecipientKbaStepNone, IRecipientKbaStepComplete, IRecipientKbaStepPin, IRecipientKbaStepIdentity, IRecipientKbaStepChallenge, IRecipientKbaStepFailed, TRecipientKbaStep, getKbaStep, submitKbaPin, IKbaIdentity, submitKbaIdentity, IKbaChallengeResponse, submitKbaChallengeResponse, updateRecipient, envelopeRecipientSubmit, envelopeRecipientDecline, envelopeRecipientChangeOwner, envelopeRecipientAgree, envelopeRecipientUpdateName, envelopeRecipientPrepare, startSigningSession, getInPersonLink, sendDelegate, resendInvitation, userIsEnvelopeOwner, userIsEnvelopeRecipient, envelopeIsActive, envelopeIsComplete, userCanCancelEnvelope, userCanFinishEnvelope, recipientHasAction, getRecipientsWithActions, recipientCanAct, userCanAct, userCanSignNow, getNextRecipient, createSignature, getSignatures, getSignature, deleteSignature, IEnvelopesSearchResult, IDocumentSearchOptions, ICreateEnvelopeRecipient, ISignerTokenResponse, IInPersonLinkResponse, IUpdateRecipientSubmitParams, IUpdateRecipientDeclineParams, IUpdateRecipientClaimEnvelope, IUpdateRecipientStatus, IUpdateRecipientAgreedParams, IUpdateRecipientNameParams, IUpdateRecipientPrepareParams, ICreateEnvelopeReminderRequest, ICreateEnvelopeFromTemplateRequest, ICreateEnvelopeDirectlyRequest, TCreateEnvelopeRequest, getApiKeys, createApiKey, rotateApiKey, updateApiKey, deleteApiKey, getOrganizationContacts, deleteOrganizationContact, createOrganizationContact, updateOrganizationContact, getGroups, getGroup, createGroup, updateGroup, deleteGroup, addGroupMember, deleteGroupMember, getOrganizationInvitations, createOrganizationInvitation, deleteOrganizationInvitation, updateOrganizationInvitation, resendOrganizationInvitation, getOrganizationInvitation, acceptOrganizationInvitation, declineOrganizationInvitation, getOrganizationMembers, deleteOrganizationMember, updateOrganizationMember, getOrganization, createOrganization, updateOrganization, deleteOrganization, updateOrganizationLogo, updateOrganizationThumbnail, getEntitlements, getActiveEntitlements, ICreateApiKeyRequest, IUpdateApiKeyRequest, ICreateInvitationRequest, IAcceptOrganizationInvitationRequest, ISetWebhookRequest, getWebhooks, setWebhooks, TTemplatePermissionCreatePublic, TTemplatePermissionCreateOrg, TTemplatePermissionCreatePersonal, TTemplatePermissionDelete, TTemplatePermissionVisibility, TTemplateMemberRead, TTemplateMemberWrite, TTemplateMemberDelete, TTemplateMemberVisibility, TTemplatePermission, TAccountPermissionOwnerAdd, TAccountPermissionOwnerRemove, TAccountPermissionAdminAdd, TAccountPermissionAdminRemove, TAccountPermissionMemberView, TAccountPermissionMemberAdd, TAccountPermissionMemberRemove, TAccountPermission, TOrgPermissionCreate, TOrgPermissionView, TOrgPermissionUpdate, TOrgPermissionDelete, TOrgPermissionTransfer, TOrgPermissionList, TOrgPermission, TEnvelopePermissionCreate, TEnvelopePermissionCancel, TEnvelopePermissionView, TEnvelopePermissionOrg, TEnvelopePermission, TPermission, TRole, RolePermissions, userHasPermissions, ISigningSession, IUserSession, IIdToken, TSessionType, TSession, TActiveSession, canPerformTemplateAction, hasRequiredPermissions, createField, updateField, deleteField, userIsTemplateCreator, userHasSharedTemplate, userCanCreatePersonalTemplate, userCanCreateOrgTemplate, userCanCreatePublicTemplate, userCanReadTemplate, userCanUpdateTemplate, userCanMakeTemplatePrivate, userCanMakeTemplateShared, userCanMakeTemplatePublic, userCanChangeOrgVisibility, userCanDeleteTemplate, userCanSendTemplate, userCanCreateTemplate, userCanBuildTemplate, getFieldsForRole, userCanPreviewTemplate, createTemplateRole, updateTemplateRole, deleteTemplateRole, getStars, toggleStar, addTemplateTag, getTemplateTags, deleteTemplateTag, createTag, getTag, getAllTags, ITemplateSortBy, TTemplateVisibilityFilter, IGetTemplatesParams, getTemplates, getTemplate, IDocumentFromUri, IDocumentFromData, ITemplateCreateParams, createTemplate, duplicateTemplate, ITemplateCreateFromSharepointParams, createTemplateFromSharepoint, updateTemplate, deleteTemplate, getTemplateDocuments, getTemplateDocument, createTemplateDocument, deleteTemplateDocument, getTemplateDocumentFile, getTemplateDocumentThumbnail, getTemplateDocumentPageDisplayUri, ITemplateTag, ITag, IStar, ITemplateSearchResult, IValidator, getValidators, getValidator, isValidEmail, isValidPhone, isValidRoleName, isValidTag, IROPCRequest, IClientCredentialsRequest, IRefreshTokenRequest, TAuthenticationRequest, authenticate, refreshToken, changePassword, resetPassword, resendVerification, verifyEmail, getMyUser, getNotifications, getProfiles, getCurrentProfile, switchProfile, updateProfile, deleteProfile, createProfile, updateProfilePhoto, ICreateProfileRequest, IUpdateProfileRequest, IAuthenticateResponse, IChangePasswordRequest, IChangePasswordResponse, IResetPasswordRequest, IResetPasswordResponse, IVerifyEmailRequest, getRGB, getRGBA, nameToRGBA, getRoleColor, formatShortTimeAgo, collapseEntitlements, getRTop, getRLeft, getRValue, blobToBase64, rescale, sortFields, fileToDataUrl, downloadBlob, Countries, getCountryByCode, isFrenchGuiana, isGuadeloupe, isMartinique, isMayotte, getPlusOneCountry, isCanada, isAmericanSamoa, isDominicanRepublic, isPuertoRico, getMatchingCountry, integerSequence, formatFullName, formatInitials, fullNameToInitials, capitalize, convertToE164, randomString, AtoB, decodeJWTBody, decodeAccessTokenBody, IFileWithData, ICountry };
|
package/dist/index.d.ts
CHANGED
|
@@ -689,28 +689,18 @@ interface IRecipient {
|
|
|
689
689
|
created_at: string;
|
|
690
690
|
updated_at: string;
|
|
691
691
|
last_attempt_at?: string;
|
|
692
|
+
/** The type of authentication required for this recipient. */
|
|
693
|
+
auth_method?: TRecipientAuthMethod;
|
|
692
694
|
/**
|
|
693
|
-
* If set
|
|
694
|
-
* created from this template. For privacy reasons, this field will only be visible to the creator
|
|
695
|
-
* of the envelope and the recipient referenced.
|
|
696
|
-
*/
|
|
697
|
-
kba_method?: TKBAMethod;
|
|
698
|
-
/**
|
|
699
|
-
* If KBA is set to "PIN" this will be set to the PIN code required. For security reasons, this
|
|
695
|
+
* If auth_method is set to "passcode" this is the passcode required. For security reasons, this
|
|
700
696
|
* field will only be visible to the creator of the envelope.
|
|
701
697
|
*/
|
|
702
|
-
|
|
703
|
-
/**
|
|
704
|
-
* If KBA has been completed successfully, this will be set to true. For privacy reasons, this
|
|
705
|
-
* field will only be visible to the creator of the envelope and the recipient referenced.
|
|
706
|
-
*/
|
|
707
|
-
kba_completed?: boolean;
|
|
698
|
+
passcode?: string | null;
|
|
708
699
|
/**
|
|
709
|
-
* If
|
|
710
|
-
*
|
|
711
|
-
* to the recipient referenced.
|
|
700
|
+
* If authentication has been completed successfully, this will be set to 'complete'. This is a union type
|
|
701
|
+
* to allow for future expansion with authentication modules that may require multiple steps.
|
|
712
702
|
*/
|
|
713
|
-
|
|
703
|
+
auth_step?: TRecipientAuthStep | null;
|
|
714
704
|
envelope?: IEnvelope;
|
|
715
705
|
profile?: IProfile;
|
|
716
706
|
}
|
|
@@ -746,12 +736,6 @@ interface IRole {
|
|
|
746
736
|
*/
|
|
747
737
|
order: number;
|
|
748
738
|
delegator: boolean | null;
|
|
749
|
-
/**
|
|
750
|
-
* If set, "KBA required" will carry through to automatically enable the same setting in Envelopes
|
|
751
|
-
* created from this template. Note that KBA details may not be specified here. They must be unique to
|
|
752
|
-
* each individual recipient and therefore cannot be set as defaults in the template.
|
|
753
|
-
*/
|
|
754
|
-
kba_method: TKBAMethod;
|
|
755
739
|
}
|
|
756
740
|
interface ISignature {
|
|
757
741
|
id: string;
|
|
@@ -959,8 +943,9 @@ type TEnvelopeUpdateResult = Omit<IEnvelope, "histories" | "recipients" | "certi
|
|
|
959
943
|
type TFieldType = "signature" | "initial" | "checkbox" | "radio" | "textbox" | "timestamp" | "date" | "dropdown" | "textarea" | "attachment" | "payment";
|
|
960
944
|
type TWebhookEvent = "envelope_created" | "envelope_completed" | "envelope_canceled" | "envelope_updated" | "template_created" | "template_updated" | "template_deleted" | "template_used";
|
|
961
945
|
type TTemplateVisibility = "private" | "shared" | "public";
|
|
962
|
-
type TKBAMethod = "pin" | "kba" | "id" | "sms" | "" | null;
|
|
963
946
|
type TEntitlement = "envelope" | "kba_auth" | "passcode_auth" | "sms_auth" | "kba_id_auth" | "id_auth";
|
|
947
|
+
type TRecipientAuthMethod = "kba_auth" | "passcode_auth" | "sms_auth" | "kba_id_auth" | "id_auth" | null;
|
|
948
|
+
type TRecipientAuthStep = "complete" | null;
|
|
964
949
|
declare const FIELD_TYPES: TFieldType[];
|
|
965
950
|
declare const DEFAULT_FIELD_WIDTHS: Record<TFieldType, number>;
|
|
966
951
|
declare const DEFAULT_FIELD_HEIGHTS: Record<TFieldType, number>;
|
|
@@ -3338,6 +3323,7 @@ declare function nameToRGBA(str: string): string | undefined;
|
|
|
3338
3323
|
*/
|
|
3339
3324
|
declare function getRoleColor(name: string, roles: TRole[], index?: number): string | undefined;
|
|
3340
3325
|
declare const formatShortTimeAgo: (val: any) => string;
|
|
3326
|
+
declare const collapseEntitlements: (entitlements: IEntitlement[]) => Partial<Record<TEntitlement, IEntitlement>>;
|
|
3341
3327
|
declare function getRTop(y: number, fieldHeight: number, iTextHeight: number, yRatio: number): number;
|
|
3342
3328
|
declare function getRLeft(x: number, ratio: number): number;
|
|
3343
3329
|
declare function getRValue(y: number, ratio: number): number;
|
|
@@ -3433,4 +3419,4 @@ declare const decodeJWTBody: (token: string) => any;
|
|
|
3433
3419
|
* the presence of the `document_id` field, which will only be present for signing sessions.
|
|
3434
3420
|
*/
|
|
3435
3421
|
declare const decodeAccessTokenBody: (token: string) => TSession;
|
|
3436
|
-
export { TRequestStatus, TTemplateSender, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, TDeprecatedHistoryEvent, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, TWebhookEvent, TTemplateVisibility,
|
|
3422
|
+
export { TRequestStatus, TTemplateSender, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, TDeprecatedHistoryEvent, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, TWebhookEvent, TTemplateVisibility, TEntitlement, TRecipientAuthMethod, TRecipientAuthStep, FIELD_TYPES, DEFAULT_FIELD_WIDTHS, DEFAULT_FIELD_HEIGHTS, WEBHOOK_EVENTS, ALL_PERMISSIONS, IChannel, IDisabledChannel, INotification, IApiKey, IGroup, IGroupProfile, IOAuth2App, IEntitlement, IOrganization, IOrganizationInvitation, IPendingWebhook, IProfile, IUser, IWebhookEvents, IWebhook, IInPersonAccessKey, IInAppAccessKey, IEmailAccessKey, ISMSAccessKey, TAccessKey, IEnvelope, IEnvelopeDocument, IDropdownOption, IEnvelopeField, IEnvelopeFieldOptions, IEnvelopeFieldSettings, IEnvelopeHistory, IInitial, IKbaPINRequired, IRecipient, IRole, ISignature, ITemplate, ITemplateDocument, ITemplateField, ITextFieldSetting, ITemplateFieldSetting, TEnvironment, TSessionChangedListener, VerdocsEndpointOptions, VerdocsEndpoint, createEnvelope, getEnvelope, getEnvelopeDocument, getDocumentDownloadLink, getDocumentPreviewLink, cancelEnvelope, getEnvelopeFile, updateEnvelope, updateEnvelopeField, updateEnvelopeFieldSignature, updateEnvelopeFieldInitials, uploadEnvelopeFieldAttachment, deleteEnvelopeFieldAttachment, getFieldAttachment, getEnvelopeDocumentPageDisplayUri, ITimeRange, IListEnvelopesParams, getEnvelopes, createInitials, IRecipientKbaStepNone, IRecipientKbaStepComplete, IRecipientKbaStepPin, IRecipientKbaStepIdentity, IRecipientKbaStepChallenge, IRecipientKbaStepFailed, TRecipientKbaStep, getKbaStep, submitKbaPin, IKbaIdentity, submitKbaIdentity, IKbaChallengeResponse, submitKbaChallengeResponse, updateRecipient, envelopeRecipientSubmit, envelopeRecipientDecline, envelopeRecipientChangeOwner, envelopeRecipientAgree, envelopeRecipientUpdateName, envelopeRecipientPrepare, startSigningSession, getInPersonLink, sendDelegate, resendInvitation, userIsEnvelopeOwner, userIsEnvelopeRecipient, envelopeIsActive, envelopeIsComplete, userCanCancelEnvelope, userCanFinishEnvelope, recipientHasAction, getRecipientsWithActions, recipientCanAct, userCanAct, userCanSignNow, getNextRecipient, createSignature, getSignatures, getSignature, deleteSignature, IEnvelopesSearchResult, IDocumentSearchOptions, ICreateEnvelopeRecipient, ISignerTokenResponse, IInPersonLinkResponse, IUpdateRecipientSubmitParams, IUpdateRecipientDeclineParams, IUpdateRecipientClaimEnvelope, IUpdateRecipientStatus, IUpdateRecipientAgreedParams, IUpdateRecipientNameParams, IUpdateRecipientPrepareParams, ICreateEnvelopeReminderRequest, ICreateEnvelopeFromTemplateRequest, ICreateEnvelopeDirectlyRequest, TCreateEnvelopeRequest, getApiKeys, createApiKey, rotateApiKey, updateApiKey, deleteApiKey, getOrganizationContacts, deleteOrganizationContact, createOrganizationContact, updateOrganizationContact, getGroups, getGroup, createGroup, updateGroup, deleteGroup, addGroupMember, deleteGroupMember, getOrganizationInvitations, createOrganizationInvitation, deleteOrganizationInvitation, updateOrganizationInvitation, resendOrganizationInvitation, getOrganizationInvitation, acceptOrganizationInvitation, declineOrganizationInvitation, getOrganizationMembers, deleteOrganizationMember, updateOrganizationMember, getOrganization, createOrganization, updateOrganization, deleteOrganization, updateOrganizationLogo, updateOrganizationThumbnail, getEntitlements, getActiveEntitlements, ICreateApiKeyRequest, IUpdateApiKeyRequest, ICreateInvitationRequest, IAcceptOrganizationInvitationRequest, ISetWebhookRequest, getWebhooks, setWebhooks, TTemplatePermissionCreatePublic, TTemplatePermissionCreateOrg, TTemplatePermissionCreatePersonal, TTemplatePermissionDelete, TTemplatePermissionVisibility, TTemplateMemberRead, TTemplateMemberWrite, TTemplateMemberDelete, TTemplateMemberVisibility, TTemplatePermission, TAccountPermissionOwnerAdd, TAccountPermissionOwnerRemove, TAccountPermissionAdminAdd, TAccountPermissionAdminRemove, TAccountPermissionMemberView, TAccountPermissionMemberAdd, TAccountPermissionMemberRemove, TAccountPermission, TOrgPermissionCreate, TOrgPermissionView, TOrgPermissionUpdate, TOrgPermissionDelete, TOrgPermissionTransfer, TOrgPermissionList, TOrgPermission, TEnvelopePermissionCreate, TEnvelopePermissionCancel, TEnvelopePermissionView, TEnvelopePermissionOrg, TEnvelopePermission, TPermission, TRole, RolePermissions, userHasPermissions, ISigningSession, IUserSession, IIdToken, TSessionType, TSession, TActiveSession, canPerformTemplateAction, hasRequiredPermissions, createField, updateField, deleteField, userIsTemplateCreator, userHasSharedTemplate, userCanCreatePersonalTemplate, userCanCreateOrgTemplate, userCanCreatePublicTemplate, userCanReadTemplate, userCanUpdateTemplate, userCanMakeTemplatePrivate, userCanMakeTemplateShared, userCanMakeTemplatePublic, userCanChangeOrgVisibility, userCanDeleteTemplate, userCanSendTemplate, userCanCreateTemplate, userCanBuildTemplate, getFieldsForRole, userCanPreviewTemplate, createTemplateRole, updateTemplateRole, deleteTemplateRole, getStars, toggleStar, addTemplateTag, getTemplateTags, deleteTemplateTag, createTag, getTag, getAllTags, ITemplateSortBy, TTemplateVisibilityFilter, IGetTemplatesParams, getTemplates, getTemplate, IDocumentFromUri, IDocumentFromData, ITemplateCreateParams, createTemplate, duplicateTemplate, ITemplateCreateFromSharepointParams, createTemplateFromSharepoint, updateTemplate, deleteTemplate, getTemplateDocuments, getTemplateDocument, createTemplateDocument, deleteTemplateDocument, getTemplateDocumentFile, getTemplateDocumentThumbnail, getTemplateDocumentPageDisplayUri, ITemplateTag, ITag, IStar, ITemplateSearchResult, IValidator, getValidators, getValidator, isValidEmail, isValidPhone, isValidRoleName, isValidTag, IROPCRequest, IClientCredentialsRequest, IRefreshTokenRequest, TAuthenticationRequest, authenticate, refreshToken, changePassword, resetPassword, resendVerification, verifyEmail, getMyUser, getNotifications, getProfiles, getCurrentProfile, switchProfile, updateProfile, deleteProfile, createProfile, updateProfilePhoto, ICreateProfileRequest, IUpdateProfileRequest, IAuthenticateResponse, IChangePasswordRequest, IChangePasswordResponse, IResetPasswordRequest, IResetPasswordResponse, IVerifyEmailRequest, getRGB, getRGBA, nameToRGBA, getRoleColor, formatShortTimeAgo, collapseEntitlements, getRTop, getRLeft, getRValue, blobToBase64, rescale, sortFields, fileToDataUrl, downloadBlob, Countries, getCountryByCode, isFrenchGuiana, isGuadeloupe, isMartinique, isMayotte, getPlusOneCountry, isCanada, isAmericanSamoa, isDominicanRepublic, isPuertoRico, getMatchingCountry, integerSequence, formatFullName, formatInitials, fullNameToInitials, capitalize, convertToE164, randomString, AtoB, decodeJWTBody, decodeAccessTokenBody, IFileWithData, ICountry };
|
package/dist/index.js
CHANGED
|
@@ -232,6 +232,19 @@ const formatShortTimeAgo = (val) => {
|
|
|
232
232
|
return `${timeDiff}S`;
|
|
233
233
|
};
|
|
234
234
|
|
|
235
|
+
const collapseEntitlements = (entitlements) => {
|
|
236
|
+
const now = new Date();
|
|
237
|
+
const activeEntitlements = {};
|
|
238
|
+
entitlements.forEach((entitlement) => {
|
|
239
|
+
const start = new Date(entitlement.starts_at);
|
|
240
|
+
const end = new Date(entitlement.ends_at);
|
|
241
|
+
if (now >= start && now <= end && !activeEntitlements[entitlement.feature]) {
|
|
242
|
+
activeEntitlements[entitlement.feature] = entitlement;
|
|
243
|
+
}
|
|
244
|
+
});
|
|
245
|
+
return activeEntitlements;
|
|
246
|
+
};
|
|
247
|
+
|
|
235
248
|
function getRTop(y, fieldHeight, iTextHeight, yRatio) {
|
|
236
249
|
return iTextHeight - (y + fieldHeight) * yRatio;
|
|
237
250
|
}
|
|
@@ -2683,17 +2696,8 @@ const getActiveEntitlements = async (endpoint) => {
|
|
|
2683
2696
|
if (!endpoint.session) {
|
|
2684
2697
|
throw new Error('No active session');
|
|
2685
2698
|
}
|
|
2686
|
-
const
|
|
2687
|
-
|
|
2688
|
-
const activeEntitlements = {};
|
|
2689
|
-
allEntitlements.forEach((entitlement) => {
|
|
2690
|
-
const start = new Date(entitlement.starts_at);
|
|
2691
|
-
const end = new Date(entitlement.ends_at);
|
|
2692
|
-
if (now >= start && now <= end && !activeEntitlements[entitlement.feature]) {
|
|
2693
|
-
activeEntitlements[entitlement.feature] = entitlement;
|
|
2694
|
-
}
|
|
2695
|
-
});
|
|
2696
|
-
return activeEntitlements;
|
|
2699
|
+
const entitlements = await getEntitlements(endpoint);
|
|
2700
|
+
return collapseEntitlements(entitlements);
|
|
2697
2701
|
};
|
|
2698
2702
|
|
|
2699
2703
|
/**
|
|
@@ -3594,6 +3598,7 @@ exports.canPerformTemplateAction = canPerformTemplateAction;
|
|
|
3594
3598
|
exports.cancelEnvelope = cancelEnvelope;
|
|
3595
3599
|
exports.capitalize = capitalize;
|
|
3596
3600
|
exports.changePassword = changePassword;
|
|
3601
|
+
exports.collapseEntitlements = collapseEntitlements;
|
|
3597
3602
|
exports.convertToE164 = convertToE164;
|
|
3598
3603
|
exports.createApiKey = createApiKey;
|
|
3599
3604
|
exports.createEnvelope = createEnvelope;
|