@verdocs/js-sdk 4.2.9 → 4.2.11
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 +43 -13
- package/dist/index.d.ts +43 -13
- package/dist/index.js +46 -22
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +47 -20
- package/dist/index.mjs.map +1 -1
- package/dist/package.json +1 -1
- package/package.json +1 -1
package/dist/index.d.mts
CHANGED
|
@@ -149,7 +149,7 @@ declare const userHasPermissions: (profile: IProfile | null | undefined, permiss
|
|
|
149
149
|
interface ISigningSession {
|
|
150
150
|
aud: string;
|
|
151
151
|
iss: string;
|
|
152
|
-
sub: string; // Verdocs
|
|
152
|
+
sub: string; // Verdocs access key ID
|
|
153
153
|
email: string;
|
|
154
154
|
email_verified: boolean;
|
|
155
155
|
iat: number;
|
|
@@ -173,6 +173,17 @@ interface IUserSession {
|
|
|
173
173
|
"https://verdocs.com/profile_id": string;
|
|
174
174
|
"https://verdocs.com/organization_id": string;
|
|
175
175
|
}
|
|
176
|
+
interface IIdToken {
|
|
177
|
+
aud: string;
|
|
178
|
+
iss: string;
|
|
179
|
+
sub: string; // Auth0 user_id
|
|
180
|
+
email: string;
|
|
181
|
+
email_verified: boolean;
|
|
182
|
+
organization_id: string;
|
|
183
|
+
first_name: string;
|
|
184
|
+
last_name: string;
|
|
185
|
+
phone: string;
|
|
186
|
+
}
|
|
176
187
|
/**
|
|
177
188
|
* Verdocs supports two types of authenticated sessions: User and Signing. Both behave similarly and have similar
|
|
178
189
|
* properties, but signing sessions only have access to a small set of signing-related functions.
|
|
@@ -1251,11 +1262,6 @@ declare const createEnvelope: (endpoint: VerdocsEndpoint, request: ICreateEnvelo
|
|
|
1251
1262
|
* ```
|
|
1252
1263
|
*/
|
|
1253
1264
|
declare const getEnvelopesSummary: (endpoint: VerdocsEndpoint, page: number) => Promise<IEnvelopesSummary>;
|
|
1254
|
-
interface ISigningSessionResult {
|
|
1255
|
-
recipient: IRecipient;
|
|
1256
|
-
session: ISigningSession;
|
|
1257
|
-
signerToken: string;
|
|
1258
|
-
}
|
|
1259
1265
|
/**
|
|
1260
1266
|
* Get the list of recipients for an Envelope.
|
|
1261
1267
|
*/
|
|
@@ -2203,12 +2209,36 @@ declare const updateTemplateReminder: (endpoint: VerdocsEndpoint, templateId: st
|
|
|
2203
2209
|
* Delete the reminder configuration for a template.
|
|
2204
2210
|
*/
|
|
2205
2211
|
declare const deleteTemplateReminder: (endpoint: VerdocsEndpoint, templateId: string, reminderId: string) => Promise<any>;
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
+
/**
|
|
2213
|
+
* Create a role.
|
|
2214
|
+
*
|
|
2215
|
+
* ```typescript
|
|
2216
|
+
* import {createTemplateRole} from '@verdocs/js-sdk';
|
|
2217
|
+
*
|
|
2218
|
+
* const role = await createTemplateRole(VerdocsEndpoint.getDefault(), template_id, params...);
|
|
2219
|
+
* ```
|
|
2220
|
+
*/
|
|
2221
|
+
declare const createTemplateRole: (endpoint: VerdocsEndpoint, template_id: string, params: IRole) => Promise<IRole>;
|
|
2222
|
+
/**
|
|
2223
|
+
* Update a role.
|
|
2224
|
+
*
|
|
2225
|
+
* ```typescript
|
|
2226
|
+
* import {updateTemplateRole} from '@verdocs/js-sdk';
|
|
2227
|
+
*
|
|
2228
|
+
* const role = await updateTemplateRole(VerdocsEndpoint.getDefault(), template_id, name, params...);
|
|
2229
|
+
* ```
|
|
2230
|
+
*/
|
|
2231
|
+
declare const updateTemplateRole: (endpoint: VerdocsEndpoint, template_id: string, name: string, params: Partial<IRole>) => Promise<IRole>;
|
|
2232
|
+
/**
|
|
2233
|
+
* Delete a role.
|
|
2234
|
+
*
|
|
2235
|
+
* ```typescript
|
|
2236
|
+
* import {deleteTemplateRole} from '@verdocs/js-sdk';
|
|
2237
|
+
*
|
|
2238
|
+
* const profiles = await deleteTemplateRole(VerdocsEndpoint.getDefault(), template_id, name);
|
|
2239
|
+
* ```
|
|
2240
|
+
*/
|
|
2241
|
+
declare const deleteTemplateRole: (endpoint: VerdocsEndpoint, template_id: string, name: string) => Promise<any>;
|
|
2212
2242
|
/**
|
|
2213
2243
|
* Given a `rgba(r,g,b,a)` string value, returns the hex equivalent, dropping the alpha channel.
|
|
2214
2244
|
*/
|
|
@@ -2680,4 +2710,4 @@ declare const isValidEmail: (email: string | undefined) => boolean;
|
|
|
2680
2710
|
declare const isValidPhone: (phone: string | undefined) => boolean;
|
|
2681
2711
|
declare const isValidRoleName: (value: string, roles: IRole[]) => boolean;
|
|
2682
2712
|
declare const isValidTag: (value: string, tags: string[]) => boolean;
|
|
2683
|
-
export { TRequestStatus, TTemplateSenderType, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, IChannel, IDisabledChannel, INotification, IApiKey, IGroup, IGroupProfile, IOAuth2App, IOrganization, IOrganizationInvitation, IPendingWebhook, IProfile, IWebhookEvents, IWebhook, IInPersonAccessKey, IInAppAccessKey, IEmailAccessKey, ISMSAccessKey, TAccessKey, IEnvelope, IEnvelopeDocument, IEnvelopeField, IEnvelopeFieldOptions, IEnvelopeFieldSettings, IEnvelopeHistory, IInitial, IKbaPINRequired, IRecipient, IReminder, IRole, ISignature, ITemplate, ITemplateDocument, ITemplateField, ITextFieldSetting, ITemplateFieldSetting, TEnvironment, TSessionChangedListener, VerdocsEndpointOptions, VerdocsEndpoint, createEnvelope, getEnvelopesSummary,
|
|
2713
|
+
export { TRequestStatus, TTemplateSenderType, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, IChannel, IDisabledChannel, INotification, IApiKey, IGroup, IGroupProfile, IOAuth2App, IOrganization, IOrganizationInvitation, IPendingWebhook, IProfile, IWebhookEvents, IWebhook, IInPersonAccessKey, IInAppAccessKey, IEmailAccessKey, ISMSAccessKey, TAccessKey, IEnvelope, IEnvelopeDocument, IEnvelopeField, IEnvelopeFieldOptions, IEnvelopeFieldSettings, IEnvelopeHistory, IInitial, IKbaPINRequired, IRecipient, IReminder, IRole, ISignature, ITemplate, ITemplateDocument, ITemplateField, ITextFieldSetting, ITemplateFieldSetting, TEnvironment, TSessionChangedListener, VerdocsEndpointOptions, VerdocsEndpoint, createEnvelope, getEnvelopesSummary, getEnvelopeRecipients, getEnvelope, getEnvelopeDocument, getDocumentDownloadLink, getDocumentPreviewLink, cancelEnvelope, getEnvelopeFile, 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, ISignerTokenResponse, getSigningSession, getSignerToken, getInPersonLink, sendDelegate, resendInvitation, createEnvelopeReminder, getEnvelopeReminder, updateEnvelopeReminder, deleteEnvelopeReminder, userIsEnvelopeOwner, userIsEnvelopeRecipient, envelopeIsActive, envelopeIsComplete, userCanCancelEnvelope, userCanFinishEnvelope, recipientHasAction, getRecipientsWithActions, recipientCanAct, userCanAct, userCanSignNow, getNextRecipient, createSignature, getSignatures, getSignature, deleteSignature, IEnvelopesSearchResult, IEnvelopesSummary, IDocumentSearchOptions, ICreateEnvelopeRole, IEnvelopeSummaries, IInPersonLinkResponse, IUpdateRecipientSubmitParams, IUpdateRecipientDeclineParams, IUpdateRecipientClaimEnvelope, IUpdateRecipientStatus, IUpdateRecipientAgreedParams, IUpdateRecipientNameParams, IUpdateRecipientPrepareParams, ICreateEnvelopeReminderRequest, ICreateEnvelopeRequest, getApiKeys, createApiKey, rotateApiKey, updateApiKey, deleteApiKey, getGroups, getGroup, createGroup, addGroupMember, deleteGroupMember, updateGroup, getOrganizationInvitations, createOrganizationInvitation, deleteOrganizationInvitation, updateOrganizationInvitation, resendOrganizationInvitation, getOrganizationInvitation, acceptOrganizationInvitation, declineOrganizationInvitation, getOrganizationMembers, deleteOrganizationMember, updateOrganizationMember, getOrganization, updateOrganization, updateOrganizationLogo, updateOrganizationThumbnail, 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, ICreateTemplateReminderRequest, createTemplateReminder, getTemplateReminder, updateTemplateReminder, deleteTemplateReminder, createTemplateRole, updateTemplateRole, deleteTemplateRole, getStars, toggleStar, addTemplateTag, getTemplateTags, deleteTemplateTag, createTag, getTag, getAllTags, IGetTemplatesParams, getTemplates, getTemplate, IDocumentFromUri, IDocumentFromData, ITemplateCreateParams, createTemplate, ITemplateCreateFromSharepointParams, createTemplateFromSharepoint, updateTemplate, deleteTemplate, searchTemplates, ISearchTimeRange, IGetTemplateSummarySortBy, IGetTemplateSummaryParams, ITemplateListParams, listTemplates, getTemplateDocuments, getTemplateDocument, createTemplateDocument, deleteTemplateDocument, getTemplateDocumentFile, getTemplateDocumentThumbnail, getTemplateDocumentPageDisplayUri, ITemplateSearchParams, ITemplateTag, ITag, IStar, ITemplateSearchResult, IValidator, getValidators, getValidator, isValidEmail, isValidPhone, isValidRoleName, isValidTag, IROPCRequest, IClientCredentialsRequest, IRefreshTokenRequest, TAuthenticationRequest, authenticate, refreshToken, changePassword, resetPassword, verifyEmail, resendVerification, getNotifications, getProfiles, getCurrentProfile, getProfile, switchProfile, updateProfile, deleteProfile, createProfile, updateProfilePhoto, IUpdateProfileRequest, IAuthenticateResponse, IUpdatePasswordRequest, IUpdatePasswordResponse, ICreateAccountRequest, getRGB, getRGBA, nameToRGBA, getRoleColor, formatShortTimeAgo, timePeriod, getRTop, getRLeft, getRValue, blobToBase64, rescale, fileToDataUrl, downloadBlob, Countries, getCountryByCode, isFrenchGuiana, isGuadeloupe, isMartinique, isMayotte, getPlusOneCountry, isCanada, isAmericanSamoa, isDominicanRepublic, isPuertoRico, getMatchingCountry, integerSequence, formatFullName, formatInitials, fullNameToInitials, capitalize, convertToE164, AtoB, decodeJWTBody, decodeAccessTokenBody, IFileWithData, ICountry, ITimePeriod };
|
package/dist/index.d.ts
CHANGED
|
@@ -149,7 +149,7 @@ declare const userHasPermissions: (profile: IProfile | null | undefined, permiss
|
|
|
149
149
|
interface ISigningSession {
|
|
150
150
|
aud: string;
|
|
151
151
|
iss: string;
|
|
152
|
-
sub: string; // Verdocs
|
|
152
|
+
sub: string; // Verdocs access key ID
|
|
153
153
|
email: string;
|
|
154
154
|
email_verified: boolean;
|
|
155
155
|
iat: number;
|
|
@@ -173,6 +173,17 @@ interface IUserSession {
|
|
|
173
173
|
"https://verdocs.com/profile_id": string;
|
|
174
174
|
"https://verdocs.com/organization_id": string;
|
|
175
175
|
}
|
|
176
|
+
interface IIdToken {
|
|
177
|
+
aud: string;
|
|
178
|
+
iss: string;
|
|
179
|
+
sub: string; // Auth0 user_id
|
|
180
|
+
email: string;
|
|
181
|
+
email_verified: boolean;
|
|
182
|
+
organization_id: string;
|
|
183
|
+
first_name: string;
|
|
184
|
+
last_name: string;
|
|
185
|
+
phone: string;
|
|
186
|
+
}
|
|
176
187
|
/**
|
|
177
188
|
* Verdocs supports two types of authenticated sessions: User and Signing. Both behave similarly and have similar
|
|
178
189
|
* properties, but signing sessions only have access to a small set of signing-related functions.
|
|
@@ -1251,11 +1262,6 @@ declare const createEnvelope: (endpoint: VerdocsEndpoint, request: ICreateEnvelo
|
|
|
1251
1262
|
* ```
|
|
1252
1263
|
*/
|
|
1253
1264
|
declare const getEnvelopesSummary: (endpoint: VerdocsEndpoint, page: number) => Promise<IEnvelopesSummary>;
|
|
1254
|
-
interface ISigningSessionResult {
|
|
1255
|
-
recipient: IRecipient;
|
|
1256
|
-
session: ISigningSession;
|
|
1257
|
-
signerToken: string;
|
|
1258
|
-
}
|
|
1259
1265
|
/**
|
|
1260
1266
|
* Get the list of recipients for an Envelope.
|
|
1261
1267
|
*/
|
|
@@ -2203,12 +2209,36 @@ declare const updateTemplateReminder: (endpoint: VerdocsEndpoint, templateId: st
|
|
|
2203
2209
|
* Delete the reminder configuration for a template.
|
|
2204
2210
|
*/
|
|
2205
2211
|
declare const deleteTemplateReminder: (endpoint: VerdocsEndpoint, templateId: string, reminderId: string) => Promise<any>;
|
|
2206
|
-
|
|
2207
|
-
|
|
2208
|
-
|
|
2209
|
-
|
|
2210
|
-
|
|
2211
|
-
|
|
2212
|
+
/**
|
|
2213
|
+
* Create a role.
|
|
2214
|
+
*
|
|
2215
|
+
* ```typescript
|
|
2216
|
+
* import {createTemplateRole} from '@verdocs/js-sdk';
|
|
2217
|
+
*
|
|
2218
|
+
* const role = await createTemplateRole(VerdocsEndpoint.getDefault(), template_id, params...);
|
|
2219
|
+
* ```
|
|
2220
|
+
*/
|
|
2221
|
+
declare const createTemplateRole: (endpoint: VerdocsEndpoint, template_id: string, params: IRole) => Promise<IRole>;
|
|
2222
|
+
/**
|
|
2223
|
+
* Update a role.
|
|
2224
|
+
*
|
|
2225
|
+
* ```typescript
|
|
2226
|
+
* import {updateTemplateRole} from '@verdocs/js-sdk';
|
|
2227
|
+
*
|
|
2228
|
+
* const role = await updateTemplateRole(VerdocsEndpoint.getDefault(), template_id, name, params...);
|
|
2229
|
+
* ```
|
|
2230
|
+
*/
|
|
2231
|
+
declare const updateTemplateRole: (endpoint: VerdocsEndpoint, template_id: string, name: string, params: Partial<IRole>) => Promise<IRole>;
|
|
2232
|
+
/**
|
|
2233
|
+
* Delete a role.
|
|
2234
|
+
*
|
|
2235
|
+
* ```typescript
|
|
2236
|
+
* import {deleteTemplateRole} from '@verdocs/js-sdk';
|
|
2237
|
+
*
|
|
2238
|
+
* const profiles = await deleteTemplateRole(VerdocsEndpoint.getDefault(), template_id, name);
|
|
2239
|
+
* ```
|
|
2240
|
+
*/
|
|
2241
|
+
declare const deleteTemplateRole: (endpoint: VerdocsEndpoint, template_id: string, name: string) => Promise<any>;
|
|
2212
2242
|
/**
|
|
2213
2243
|
* Given a `rgba(r,g,b,a)` string value, returns the hex equivalent, dropping the alpha channel.
|
|
2214
2244
|
*/
|
|
@@ -2680,4 +2710,4 @@ declare const isValidEmail: (email: string | undefined) => boolean;
|
|
|
2680
2710
|
declare const isValidPhone: (phone: string | undefined) => boolean;
|
|
2681
2711
|
declare const isValidRoleName: (value: string, roles: IRole[]) => boolean;
|
|
2682
2712
|
declare const isValidTag: (value: string, tags: string[]) => boolean;
|
|
2683
|
-
export { TRequestStatus, TTemplateSenderType, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, IChannel, IDisabledChannel, INotification, IApiKey, IGroup, IGroupProfile, IOAuth2App, IOrganization, IOrganizationInvitation, IPendingWebhook, IProfile, IWebhookEvents, IWebhook, IInPersonAccessKey, IInAppAccessKey, IEmailAccessKey, ISMSAccessKey, TAccessKey, IEnvelope, IEnvelopeDocument, IEnvelopeField, IEnvelopeFieldOptions, IEnvelopeFieldSettings, IEnvelopeHistory, IInitial, IKbaPINRequired, IRecipient, IReminder, IRole, ISignature, ITemplate, ITemplateDocument, ITemplateField, ITextFieldSetting, ITemplateFieldSetting, TEnvironment, TSessionChangedListener, VerdocsEndpointOptions, VerdocsEndpoint, createEnvelope, getEnvelopesSummary,
|
|
2713
|
+
export { TRequestStatus, TTemplateSenderType, TTemplateAction, TRecipientAction, TEnvelopeStatus, TRecipientStatus, TRecipientType, TSortTemplateBy, TAccessKeyType, TApiKeyPermission, THistoryEvent, TEventDetail, TEnvelopeUpdateResult, TFieldType, IChannel, IDisabledChannel, INotification, IApiKey, IGroup, IGroupProfile, IOAuth2App, IOrganization, IOrganizationInvitation, IPendingWebhook, IProfile, IWebhookEvents, IWebhook, IInPersonAccessKey, IInAppAccessKey, IEmailAccessKey, ISMSAccessKey, TAccessKey, IEnvelope, IEnvelopeDocument, IEnvelopeField, IEnvelopeFieldOptions, IEnvelopeFieldSettings, IEnvelopeHistory, IInitial, IKbaPINRequired, IRecipient, IReminder, IRole, ISignature, ITemplate, ITemplateDocument, ITemplateField, ITextFieldSetting, ITemplateFieldSetting, TEnvironment, TSessionChangedListener, VerdocsEndpointOptions, VerdocsEndpoint, createEnvelope, getEnvelopesSummary, getEnvelopeRecipients, getEnvelope, getEnvelopeDocument, getDocumentDownloadLink, getDocumentPreviewLink, cancelEnvelope, getEnvelopeFile, 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, ISignerTokenResponse, getSigningSession, getSignerToken, getInPersonLink, sendDelegate, resendInvitation, createEnvelopeReminder, getEnvelopeReminder, updateEnvelopeReminder, deleteEnvelopeReminder, userIsEnvelopeOwner, userIsEnvelopeRecipient, envelopeIsActive, envelopeIsComplete, userCanCancelEnvelope, userCanFinishEnvelope, recipientHasAction, getRecipientsWithActions, recipientCanAct, userCanAct, userCanSignNow, getNextRecipient, createSignature, getSignatures, getSignature, deleteSignature, IEnvelopesSearchResult, IEnvelopesSummary, IDocumentSearchOptions, ICreateEnvelopeRole, IEnvelopeSummaries, IInPersonLinkResponse, IUpdateRecipientSubmitParams, IUpdateRecipientDeclineParams, IUpdateRecipientClaimEnvelope, IUpdateRecipientStatus, IUpdateRecipientAgreedParams, IUpdateRecipientNameParams, IUpdateRecipientPrepareParams, ICreateEnvelopeReminderRequest, ICreateEnvelopeRequest, getApiKeys, createApiKey, rotateApiKey, updateApiKey, deleteApiKey, getGroups, getGroup, createGroup, addGroupMember, deleteGroupMember, updateGroup, getOrganizationInvitations, createOrganizationInvitation, deleteOrganizationInvitation, updateOrganizationInvitation, resendOrganizationInvitation, getOrganizationInvitation, acceptOrganizationInvitation, declineOrganizationInvitation, getOrganizationMembers, deleteOrganizationMember, updateOrganizationMember, getOrganization, updateOrganization, updateOrganizationLogo, updateOrganizationThumbnail, 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, ICreateTemplateReminderRequest, createTemplateReminder, getTemplateReminder, updateTemplateReminder, deleteTemplateReminder, createTemplateRole, updateTemplateRole, deleteTemplateRole, getStars, toggleStar, addTemplateTag, getTemplateTags, deleteTemplateTag, createTag, getTag, getAllTags, IGetTemplatesParams, getTemplates, getTemplate, IDocumentFromUri, IDocumentFromData, ITemplateCreateParams, createTemplate, ITemplateCreateFromSharepointParams, createTemplateFromSharepoint, updateTemplate, deleteTemplate, searchTemplates, ISearchTimeRange, IGetTemplateSummarySortBy, IGetTemplateSummaryParams, ITemplateListParams, listTemplates, getTemplateDocuments, getTemplateDocument, createTemplateDocument, deleteTemplateDocument, getTemplateDocumentFile, getTemplateDocumentThumbnail, getTemplateDocumentPageDisplayUri, ITemplateSearchParams, ITemplateTag, ITag, IStar, ITemplateSearchResult, IValidator, getValidators, getValidator, isValidEmail, isValidPhone, isValidRoleName, isValidTag, IROPCRequest, IClientCredentialsRequest, IRefreshTokenRequest, TAuthenticationRequest, authenticate, refreshToken, changePassword, resetPassword, verifyEmail, resendVerification, getNotifications, getProfiles, getCurrentProfile, getProfile, switchProfile, updateProfile, deleteProfile, createProfile, updateProfilePhoto, IUpdateProfileRequest, IAuthenticateResponse, IUpdatePasswordRequest, IUpdatePasswordResponse, ICreateAccountRequest, getRGB, getRGBA, nameToRGBA, getRoleColor, formatShortTimeAgo, timePeriod, getRTop, getRLeft, getRValue, blobToBase64, rescale, fileToDataUrl, downloadBlob, Countries, getCountryByCode, isFrenchGuiana, isGuadeloupe, isMartinique, isMayotte, getPlusOneCountry, isCanada, isAmericanSamoa, isDominicanRepublic, isPuertoRico, getMatchingCountry, integerSequence, formatFullName, formatInitials, fullNameToInitials, capitalize, convertToE164, AtoB, decodeJWTBody, decodeAccessTokenBody, IFileWithData, ICountry, ITimePeriod };
|
package/dist/index.js
CHANGED
|
@@ -1558,7 +1558,7 @@ const getEnvelopeDocumentPageDisplayUri = async (endpoint, envelopeId, documentI
|
|
|
1558
1558
|
* ```
|
|
1559
1559
|
*/
|
|
1560
1560
|
const getEnvelopes = (endpoint, params) => endpoint.api //
|
|
1561
|
-
.get('/envelopes', { params })
|
|
1561
|
+
.get('/v2/envelopes', { params })
|
|
1562
1562
|
.then((r) => r.data);
|
|
1563
1563
|
|
|
1564
1564
|
/**
|
|
@@ -2412,6 +2412,7 @@ const userCanSendTemplate = (profile, template) => {
|
|
|
2412
2412
|
case 'organization_member':
|
|
2413
2413
|
case 'organization_member_as_creator':
|
|
2414
2414
|
return userIsTemplateCreator(profile, template) || template.organization_id === profile?.organization_id;
|
|
2415
|
+
// 'everyone' | 'everyone_as_creator';
|
|
2415
2416
|
default:
|
|
2416
2417
|
return true;
|
|
2417
2418
|
}
|
|
@@ -2463,29 +2464,55 @@ const deleteTemplateReminder = (endpoint, templateId, reminderId) => endpoint.ap
|
|
|
2463
2464
|
.then((r) => r.data);
|
|
2464
2465
|
|
|
2465
2466
|
/**
|
|
2466
|
-
* A "role" is an individual participant in a signing flow, such as a signer or CC contact.
|
|
2467
|
-
*
|
|
2468
|
-
*
|
|
2467
|
+
* A "role" is an individual participant in a signing flow, such as a signer or CC contact.
|
|
2468
|
+
* A role is a placeholder that will eventually become a named recipient. For example, "Tenant 1"
|
|
2469
|
+
* might be replaced with "John Smith" when the document is sent out for signature.
|
|
2470
|
+
*
|
|
2471
|
+
* Role names must be unique within a template, e.g. 'Recipient 1'. They may contain any [a-zA-Z0-9_- ]
|
|
2472
|
+
* characters, although it is recommended to keep them simple and human-readable, and to avoid
|
|
2473
|
+
* spaces (although they are allowed). If spaces are used in role names, be sure to URL-encode them
|
|
2474
|
+
* when calling endpoints like `updateRole()` e.g. 'Recipient%201'.
|
|
2475
|
+
*
|
|
2476
|
+
* NOTE: Roles are always enumerated under Template objects, so there are no "list" or "get" endpoints
|
|
2477
|
+
* for them. To get a template's latest role list, simply call `getTemplate()`.
|
|
2469
2478
|
*
|
|
2470
2479
|
* @module
|
|
2471
2480
|
*/
|
|
2472
|
-
|
|
2473
|
-
|
|
2474
|
-
|
|
2475
|
-
|
|
2476
|
-
|
|
2477
|
-
|
|
2478
|
-
const
|
|
2479
|
-
|
|
2480
|
-
|
|
2481
|
-
const
|
|
2482
|
-
.
|
|
2481
|
+
/**
|
|
2482
|
+
* Create a role.
|
|
2483
|
+
*
|
|
2484
|
+
* ```typescript
|
|
2485
|
+
* import {createTemplateRole} from '@verdocs/js-sdk';
|
|
2486
|
+
*
|
|
2487
|
+
* const role = await createTemplateRole(VerdocsEndpoint.getDefault(), template_id, params...);
|
|
2488
|
+
* ```
|
|
2489
|
+
*/
|
|
2490
|
+
const createTemplateRole = (endpoint, template_id, params) => endpoint.api //
|
|
2491
|
+
.post(`/v2/templates/${template_id}/roles`, params)
|
|
2483
2492
|
.then((r) => r.data);
|
|
2484
|
-
|
|
2485
|
-
|
|
2493
|
+
/**
|
|
2494
|
+
* Update a role.
|
|
2495
|
+
*
|
|
2496
|
+
* ```typescript
|
|
2497
|
+
* import {updateTemplateRole} from '@verdocs/js-sdk';
|
|
2498
|
+
*
|
|
2499
|
+
* const role = await updateTemplateRole(VerdocsEndpoint.getDefault(), template_id, name, params...);
|
|
2500
|
+
* ```
|
|
2501
|
+
*/
|
|
2502
|
+
const updateTemplateRole = (endpoint, template_id, name, params) => endpoint.api //
|
|
2503
|
+
.put(`/v2/templates/${template_id}/roles/${name}`, params)
|
|
2486
2504
|
.then((r) => r.data);
|
|
2487
|
-
|
|
2488
|
-
|
|
2505
|
+
/**
|
|
2506
|
+
* Delete a role.
|
|
2507
|
+
*
|
|
2508
|
+
* ```typescript
|
|
2509
|
+
* import {deleteTemplateRole} from '@verdocs/js-sdk';
|
|
2510
|
+
*
|
|
2511
|
+
* const profiles = await deleteTemplateRole(VerdocsEndpoint.getDefault(), template_id, name);
|
|
2512
|
+
* ```
|
|
2513
|
+
*/
|
|
2514
|
+
const deleteTemplateRole = (endpoint, template_id, name) => endpoint.api //
|
|
2515
|
+
.delete(`/v2/templates/${template_id}/roles/${name}`)
|
|
2489
2516
|
.then((r) => r.data);
|
|
2490
2517
|
|
|
2491
2518
|
/**
|
|
@@ -2949,9 +2976,6 @@ exports.getTemplateDocumentPageDisplayUri = getTemplateDocumentPageDisplayUri;
|
|
|
2949
2976
|
exports.getTemplateDocumentThumbnail = getTemplateDocumentThumbnail;
|
|
2950
2977
|
exports.getTemplateDocuments = getTemplateDocuments;
|
|
2951
2978
|
exports.getTemplateReminder = getTemplateReminder;
|
|
2952
|
-
exports.getTemplateRole = getTemplateRole;
|
|
2953
|
-
exports.getTemplateRoleFields = getTemplateRoleFields;
|
|
2954
|
-
exports.getTemplateRoles = getTemplateRoles;
|
|
2955
2979
|
exports.getTemplateTags = getTemplateTags;
|
|
2956
2980
|
exports.getTemplates = getTemplates;
|
|
2957
2981
|
exports.getValidator = getValidator;
|