boldsign 3.2.0 → 3.3.0
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/.openapi-generator/FILES +36 -0
- package/README.md +37 -0
- package/WebhookUtility.ts +145 -0
- package/api/apis.ts +1 -1
- package/api/brandingApi.ts +20 -20
- package/api/contactsApi.ts +3 -3
- package/api/customFieldApi.ts +3 -3
- package/api/documentApi.ts +152 -23
- package/api/groupContactsApi.ts +3 -3
- package/api/identityVerificationApi.ts +3 -3
- package/api/senderIdentitiesApi.ts +6 -6
- package/api/teamsApi.ts +1 -1
- package/api/templateApi.ts +142 -13
- package/api/userApi.ts +2 -2
- package/docs/AccessCodeDetail.md +1 -0
- package/docs/BehalfOfWebhookModel.md +12 -0
- package/docs/BrandingApi.md +20 -20
- package/docs/CheckboxValidationSettings.md +13 -0
- package/docs/ContactsApi.md +3 -3
- package/docs/CreateTemplateRequest.md +1 -0
- package/docs/CustomFieldApi.md +3 -3
- package/docs/CustomFormField.md +2 -0
- package/docs/DocumentApi.md +56 -22
- package/docs/DocumentCcWebhookModel.md +12 -0
- package/docs/DocumentEvent.md +37 -0
- package/docs/DocumentGroupSignerWebhookModel.md +18 -0
- package/docs/DocumentProperties.md +1 -0
- package/docs/DocumentSender.md +14 -0
- package/docs/DocumentSigner.md +1 -0
- package/docs/DocumentSignerDetails.md +1 -0
- package/docs/DocumentSignerWebhookModel.md +37 -0
- package/docs/EditDocumentJsonFile.md +14 -0
- package/docs/EditDocumentRequest.md +1 -0
- package/docs/EditDocumentSigner.md +1 -0
- package/docs/EditTemplateRequest.md +1 -0
- package/docs/EmbeddedCloneDocumentJsonRequest.md +22 -0
- package/docs/EmbeddedCloneTemplateJsonRequest.md +22 -0
- package/docs/EmbeddedClonedDocument.md +12 -0
- package/docs/EmbeddedClonedTemplate.md +12 -0
- package/docs/EmbeddedCreateTemplateRequest.md +1 -0
- package/docs/EmbeddedDocumentRequest.md +1 -0
- package/docs/EmbeddedMergeTemplateFormRequest.md +1 -0
- package/docs/EmbeddedSendTemplateFormRequest.md +1 -0
- package/docs/ErrorResponse.md +12 -0
- package/docs/FormFieldPermissionWebhookModel.md +13 -0
- package/docs/GroupContactsApi.md +3 -3
- package/docs/GroupOption.md +12 -0
- package/docs/GroupSignerSettingsWebhookModel.md +12 -0
- package/docs/IWebhookData.md +56 -0
- package/docs/{IdVerification.md → IdVerificationSignerWebhookModel.md} +1 -1
- package/docs/IdentityVerificationApi.md +3 -3
- package/docs/IdentityVerificationEvent.md +17 -0
- package/docs/KbaAuthenticationEvent.md +17 -0
- package/docs/{ProblemDetails.md → KbaDetails.md} +4 -5
- package/docs/KbaSettings.md +13 -0
- package/docs/KbaSignerWebhookModel.md +14 -0
- package/docs/MergeAndSendForSignForm.md +1 -0
- package/docs/PhoneNumberWebhookModel.md +12 -0
- package/docs/Role.md +1 -0
- package/docs/SendForSign.md +1 -0
- package/docs/SendForSignFromTemplateForm.md +1 -0
- package/docs/SenderIdentitiesApi.md +6 -6
- package/docs/SenderIdentityCreator.md +14 -0
- package/docs/SenderIdentityEvent.md +23 -0
- package/docs/SignerAuthenticationWebhookModel.md +12 -0
- package/docs/TeamsApi.md +1 -1
- package/docs/TemplateApi.md +46 -12
- package/docs/TemplateCcWebhookModel.md +13 -0
- package/docs/TemplateEvent.md +36 -0
- package/docs/TemplateFormFields.md +1 -0
- package/docs/TemplateGroupSignerWebhookModel.md +12 -0
- package/docs/TemplateProperties.md +1 -0
- package/docs/TemplateSender.md +15 -0
- package/docs/TemplateShareErrorResponse.md +14 -0
- package/docs/TemplateShareRequest.md +11 -0
- package/docs/TemplateSigner.md +29 -0
- package/docs/TemplateTeamShareRequest.md +13 -0
- package/docs/UserApi.md +2 -2
- package/docs/WebhookActorDetails.md +12 -0
- package/docs/WebhookContext.md +13 -0
- package/docs/WebhookEvent.md +14 -0
- package/docs/WebhookEventMetadata.md +15 -0
- package/model/accessCodeDetail.ts +9 -1
- package/model/auditTrail.ts +7 -1
- package/model/behalfOfWebhookModel.ts +37 -0
- package/model/checkboxValidationSettings.ts +51 -0
- package/model/createTemplateRequest.ts +6 -0
- package/model/customFormField.ts +14 -0
- package/model/documentCcWebhookModel.ts +37 -0
- package/model/documentEvent.ts +213 -0
- package/model/documentGroupSignerWebhookModel.ts +83 -0
- package/model/documentProperties.ts +6 -0
- package/model/documentSender.ts +49 -0
- package/model/documentSigner.ts +9 -1
- package/model/documentSignerDetails.ts +9 -1
- package/model/documentSignerWebhookModel.ts +202 -0
- package/model/editDocumentJsonFile.ts +57 -0
- package/model/editDocumentRequest.ts +6 -0
- package/model/editDocumentSigner.ts +9 -1
- package/model/editTemplateRequest.ts +6 -0
- package/model/embeddedCloneDocumentJsonRequest.ts +126 -0
- package/model/embeddedCloneTemplateJsonRequest.ts +126 -0
- package/model/embeddedClonedDocument.ts +37 -0
- package/model/embeddedClonedTemplate.ts +37 -0
- package/model/embeddedCreateTemplateRequest.ts +6 -0
- package/model/embeddedDocumentRequest.ts +6 -0
- package/model/embeddedMergeTemplateFormRequest.ts +6 -0
- package/model/embeddedSendTemplateFormRequest.ts +6 -0
- package/model/formFieldPermissionWebhookModel.ts +43 -0
- package/model/groupOption.ts +37 -0
- package/model/groupSignerSettingsWebhookModel.ts +37 -0
- package/model/iWebhookData.ts +335 -0
- package/model/{idVerification.ts → idVerificationSignerWebhookModel.ts} +2 -2
- package/model/identityVerificationEvent.ts +80 -0
- package/model/index.ts +129 -0
- package/model/kbaAuthenticationEvent.ts +80 -0
- package/model/{problemDetails.ts → kbaDetails.ts} +11 -17
- package/model/kbaSettings.ts +57 -0
- package/model/kbaSignerWebhookModel.ts +49 -0
- package/model/mergeAndSendForSignForm.ts +6 -0
- package/model/phoneNumberWebhookModel.ts +37 -0
- package/model/role.ts +9 -1
- package/model/roles.ts +2 -1
- package/model/sendForSign.ts +6 -0
- package/model/sendForSignFromTemplateForm.ts +6 -0
- package/model/senderIdentityCreator.ts +49 -0
- package/model/senderIdentityEvent.ts +104 -0
- package/model/signerAuthenticationWebhookModel.ts +37 -0
- package/model/templateCcWebhookModel.ts +43 -0
- package/model/templateEvent.ts +198 -0
- package/model/templateFormFields.ts +6 -0
- package/model/templateGroupSignerWebhookModel.ts +37 -0
- package/model/templateProperties.ts +6 -0
- package/model/templateRole.ts +2 -1
- package/model/templateSender.ts +55 -0
- package/model/templateSigner.ts +151 -0
- package/model/templateSignerDetails.ts +2 -1
- package/model/webhookActorDetails.ts +47 -0
- package/model/webhookContext.ts +82 -0
- package/model/webhookEvent.ts +53 -0
- package/model/webhookEventMetadata.ts +97 -0
- package/package.json +1 -1
- package/dist/api/apis.d.ts +0 -29
- package/dist/api/apis.js +0 -149
- package/dist/api/apis.js.map +0 -1
- package/dist/api/brandingApi.d.ts +0 -29
- package/dist/api/brandingApi.js +0 -776
- package/dist/api/brandingApi.js.map +0 -1
- package/dist/api/contactsApi.d.ts +0 -28
- package/dist/api/contactsApi.js +0 -501
- package/dist/api/contactsApi.js.map +0 -1
- package/dist/api/customFieldApi.d.ts +0 -28
- package/dist/api/customFieldApi.js +0 -519
- package/dist/api/customFieldApi.js.map +0 -1
- package/dist/api/documentApi.d.ts +0 -48
- package/dist/api/documentApi.js +0 -2259
- package/dist/api/documentApi.js.map +0 -1
- package/dist/api/groupContactsApi.d.ts +0 -28
- package/dist/api/groupContactsApi.js +0 -507
- package/dist/api/groupContactsApi.js.map +0 -1
- package/dist/api/identityVerificationApi.d.ts +0 -26
- package/dist/api/identityVerificationApi.js +0 -369
- package/dist/api/identityVerificationApi.js.map +0 -1
- package/dist/api/index.d.ts +0 -14
- package/dist/api/index.js +0 -33
- package/dist/api/index.js.map +0 -1
- package/dist/api/planApi.d.ts +0 -24
- package/dist/api/planApi.js +0 -174
- package/dist/api/planApi.js.map +0 -1
- package/dist/api/senderIdentitiesApi.d.ts +0 -30
- package/dist/api/senderIdentitiesApi.js +0 -663
- package/dist/api/senderIdentitiesApi.js.map +0 -1
- package/dist/api/teamsApi.d.ts +0 -27
- package/dist/api/teamsApi.js +0 -426
- package/dist/api/teamsApi.js.map +0 -1
- package/dist/api/templateApi.d.ts +0 -39
- package/dist/api/templateApi.js +0 -1425
- package/dist/api/templateApi.js.map +0 -1
- package/dist/api/userApi.d.ts +0 -31
- package/dist/api/userApi.js +0 -723
- package/dist/api/userApi.js.map +0 -1
- package/dist/api.d.ts +0 -2
- package/dist/api.js +0 -19
- package/dist/api.js.map +0 -1
- package/dist/model/accessCodeDetail.d.ts +0 -34
- package/dist/model/accessCodeDetail.js +0 -68
- package/dist/model/accessCodeDetail.js.map +0 -1
- package/dist/model/accessCodeDetails.d.ts +0 -17
- package/dist/model/accessCodeDetails.js +0 -28
- package/dist/model/accessCodeDetails.js.map +0 -1
- package/dist/model/added.d.ts +0 -16
- package/dist/model/added.js +0 -28
- package/dist/model/added.js.map +0 -1
- package/dist/model/address.d.ts +0 -19
- package/dist/model/address.js +0 -43
- package/dist/model/address.js.map +0 -1
- package/dist/model/attachmentInfo.d.ts +0 -17
- package/dist/model/attachmentInfo.js +0 -33
- package/dist/model/attachmentInfo.js.map +0 -1
- package/dist/model/auditTrail.d.ts +0 -114
- package/dist/model/auditTrail.js +0 -173
- package/dist/model/auditTrail.js.map +0 -1
- package/dist/model/authenticationSettings.d.ts +0 -22
- package/dist/model/authenticationSettings.js +0 -27
- package/dist/model/authenticationSettings.js.map +0 -1
- package/dist/model/base64File.d.ts +0 -15
- package/dist/model/base64File.js +0 -23
- package/dist/model/base64File.js.map +0 -1
- package/dist/model/behalfDocument.d.ts +0 -47
- package/dist/model/behalfDocument.js +0 -120
- package/dist/model/behalfDocument.js.map +0 -1
- package/dist/model/behalfDocumentRecords.d.ts +0 -17
- package/dist/model/behalfDocumentRecords.js +0 -23
- package/dist/model/behalfDocumentRecords.js.map +0 -1
- package/dist/model/behalfOf.d.ts +0 -15
- package/dist/model/behalfOf.js +0 -23
- package/dist/model/behalfOf.js.map +0 -1
- package/dist/model/billingViewModel.d.ts +0 -14
- package/dist/model/billingViewModel.js +0 -18
- package/dist/model/billingViewModel.js.map +0 -1
- package/dist/model/brandCreated.d.ts +0 -14
- package/dist/model/brandCreated.js +0 -18
- package/dist/model/brandCreated.js.map +0 -1
- package/dist/model/brandCustomFieldDetails.d.ts +0 -20
- package/dist/model/brandCustomFieldDetails.js +0 -46
- package/dist/model/brandCustomFieldDetails.js.map +0 -1
- package/dist/model/brandingMessage.d.ts +0 -14
- package/dist/model/brandingMessage.js +0 -18
- package/dist/model/brandingMessage.js.map +0 -1
- package/dist/model/brandingRecords.d.ts +0 -15
- package/dist/model/brandingRecords.js +0 -18
- package/dist/model/brandingRecords.js.map +0 -1
- package/dist/model/changeRecipient.d.ts +0 -22
- package/dist/model/changeRecipient.js +0 -53
- package/dist/model/changeRecipient.js.map +0 -1
- package/dist/model/changeTeamRequest.d.ts +0 -15
- package/dist/model/changeTeamRequest.js +0 -23
- package/dist/model/changeTeamRequest.js.map +0 -1
- package/dist/model/collaborationSettings.d.ts +0 -17
- package/dist/model/collaborationSettings.js +0 -33
- package/dist/model/collaborationSettings.js.map +0 -1
- package/dist/model/conditionalRule.d.ts +0 -16
- package/dist/model/conditionalRule.js +0 -28
- package/dist/model/conditionalRule.js.map +0 -1
- package/dist/model/contactCreated.d.ts +0 -15
- package/dist/model/contactCreated.js +0 -23
- package/dist/model/contactCreated.js.map +0 -1
- package/dist/model/contactDetails.d.ts +0 -19
- package/dist/model/contactDetails.js +0 -38
- package/dist/model/contactDetails.js.map +0 -1
- package/dist/model/contactPageDetails.d.ts +0 -16
- package/dist/model/contactPageDetails.js +0 -28
- package/dist/model/contactPageDetails.js.map +0 -1
- package/dist/model/contactsDetails.d.ts +0 -20
- package/dist/model/contactsDetails.js +0 -43
- package/dist/model/contactsDetails.js.map +0 -1
- package/dist/model/contactsList.d.ts +0 -17
- package/dist/model/contactsList.js +0 -23
- package/dist/model/contactsList.js.map +0 -1
- package/dist/model/createContactResponse.d.ts +0 -15
- package/dist/model/createContactResponse.js +0 -18
- package/dist/model/createContactResponse.js.map +0 -1
- package/dist/model/createGroupContactResponse.d.ts +0 -15
- package/dist/model/createGroupContactResponse.js +0 -23
- package/dist/model/createGroupContactResponse.js.map +0 -1
- package/dist/model/createSenderIdentityRequest.d.ts +0 -48
- package/dist/model/createSenderIdentityRequest.js +0 -74
- package/dist/model/createSenderIdentityRequest.js.map +0 -1
- package/dist/model/createTeamRequest.d.ts +0 -14
- package/dist/model/createTeamRequest.js +0 -18
- package/dist/model/createTeamRequest.js.map +0 -1
- package/dist/model/createTemplateRequest.d.ts +0 -58
- package/dist/model/createTemplateRequest.js +0 -177
- package/dist/model/createTemplateRequest.js.map +0 -1
- package/dist/model/createUser.d.ts +0 -26
- package/dist/model/createUser.js +0 -41
- package/dist/model/createUser.js.map +0 -1
- package/dist/model/creators.d.ts +0 -15
- package/dist/model/creators.js +0 -23
- package/dist/model/creators.js.map +0 -1
- package/dist/model/customDomainSettings.d.ts +0 -15
- package/dist/model/customDomainSettings.js +0 -23
- package/dist/model/customDomainSettings.js.map +0 -1
- package/dist/model/customFieldCollection.d.ts +0 -15
- package/dist/model/customFieldCollection.js +0 -18
- package/dist/model/customFieldCollection.js.map +0 -1
- package/dist/model/customFieldMessage.d.ts +0 -15
- package/dist/model/customFieldMessage.js +0 -23
- package/dist/model/customFieldMessage.js.map +0 -1
- package/dist/model/customFormField.d.ts +0 -100
- package/dist/model/customFormField.js +0 -246
- package/dist/model/customFormField.js.map +0 -1
- package/dist/model/deleteCustomFieldReply.d.ts +0 -14
- package/dist/model/deleteCustomFieldReply.js +0 -18
- package/dist/model/deleteCustomFieldReply.js.map +0 -1
- package/dist/model/document.d.ts +0 -45
- package/dist/model/document.js +0 -115
- package/dist/model/document.js.map +0 -1
- package/dist/model/documentCC.d.ts +0 -14
- package/dist/model/documentCC.js +0 -18
- package/dist/model/documentCC.js.map +0 -1
- package/dist/model/documentCcDetails.d.ts +0 -15
- package/dist/model/documentCcDetails.js +0 -26
- package/dist/model/documentCcDetails.js.map +0 -1
- package/dist/model/documentCreated.d.ts +0 -14
- package/dist/model/documentCreated.js +0 -18
- package/dist/model/documentCreated.js.map +0 -1
- package/dist/model/documentEdited.d.ts +0 -20
- package/dist/model/documentEdited.js +0 -25
- package/dist/model/documentEdited.js.map +0 -1
- package/dist/model/documentExpirySettings.d.ts +0 -26
- package/dist/model/documentExpirySettings.js +0 -51
- package/dist/model/documentExpirySettings.js.map +0 -1
- package/dist/model/documentFiles.d.ts +0 -19
- package/dist/model/documentFiles.js +0 -43
- package/dist/model/documentFiles.js.map +0 -1
- package/dist/model/documentFormFields.d.ts +0 -89
- package/dist/model/documentFormFields.js +0 -260
- package/dist/model/documentFormFields.js.map +0 -1
- package/dist/model/documentInfo.d.ts +0 -65
- package/dist/model/documentInfo.js +0 -83
- package/dist/model/documentInfo.js.map +0 -1
- package/dist/model/documentProperties.d.ts +0 -119
- package/dist/model/documentProperties.js +0 -298
- package/dist/model/documentProperties.js.map +0 -1
- package/dist/model/documentReassign.d.ts +0 -16
- package/dist/model/documentReassign.js +0 -31
- package/dist/model/documentReassign.js.map +0 -1
- package/dist/model/documentRecords.d.ts +0 -17
- package/dist/model/documentRecords.js +0 -23
- package/dist/model/documentRecords.js.map +0 -1
- package/dist/model/documentSenderDetail.d.ts +0 -17
- package/dist/model/documentSenderDetail.js +0 -36
- package/dist/model/documentSenderDetail.js.map +0 -1
- package/dist/model/documentSigner.d.ts +0 -112
- package/dist/model/documentSigner.js +0 -209
- package/dist/model/documentSigner.js.map +0 -1
- package/dist/model/documentSignerDetails.d.ts +0 -128
- package/dist/model/documentSignerDetails.js +0 -261
- package/dist/model/documentSignerDetails.js.map +0 -1
- package/dist/model/documentTags.d.ts +0 -15
- package/dist/model/documentTags.js +0 -23
- package/dist/model/documentTags.js.map +0 -1
- package/dist/model/downloadImageRequest.d.ts +0 -19
- package/dist/model/downloadImageRequest.js +0 -43
- package/dist/model/downloadImageRequest.js.map +0 -1
- package/dist/model/editDocumentFile.d.ts +0 -25
- package/dist/model/editDocumentFile.js +0 -41
- package/dist/model/editDocumentFile.js.map +0 -1
- package/dist/model/editDocumentRequest.d.ts +0 -71
- package/dist/model/editDocumentRequest.js +0 -187
- package/dist/model/editDocumentRequest.js.map +0 -1
- package/dist/model/editDocumentSigner.d.ts +0 -118
- package/dist/model/editDocumentSigner.js +0 -220
- package/dist/model/editDocumentSigner.js.map +0 -1
- package/dist/model/editFormField.d.ts +0 -116
- package/dist/model/editFormField.js +0 -288
- package/dist/model/editFormField.js.map +0 -1
- package/dist/model/editSenderIdentityRequest.d.ts +0 -46
- package/dist/model/editSenderIdentityRequest.js +0 -64
- package/dist/model/editSenderIdentityRequest.js.map +0 -1
- package/dist/model/editTemplateRequest.d.ts +0 -51
- package/dist/model/editTemplateRequest.js +0 -141
- package/dist/model/editTemplateRequest.js.map +0 -1
- package/dist/model/editableDateFieldSettings.d.ts +0 -17
- package/dist/model/editableDateFieldSettings.js +0 -33
- package/dist/model/editableDateFieldSettings.js.map +0 -1
- package/dist/model/embeddedCreateTemplateRequest.d.ts +0 -96
- package/dist/model/embeddedCreateTemplateRequest.js +0 -269
- package/dist/model/embeddedCreateTemplateRequest.js.map +0 -1
- package/dist/model/embeddedCustomFieldCreated.d.ts +0 -14
- package/dist/model/embeddedCustomFieldCreated.js +0 -18
- package/dist/model/embeddedCustomFieldCreated.js.map +0 -1
- package/dist/model/embeddedDocumentEditJsonRequest.d.ts +0 -51
- package/dist/model/embeddedDocumentEditJsonRequest.js +0 -97
- package/dist/model/embeddedDocumentEditJsonRequest.js.map +0 -1
- package/dist/model/embeddedDocumentEdited.d.ts +0 -14
- package/dist/model/embeddedDocumentEdited.js +0 -18
- package/dist/model/embeddedDocumentEdited.js.map +0 -1
- package/dist/model/embeddedDocumentRequest.d.ts +0 -115
- package/dist/model/embeddedDocumentRequest.js +0 -322
- package/dist/model/embeddedDocumentRequest.js.map +0 -1
- package/dist/model/embeddedFileDetails.d.ts +0 -19
- package/dist/model/embeddedFileDetails.js +0 -43
- package/dist/model/embeddedFileDetails.js.map +0 -1
- package/dist/model/embeddedFileLink.d.ts +0 -14
- package/dist/model/embeddedFileLink.js +0 -18
- package/dist/model/embeddedFileLink.js.map +0 -1
- package/dist/model/embeddedMergeTemplateFormRequest.d.ts +0 -116
- package/dist/model/embeddedMergeTemplateFormRequest.js +0 -311
- package/dist/model/embeddedMergeTemplateFormRequest.js.map +0 -1
- package/dist/model/embeddedSendCreated.d.ts +0 -15
- package/dist/model/embeddedSendCreated.js +0 -23
- package/dist/model/embeddedSendCreated.js.map +0 -1
- package/dist/model/embeddedSendTemplateFormRequest.d.ts +0 -112
- package/dist/model/embeddedSendTemplateFormRequest.js +0 -296
- package/dist/model/embeddedSendTemplateFormRequest.js.map +0 -1
- package/dist/model/embeddedSigningLink.d.ts +0 -14
- package/dist/model/embeddedSigningLink.js +0 -18
- package/dist/model/embeddedSigningLink.js.map +0 -1
- package/dist/model/embeddedTemplateCreated.d.ts +0 -15
- package/dist/model/embeddedTemplateCreated.js +0 -23
- package/dist/model/embeddedTemplateCreated.js.map +0 -1
- package/dist/model/embeddedTemplateEditRequest.d.ts +0 -53
- package/dist/model/embeddedTemplateEditRequest.js +0 -109
- package/dist/model/embeddedTemplateEditRequest.js.map +0 -1
- package/dist/model/embeddedTemplateEdited.d.ts +0 -14
- package/dist/model/embeddedTemplateEdited.js +0 -18
- package/dist/model/embeddedTemplateEdited.js.map +0 -1
- package/dist/model/embeddedTemplatePreview.d.ts +0 -14
- package/dist/model/embeddedTemplatePreview.js +0 -18
- package/dist/model/embeddedTemplatePreview.js.map +0 -1
- package/dist/model/embeddedTemplatePreviewJsonRequest.d.ts +0 -15
- package/dist/model/embeddedTemplatePreviewJsonRequest.js +0 -23
- package/dist/model/embeddedTemplatePreviewJsonRequest.js.map +0 -1
- package/dist/model/errorResponse.d.ts +0 -15
- package/dist/model/errorResponse.js +0 -23
- package/dist/model/errorResponse.js.map +0 -1
- package/dist/model/errorResult.d.ts +0 -14
- package/dist/model/errorResult.js +0 -18
- package/dist/model/errorResult.js.map +0 -1
- package/dist/model/existingFormField.d.ts +0 -18
- package/dist/model/existingFormField.js +0 -38
- package/dist/model/existingFormField.js.map +0 -1
- package/dist/model/extendExpiry.d.ts +0 -17
- package/dist/model/extendExpiry.js +0 -33
- package/dist/model/extendExpiry.js.map +0 -1
- package/dist/model/fileInfo.d.ts +0 -17
- package/dist/model/fileInfo.js +0 -33
- package/dist/model/fileInfo.js.map +0 -1
- package/dist/model/font.d.ts +0 -36
- package/dist/model/font.js +0 -70
- package/dist/model/font.js.map +0 -1
- package/dist/model/formField.d.ts +0 -113
- package/dist/model/formField.js +0 -287
- package/dist/model/formField.js.map +0 -1
- package/dist/model/formFieldPermission.d.ts +0 -16
- package/dist/model/formFieldPermission.js +0 -28
- package/dist/model/formFieldPermission.js.map +0 -1
- package/dist/model/formGroup.d.ts +0 -26
- package/dist/model/formGroup.js +0 -47
- package/dist/model/formGroup.js.map +0 -1
- package/dist/model/formulaFieldSettings.d.ts +0 -15
- package/dist/model/formulaFieldSettings.js +0 -26
- package/dist/model/formulaFieldSettings.js.map +0 -1
- package/dist/model/getGroupContactDetails.d.ts +0 -20
- package/dist/model/getGroupContactDetails.js +0 -38
- package/dist/model/getGroupContactDetails.js.map +0 -1
- package/dist/model/groupContact.d.ts +0 -18
- package/dist/model/groupContact.js +0 -33
- package/dist/model/groupContact.js.map +0 -1
- package/dist/model/groupContactDetails.d.ts +0 -17
- package/dist/model/groupContactDetails.js +0 -28
- package/dist/model/groupContactDetails.js.map +0 -1
- package/dist/model/groupContactsList.d.ts +0 -17
- package/dist/model/groupContactsList.js +0 -23
- package/dist/model/groupContactsList.js.map +0 -1
- package/dist/model/groupSigner.d.ts +0 -30
- package/dist/model/groupSigner.js +0 -59
- package/dist/model/groupSigner.js.map +0 -1
- package/dist/model/groupSignerSettings.d.ts +0 -15
- package/dist/model/groupSignerSettings.js +0 -23
- package/dist/model/groupSignerSettings.js.map +0 -1
- package/dist/model/groupUser.d.ts +0 -15
- package/dist/model/groupUser.js +0 -23
- package/dist/model/groupUser.js.map +0 -1
- package/dist/model/idDocument.d.ts +0 -26
- package/dist/model/idDocument.js +0 -68
- package/dist/model/idDocument.js.map +0 -1
- package/dist/model/idReport.d.ts +0 -18
- package/dist/model/idReport.js +0 -33
- package/dist/model/idReport.js.map +0 -1
- package/dist/model/idVerification.d.ts +0 -22
- package/dist/model/idVerification.js +0 -58
- package/dist/model/idVerification.js.map +0 -1
- package/dist/model/idVerificationDetails.d.ts +0 -23
- package/dist/model/idVerificationDetails.js +0 -63
- package/dist/model/idVerificationDetails.js.map +0 -1
- package/dist/model/identityVerificationSettings.d.ts +0 -37
- package/dist/model/identityVerificationSettings.js +0 -68
- package/dist/model/identityVerificationSettings.js.map +0 -1
- package/dist/model/imageInfo.d.ts +0 -16
- package/dist/model/imageInfo.js +0 -28
- package/dist/model/imageInfo.js.map +0 -1
- package/dist/model/index.d.ts +0 -174
- package/dist/model/index.js +0 -665
- package/dist/model/index.js.map +0 -1
- package/dist/model/mergeAndSendForSignForm.d.ts +0 -79
- package/dist/model/mergeAndSendForSignForm.js +0 -232
- package/dist/model/mergeAndSendForSignForm.js.map +0 -1
- package/dist/model/modelDate.d.ts +0 -16
- package/dist/model/modelDate.js +0 -28
- package/dist/model/modelDate.js.map +0 -1
- package/dist/model/modelError.d.ts +0 -15
- package/dist/model/modelError.js +0 -23
- package/dist/model/modelError.js.map +0 -1
- package/dist/model/models.d.ts +0 -56
- package/dist/model/models.js +0 -212
- package/dist/model/models.js.map +0 -1
- package/dist/model/modificationDetails.d.ts +0 -15
- package/dist/model/modificationDetails.js +0 -23
- package/dist/model/modificationDetails.js.map +0 -1
- package/dist/model/notificationSettings.d.ts +0 -25
- package/dist/model/notificationSettings.js +0 -87
- package/dist/model/notificationSettings.js.map +0 -1
- package/dist/model/pageDetails.d.ts +0 -19
- package/dist/model/pageDetails.js +0 -43
- package/dist/model/pageDetails.js.map +0 -1
- package/dist/model/phoneNumber.d.ts +0 -15
- package/dist/model/phoneNumber.js +0 -23
- package/dist/model/phoneNumber.js.map +0 -1
- package/dist/model/prefillField.d.ts +0 -15
- package/dist/model/prefillField.js +0 -23
- package/dist/model/prefillField.js.map +0 -1
- package/dist/model/prefillFieldRequest.d.ts +0 -16
- package/dist/model/prefillFieldRequest.js +0 -23
- package/dist/model/prefillFieldRequest.js.map +0 -1
- package/dist/model/problemDetails.d.ts +0 -18
- package/dist/model/problemDetails.js +0 -38
- package/dist/model/problemDetails.js.map +0 -1
- package/dist/model/recipientChangeLog.d.ts +0 -17
- package/dist/model/recipientChangeLog.js +0 -23
- package/dist/model/recipientChangeLog.js.map +0 -1
- package/dist/model/recipientNotificationSettings.d.ts +0 -25
- package/dist/model/recipientNotificationSettings.js +0 -86
- package/dist/model/recipientNotificationSettings.js.map +0 -1
- package/dist/model/rectangle.d.ts +0 -17
- package/dist/model/rectangle.js +0 -39
- package/dist/model/rectangle.js.map +0 -1
- package/dist/model/reminderMessage.d.ts +0 -17
- package/dist/model/reminderMessage.js +0 -28
- package/dist/model/reminderMessage.js.map +0 -1
- package/dist/model/reminderSettings.d.ts +0 -16
- package/dist/model/reminderSettings.js +0 -33
- package/dist/model/reminderSettings.js.map +0 -1
- package/dist/model/removeAuthentication.d.ts +0 -18
- package/dist/model/removeAuthentication.js +0 -33
- package/dist/model/removeAuthentication.js.map +0 -1
- package/dist/model/removed.d.ts +0 -16
- package/dist/model/removed.js +0 -28
- package/dist/model/removed.js.map +0 -1
- package/dist/model/revokeDocument.d.ts +0 -15
- package/dist/model/revokeDocument.js +0 -23
- package/dist/model/revokeDocument.js.map +0 -1
- package/dist/model/role.d.ts +0 -114
- package/dist/model/role.js +0 -214
- package/dist/model/role.js.map +0 -1
- package/dist/model/roles.d.ts +0 -113
- package/dist/model/roles.js +0 -219
- package/dist/model/roles.js.map +0 -1
- package/dist/model/sendForSign.d.ts +0 -78
- package/dist/model/sendForSign.js +0 -235
- package/dist/model/sendForSign.js.map +0 -1
- package/dist/model/sendForSignFromTemplateForm.d.ts +0 -75
- package/dist/model/sendForSignFromTemplateForm.js +0 -217
- package/dist/model/sendForSignFromTemplateForm.js.map +0 -1
- package/dist/model/senderIdentityCreated.d.ts +0 -14
- package/dist/model/senderIdentityCreated.js +0 -18
- package/dist/model/senderIdentityCreated.js.map +0 -1
- package/dist/model/senderIdentityList.d.ts +0 -17
- package/dist/model/senderIdentityList.js +0 -23
- package/dist/model/senderIdentityList.js.map +0 -1
- package/dist/model/senderIdentityViewModel.d.ts +0 -27
- package/dist/model/senderIdentityViewModel.js +0 -68
- package/dist/model/senderIdentityViewModel.js.map +0 -1
- package/dist/model/signatureFrameSettings.d.ts +0 -17
- package/dist/model/signatureFrameSettings.js +0 -39
- package/dist/model/signatureFrameSettings.js.map +0 -1
- package/dist/model/signerAuthenticationSettings.d.ts +0 -15
- package/dist/model/signerAuthenticationSettings.js +0 -23
- package/dist/model/signerAuthenticationSettings.js.map +0 -1
- package/dist/model/size.d.ts +0 -15
- package/dist/model/size.js +0 -27
- package/dist/model/size.js.map +0 -1
- package/dist/model/teamCreated.d.ts +0 -14
- package/dist/model/teamCreated.js +0 -18
- package/dist/model/teamCreated.js.map +0 -1
- package/dist/model/teamDocumentRecords.d.ts +0 -17
- package/dist/model/teamDocumentRecords.js +0 -23
- package/dist/model/teamDocumentRecords.js.map +0 -1
- package/dist/model/teamListResponse.d.ts +0 -17
- package/dist/model/teamListResponse.js +0 -23
- package/dist/model/teamListResponse.js.map +0 -1
- package/dist/model/teamPageDetails.d.ts +0 -15
- package/dist/model/teamPageDetails.js +0 -23
- package/dist/model/teamPageDetails.js.map +0 -1
- package/dist/model/teamResponse.d.ts +0 -19
- package/dist/model/teamResponse.js +0 -38
- package/dist/model/teamResponse.js.map +0 -1
- package/dist/model/teamUpdateRequest.d.ts +0 -15
- package/dist/model/teamUpdateRequest.js +0 -23
- package/dist/model/teamUpdateRequest.js.map +0 -1
- package/dist/model/teamUsers.d.ts +0 -31
- package/dist/model/teamUsers.js +0 -57
- package/dist/model/teamUsers.js.map +0 -1
- package/dist/model/teams.d.ts +0 -17
- package/dist/model/teams.js +0 -33
- package/dist/model/teams.js.map +0 -1
- package/dist/model/template.d.ts +0 -52
- package/dist/model/template.js +0 -129
- package/dist/model/template.js.map +0 -1
- package/dist/model/templateCC.d.ts +0 -15
- package/dist/model/templateCC.js +0 -23
- package/dist/model/templateCC.js.map +0 -1
- package/dist/model/templateCreated.d.ts +0 -14
- package/dist/model/templateCreated.js +0 -18
- package/dist/model/templateCreated.js.map +0 -1
- package/dist/model/templateFiles.d.ts +0 -17
- package/dist/model/templateFiles.js +0 -33
- package/dist/model/templateFiles.js.map +0 -1
- package/dist/model/templateFormFields.d.ts +0 -88
- package/dist/model/templateFormFields.js +0 -260
- package/dist/model/templateFormFields.js.map +0 -1
- package/dist/model/templateGroupSigner.d.ts +0 -15
- package/dist/model/templateGroupSigner.js +0 -23
- package/dist/model/templateGroupSigner.js.map +0 -1
- package/dist/model/templateProperties.d.ts +0 -68
- package/dist/model/templateProperties.js +0 -186
- package/dist/model/templateProperties.js.map +0 -1
- package/dist/model/templateRecords.d.ts +0 -17
- package/dist/model/templateRecords.js +0 -23
- package/dist/model/templateRecords.js.map +0 -1
- package/dist/model/templateRole.d.ts +0 -106
- package/dist/model/templateRole.js +0 -189
- package/dist/model/templateRole.js.map +0 -1
- package/dist/model/templateSenderDetail.d.ts +0 -15
- package/dist/model/templateSenderDetail.js +0 -23
- package/dist/model/templateSenderDetail.js.map +0 -1
- package/dist/model/templateSenderDetails.d.ts +0 -16
- package/dist/model/templateSenderDetails.js +0 -28
- package/dist/model/templateSenderDetails.js.map +0 -1
- package/dist/model/templateShareErrorResponse.d.ts +0 -17
- package/dist/model/templateShareErrorResponse.js +0 -33
- package/dist/model/templateShareErrorResponse.js.map +0 -1
- package/dist/model/templateShareRequest.d.ts +0 -15
- package/dist/model/templateShareRequest.js +0 -18
- package/dist/model/templateShareRequest.js.map +0 -1
- package/dist/model/templateSharedTemplateDetail.d.ts +0 -21
- package/dist/model/templateSharedTemplateDetail.js +0 -30
- package/dist/model/templateSharedTemplateDetail.js.map +0 -1
- package/dist/model/templateSharing.d.ts +0 -15
- package/dist/model/templateSharing.js +0 -18
- package/dist/model/templateSharing.js.map +0 -1
- package/dist/model/templateSignerDetails.d.ts +0 -66
- package/dist/model/templateSignerDetails.js +0 -149
- package/dist/model/templateSignerDetails.js.map +0 -1
- package/dist/model/templateTag.d.ts +0 -17
- package/dist/model/templateTag.js +0 -33
- package/dist/model/templateTag.js.map +0 -1
- package/dist/model/templateTeamShare.d.ts +0 -22
- package/dist/model/templateTeamShare.js +0 -31
- package/dist/model/templateTeamShare.js.map +0 -1
- package/dist/model/templateTeamShareRequest.d.ts +0 -26
- package/dist/model/templateTeamShareRequest.js +0 -40
- package/dist/model/templateTeamShareRequest.js.map +0 -1
- package/dist/model/textTagDefinition.d.ts +0 -91
- package/dist/model/textTagDefinition.js +0 -221
- package/dist/model/textTagDefinition.js.map +0 -1
- package/dist/model/textTagOffset.d.ts +0 -15
- package/dist/model/textTagOffset.js +0 -23
- package/dist/model/textTagOffset.js.map +0 -1
- package/dist/model/updateGroupContact.d.ts +0 -17
- package/dist/model/updateGroupContact.js +0 -28
- package/dist/model/updateGroupContact.js.map +0 -1
- package/dist/model/updateUser.d.ts +0 -28
- package/dist/model/updateUser.js +0 -46
- package/dist/model/updateUser.js.map +0 -1
- package/dist/model/updateUserMetaData.d.ts +0 -17
- package/dist/model/updateUserMetaData.js +0 -23
- package/dist/model/updateUserMetaData.js.map +0 -1
- package/dist/model/userPageDetails.d.ts +0 -15
- package/dist/model/userPageDetails.js +0 -23
- package/dist/model/userPageDetails.js.map +0 -1
- package/dist/model/userProperties.d.ts +0 -26
- package/dist/model/userProperties.js +0 -68
- package/dist/model/userProperties.js.map +0 -1
- package/dist/model/userRecords.d.ts +0 -17
- package/dist/model/userRecords.js +0 -23
- package/dist/model/userRecords.js.map +0 -1
- package/dist/model/usersDetails.d.ts +0 -26
- package/dist/model/usersDetails.js +0 -68
- package/dist/model/usersDetails.js.map +0 -1
- package/dist/model/validation.d.ts +0 -25
- package/dist/model/validation.js +0 -38
- package/dist/model/validation.js.map +0 -1
- package/dist/model/verificationDataRequest.d.ts +0 -18
- package/dist/model/verificationDataRequest.js +0 -38
- package/dist/model/verificationDataRequest.js.map +0 -1
- package/dist/model/viewBrandDetails.d.ts +0 -48
- package/dist/model/viewBrandDetails.js +0 -150
- package/dist/model/viewBrandDetails.js.map +0 -1
- package/dist/model/viewCustomFieldDetails.d.ts +0 -21
- package/dist/model/viewCustomFieldDetails.js +0 -48
- package/dist/model/viewCustomFieldDetails.js.map +0 -1
package/api/documentApi.ts
CHANGED
|
@@ -15,7 +15,7 @@ import axios, { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
|
15
15
|
import {
|
|
16
16
|
ObjectSerializer, Authentication, VoidAuth, Interceptor,
|
|
17
17
|
HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth, RequestFile,
|
|
18
|
-
AccessCodeDetail,AccessCodeDetails,BehalfDocumentRecords,ChangeRecipient,DocumentCreated,DocumentEdited,DocumentProperties,DocumentRecords,DocumentTags,EditDocumentRequest,EmbeddedDocumentEditJsonRequest,EmbeddedDocumentEdited,EmbeddedDocumentRequest,EmbeddedSendCreated,EmbeddedSigningLink,ErrorResult,ExtendExpiry,PrefillFieldRequest,ReminderMessage,RemoveAuthentication,RevokeDocument,SendForSign,TeamDocumentRecords,
|
|
18
|
+
AccessCodeDetail,AccessCodeDetails,BehalfDocumentRecords,ChangeRecipient,DocumentCreated,DocumentEdited,DocumentProperties,DocumentRecords,DocumentTags,EditDocumentRequest,EmbeddedCloneDocumentJsonRequest,EmbeddedClonedDocument,EmbeddedDocumentEditJsonRequest,EmbeddedDocumentEdited,EmbeddedDocumentRequest,EmbeddedSendCreated,EmbeddedSigningLink,ErrorResult,ExtendExpiry,PrefillFieldRequest,ReminderMessage,RemoveAuthentication,RevokeDocument,SendForSign,TeamDocumentRecords,
|
|
19
19
|
} from '../model';
|
|
20
20
|
|
|
21
21
|
import {
|
|
@@ -94,7 +94,7 @@ export class DocumentApi {
|
|
|
94
94
|
/**
|
|
95
95
|
*
|
|
96
96
|
* @summary The add authentication to recipient.
|
|
97
|
-
* @param documentId
|
|
97
|
+
* @param documentId
|
|
98
98
|
* @param accessCodeDetail Access code details.
|
|
99
99
|
* @param options
|
|
100
100
|
*/
|
|
@@ -500,8 +500,8 @@ export class DocumentApi {
|
|
|
500
500
|
/**
|
|
501
501
|
*
|
|
502
502
|
* @summary Cancels editing for a document that is currently in edit-mode.
|
|
503
|
-
* @param documentId
|
|
504
|
-
* @param onBehalfOf
|
|
503
|
+
* @param documentId
|
|
504
|
+
* @param onBehalfOf
|
|
505
505
|
* @param options
|
|
506
506
|
*/
|
|
507
507
|
public async cancelEditing (documentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -752,7 +752,7 @@ export class DocumentApi {
|
|
|
752
752
|
/**
|
|
753
753
|
*
|
|
754
754
|
* @summary Change recipient details of a document.
|
|
755
|
-
* @param documentId
|
|
755
|
+
* @param documentId
|
|
756
756
|
* @param changeRecipient The new recipient details.
|
|
757
757
|
* @param options
|
|
758
758
|
*/
|
|
@@ -870,6 +870,135 @@ export class DocumentApi {
|
|
|
870
870
|
}
|
|
871
871
|
|
|
872
872
|
|
|
873
|
+
reject(error);
|
|
874
|
+
});
|
|
875
|
+
});
|
|
876
|
+
});
|
|
877
|
+
}
|
|
878
|
+
/**
|
|
879
|
+
*
|
|
880
|
+
* @summary Generates a URL to embeds Clone document process into your application.
|
|
881
|
+
* @param documentId
|
|
882
|
+
* @param embeddedCloneDocumentJsonRequest The embedded clone document request body.
|
|
883
|
+
* @param options
|
|
884
|
+
*/
|
|
885
|
+
public async createEmbeddedDocumentCloneUrl (documentId: string, embeddedCloneDocumentJsonRequest?: EmbeddedCloneDocumentJsonRequest, options: optionsI = {headers: {}}) : Promise<EmbeddedClonedDocument> {
|
|
886
|
+
embeddedCloneDocumentJsonRequest = deserializeIfNeeded(embeddedCloneDocumentJsonRequest, "EmbeddedCloneDocumentJsonRequest");
|
|
887
|
+
const localVarPath = this.basePath + '/v1/document/createEmbeddedCloneUrl';
|
|
888
|
+
let localVarQueryParameters: any = {};
|
|
889
|
+
let localVarHeaderParams: any = (<any>Object).assign({}, this._defaultHeaders);
|
|
890
|
+
const produces = ['application/json'];
|
|
891
|
+
// give precedence to 'application/json'
|
|
892
|
+
if (produces.indexOf('application/json') >= 0) {
|
|
893
|
+
localVarHeaderParams['content-type'] = 'application/json';
|
|
894
|
+
} else {
|
|
895
|
+
localVarHeaderParams['content-type'] = produces.join(',');
|
|
896
|
+
}
|
|
897
|
+
let localVarFormParams: any = {};
|
|
898
|
+
let localVarBodyParams: any = undefined;
|
|
899
|
+
|
|
900
|
+
// verify required parameter 'documentId' is not null or undefined
|
|
901
|
+
if (documentId === null || documentId === undefined) {
|
|
902
|
+
throw new Error('Required parameter documentId was null or undefined when calling createEmbeddedDocumentCloneUrl.');
|
|
903
|
+
}
|
|
904
|
+
|
|
905
|
+
if (documentId !== undefined) {
|
|
906
|
+
localVarQueryParameters['documentId'] = ObjectSerializer.serialize(documentId, "string");
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
(<any>Object).assign(localVarHeaderParams, options.headers);
|
|
910
|
+
|
|
911
|
+
let localVarUseFormData = false;
|
|
912
|
+
|
|
913
|
+
const result = generateFormData(embeddedCloneDocumentJsonRequest, EmbeddedCloneDocumentJsonRequest);
|
|
914
|
+
localVarUseFormData = result.localVarUseFormData;
|
|
915
|
+
|
|
916
|
+
let data = {};
|
|
917
|
+
if (localVarUseFormData) {
|
|
918
|
+
const formData = toFormData(result.data);
|
|
919
|
+
data = formData;
|
|
920
|
+
localVarHeaderParams = {
|
|
921
|
+
...localVarHeaderParams,
|
|
922
|
+
...formData.getHeaders(),
|
|
923
|
+
};
|
|
924
|
+
} else {
|
|
925
|
+
data = ObjectSerializer.serialize(
|
|
926
|
+
embeddedCloneDocumentJsonRequest,
|
|
927
|
+
"EmbeddedCloneDocumentJsonRequest"
|
|
928
|
+
);
|
|
929
|
+
}
|
|
930
|
+
|
|
931
|
+
let localVarRequestOptions: AxiosRequestConfig = {
|
|
932
|
+
method: 'POST',
|
|
933
|
+
params: localVarQueryParameters,
|
|
934
|
+
headers: localVarHeaderParams,
|
|
935
|
+
url: localVarPath,
|
|
936
|
+
paramsSerializer: this._useQuerystring ? queryParamsSerializer : undefined,
|
|
937
|
+
maxContentLength: Infinity,
|
|
938
|
+
maxBodyLength: Infinity,
|
|
939
|
+
responseType: "json",
|
|
940
|
+
};
|
|
941
|
+
|
|
942
|
+
if (localVarRequestOptions.method !== 'GET') {
|
|
943
|
+
localVarRequestOptions.data = data;
|
|
944
|
+
}
|
|
945
|
+
let authenticationPromise = Promise.resolve();
|
|
946
|
+
|
|
947
|
+
if (this.authentications["X-API-KEY"].apiKey) {
|
|
948
|
+
authenticationPromise = authenticationPromise.then(() => this.authentications["X-API-KEY"].applyToRequest(localVarRequestOptions));
|
|
949
|
+
}
|
|
950
|
+
if (this.authentications["Bearer"].apiKey) {
|
|
951
|
+
authenticationPromise = authenticationPromise.then(() => this.authentications["Bearer"].applyToRequest(localVarRequestOptions));
|
|
952
|
+
}
|
|
953
|
+
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
954
|
+
|
|
955
|
+
let interceptorPromise = authenticationPromise;
|
|
956
|
+
for (const interceptor of this.interceptors) {
|
|
957
|
+
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
958
|
+
}
|
|
959
|
+
|
|
960
|
+
return interceptorPromise.then(() => {
|
|
961
|
+
return new Promise<EmbeddedClonedDocument>((resolve, reject) => {
|
|
962
|
+
axios.request(localVarRequestOptions)
|
|
963
|
+
.then((response) => {
|
|
964
|
+
handleSuccessfulResponse<EmbeddedClonedDocument>(
|
|
965
|
+
resolve,
|
|
966
|
+
reject,
|
|
967
|
+
response,
|
|
968
|
+
"EmbeddedClonedDocument",
|
|
969
|
+
);
|
|
970
|
+
}, (error: AxiosError) => {
|
|
971
|
+
if (error.response == null) {
|
|
972
|
+
reject(error);
|
|
973
|
+
return;
|
|
974
|
+
}
|
|
975
|
+
|
|
976
|
+
if (handleErrorCodeResponse(
|
|
977
|
+
reject,
|
|
978
|
+
error.response,
|
|
979
|
+
201,
|
|
980
|
+
"EmbeddedClonedDocument",
|
|
981
|
+
)) {
|
|
982
|
+
return;
|
|
983
|
+
}
|
|
984
|
+
if (handleErrorCodeResponse(
|
|
985
|
+
reject,
|
|
986
|
+
error.response,
|
|
987
|
+
401,
|
|
988
|
+
"ErrorResult",
|
|
989
|
+
)) {
|
|
990
|
+
return;
|
|
991
|
+
}
|
|
992
|
+
if (handleErrorCodeResponse(
|
|
993
|
+
reject,
|
|
994
|
+
error.response,
|
|
995
|
+
400,
|
|
996
|
+
"ErrorResult",
|
|
997
|
+
)) {
|
|
998
|
+
return;
|
|
999
|
+
}
|
|
1000
|
+
|
|
1001
|
+
|
|
873
1002
|
reject(error);
|
|
874
1003
|
});
|
|
875
1004
|
});
|
|
@@ -878,7 +1007,7 @@ export class DocumentApi {
|
|
|
878
1007
|
/**
|
|
879
1008
|
*
|
|
880
1009
|
* @summary Generates an embedded edit URL that allows the document editing process to be integrated into your application.
|
|
881
|
-
* @param documentId
|
|
1010
|
+
* @param documentId
|
|
882
1011
|
* @param embeddedDocumentEditJsonRequest The embedded edit document request body.
|
|
883
1012
|
* @param options
|
|
884
1013
|
*/
|
|
@@ -1158,8 +1287,8 @@ export class DocumentApi {
|
|
|
1158
1287
|
/**
|
|
1159
1288
|
*
|
|
1160
1289
|
* @summary Delete the document.
|
|
1161
|
-
* @param documentId
|
|
1162
|
-
* @param deletePermanently
|
|
1290
|
+
* @param documentId
|
|
1291
|
+
* @param deletePermanently
|
|
1163
1292
|
* @param options
|
|
1164
1293
|
*/
|
|
1165
1294
|
public async deleteDocument (documentId: string, deletePermanently?: boolean, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -1385,9 +1514,9 @@ export class DocumentApi {
|
|
|
1385
1514
|
/**
|
|
1386
1515
|
*
|
|
1387
1516
|
* @summary Download the Attachment.
|
|
1388
|
-
* @param documentId
|
|
1389
|
-
* @param attachmentId
|
|
1390
|
-
* @param onBehalfOf
|
|
1517
|
+
* @param documentId
|
|
1518
|
+
* @param attachmentId
|
|
1519
|
+
* @param onBehalfOf
|
|
1391
1520
|
* @param options
|
|
1392
1521
|
*/
|
|
1393
1522
|
public async downloadAttachment (documentId: string, attachmentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<Buffer> {
|
|
@@ -1519,8 +1648,8 @@ export class DocumentApi {
|
|
|
1519
1648
|
/**
|
|
1520
1649
|
*
|
|
1521
1650
|
* @summary Download the audit trail document.
|
|
1522
|
-
* @param documentId
|
|
1523
|
-
* @param onBehalfOf
|
|
1651
|
+
* @param documentId
|
|
1652
|
+
* @param onBehalfOf
|
|
1524
1653
|
* @param options
|
|
1525
1654
|
*/
|
|
1526
1655
|
public async downloadAuditLog (documentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<Buffer> {
|
|
@@ -1643,8 +1772,8 @@ export class DocumentApi {
|
|
|
1643
1772
|
/**
|
|
1644
1773
|
*
|
|
1645
1774
|
* @summary Download the document.
|
|
1646
|
-
* @param documentId
|
|
1647
|
-
* @param onBehalfOf
|
|
1775
|
+
* @param documentId
|
|
1776
|
+
* @param onBehalfOf
|
|
1648
1777
|
* @param options
|
|
1649
1778
|
*/
|
|
1650
1779
|
public async downloadDocument (documentId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<Buffer> {
|
|
@@ -1767,7 +1896,7 @@ export class DocumentApi {
|
|
|
1767
1896
|
/**
|
|
1768
1897
|
*
|
|
1769
1898
|
* @summary Sends a draft-status document out for signature.
|
|
1770
|
-
* @param documentId
|
|
1899
|
+
* @param documentId
|
|
1771
1900
|
* @param options
|
|
1772
1901
|
*/
|
|
1773
1902
|
public async draftSend (documentId: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -1878,7 +2007,7 @@ export class DocumentApi {
|
|
|
1878
2007
|
/**
|
|
1879
2008
|
*
|
|
1880
2009
|
* @summary Edit and updates an existing document.
|
|
1881
|
-
* @param documentId
|
|
2010
|
+
* @param documentId
|
|
1882
2011
|
* @param editDocumentRequest Edit document JSON request.
|
|
1883
2012
|
* @param options
|
|
1884
2013
|
*/
|
|
@@ -2023,7 +2152,7 @@ export class DocumentApi {
|
|
|
2023
2152
|
/**
|
|
2024
2153
|
*
|
|
2025
2154
|
* @summary Extends the expiration date of the document.
|
|
2026
|
-
* @param documentId
|
|
2155
|
+
* @param documentId
|
|
2027
2156
|
* @param extendExpiry The new expiry value should be specified in yyyy-MM-dd format for days type, ISO date time format for specific date time and integer for hours type.
|
|
2028
2157
|
* @param options
|
|
2029
2158
|
*/
|
|
@@ -2144,7 +2273,7 @@ export class DocumentApi {
|
|
|
2144
2273
|
/**
|
|
2145
2274
|
*
|
|
2146
2275
|
* @summary Get summary of the document.
|
|
2147
|
-
* @param documentId
|
|
2276
|
+
* @param documentId
|
|
2148
2277
|
* @param options
|
|
2149
2278
|
*/
|
|
2150
2279
|
public async getProperties (documentId: string, options: optionsI = {headers: {}}) : Promise<DocumentProperties> {
|
|
@@ -2578,7 +2707,7 @@ export class DocumentApi {
|
|
|
2578
2707
|
/**
|
|
2579
2708
|
*
|
|
2580
2709
|
* @summary Updates the value (prefill) of the fields in the document.
|
|
2581
|
-
* @param documentId
|
|
2710
|
+
* @param documentId
|
|
2582
2711
|
* @param prefillFieldRequest The prefill field request.
|
|
2583
2712
|
* @param options
|
|
2584
2713
|
*/
|
|
@@ -2704,8 +2833,8 @@ export class DocumentApi {
|
|
|
2704
2833
|
/**
|
|
2705
2834
|
*
|
|
2706
2835
|
* @summary Send reminder to pending signers.
|
|
2707
|
-
* @param documentId
|
|
2708
|
-
* @param receiverEmails
|
|
2836
|
+
* @param documentId
|
|
2837
|
+
* @param receiverEmails
|
|
2709
2838
|
* @param reminderMessage Reminder Message for signers.
|
|
2710
2839
|
* @param options
|
|
2711
2840
|
*/
|
|
@@ -2951,7 +3080,7 @@ export class DocumentApi {
|
|
|
2951
3080
|
/**
|
|
2952
3081
|
*
|
|
2953
3082
|
* @summary Revoke the document.
|
|
2954
|
-
* @param documentId
|
|
3083
|
+
* @param documentId
|
|
2955
3084
|
* @param revokeDocument RevokeDetails.
|
|
2956
3085
|
* @param options
|
|
2957
3086
|
*/
|
package/api/groupContactsApi.ts
CHANGED
|
@@ -213,7 +213,7 @@ export class GroupContactsApi {
|
|
|
213
213
|
/**
|
|
214
214
|
*
|
|
215
215
|
* @summary Deletes a Group Contact.
|
|
216
|
-
* @param groupId
|
|
216
|
+
* @param groupId
|
|
217
217
|
* @param options
|
|
218
218
|
*/
|
|
219
219
|
public async deleteGroupContact (groupId: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -324,7 +324,7 @@ export class GroupContactsApi {
|
|
|
324
324
|
/**
|
|
325
325
|
*
|
|
326
326
|
* @summary Get Summary of the Group Contact.
|
|
327
|
-
* @param groupId
|
|
327
|
+
* @param groupId
|
|
328
328
|
* @param options
|
|
329
329
|
*/
|
|
330
330
|
public async getGroupContact (groupId: string, options: optionsI = {headers: {}}) : Promise<GetGroupContactDetails> {
|
|
@@ -574,7 +574,7 @@ export class GroupContactsApi {
|
|
|
574
574
|
/**
|
|
575
575
|
*
|
|
576
576
|
* @summary Update the Group Contact.
|
|
577
|
-
* @param groupId
|
|
577
|
+
* @param groupId
|
|
578
578
|
* @param updateGroupContact The group contact details.
|
|
579
579
|
* @param options
|
|
580
580
|
*/
|
|
@@ -94,7 +94,7 @@ export class IdentityVerificationApi {
|
|
|
94
94
|
/**
|
|
95
95
|
*
|
|
96
96
|
* @summary Generate a URL that embeds manual ID verification for the specified document signer into your application.
|
|
97
|
-
* @param documentId
|
|
97
|
+
* @param documentId
|
|
98
98
|
* @param embeddedFileDetails The embedded verification link request.
|
|
99
99
|
* @param options
|
|
100
100
|
*/
|
|
@@ -223,7 +223,7 @@ export class IdentityVerificationApi {
|
|
|
223
223
|
/**
|
|
224
224
|
*
|
|
225
225
|
* @summary Retrieve the uploaded ID verification document or selfie image for the specified document signer using the file ID.
|
|
226
|
-
* @param documentId
|
|
226
|
+
* @param documentId
|
|
227
227
|
* @param downloadImageRequest The download image request.
|
|
228
228
|
* @param options
|
|
229
229
|
*/
|
|
@@ -365,7 +365,7 @@ export class IdentityVerificationApi {
|
|
|
365
365
|
/**
|
|
366
366
|
*
|
|
367
367
|
* @summary Retrieve the ID verification report for the specified document signer.
|
|
368
|
-
* @param documentId
|
|
368
|
+
* @param documentId
|
|
369
369
|
* @param verificationDataRequest The download image request.
|
|
370
370
|
* @param options
|
|
371
371
|
*/
|
|
@@ -226,7 +226,7 @@ export class SenderIdentitiesApi {
|
|
|
226
226
|
/**
|
|
227
227
|
*
|
|
228
228
|
* @summary Deletes sender identity.
|
|
229
|
-
* @param email
|
|
229
|
+
* @param email
|
|
230
230
|
* @param options
|
|
231
231
|
*/
|
|
232
232
|
public async deleteSenderIdentities (email: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -337,8 +337,8 @@ export class SenderIdentitiesApi {
|
|
|
337
337
|
/**
|
|
338
338
|
*
|
|
339
339
|
* @summary Gets sender identity by ID or email.
|
|
340
|
-
* @param id
|
|
341
|
-
* @param email
|
|
340
|
+
* @param id
|
|
341
|
+
* @param email
|
|
342
342
|
* @param options
|
|
343
343
|
*/
|
|
344
344
|
public async getSenderIdentityProperties (id?: string, email?: string, options: optionsI = {headers: {}}) : Promise<SenderIdentityViewModel> {
|
|
@@ -590,7 +590,7 @@ export class SenderIdentitiesApi {
|
|
|
590
590
|
/**
|
|
591
591
|
*
|
|
592
592
|
* @summary Rerequests denied sender identity.
|
|
593
|
-
* @param email
|
|
593
|
+
* @param email
|
|
594
594
|
* @param options
|
|
595
595
|
*/
|
|
596
596
|
public async reRequestSenderIdentities (email: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -701,7 +701,7 @@ export class SenderIdentitiesApi {
|
|
|
701
701
|
/**
|
|
702
702
|
*
|
|
703
703
|
* @summary Resends sender identity invitation.
|
|
704
|
-
* @param email
|
|
704
|
+
* @param email
|
|
705
705
|
* @param options
|
|
706
706
|
*/
|
|
707
707
|
public async resendInvitationSenderIdentities (email: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -812,7 +812,7 @@ export class SenderIdentitiesApi {
|
|
|
812
812
|
/**
|
|
813
813
|
*
|
|
814
814
|
* @summary Updates sender identity.
|
|
815
|
-
* @param email
|
|
815
|
+
* @param email
|
|
816
816
|
* @param editSenderIdentityRequest The create sender identity request.
|
|
817
817
|
* @param options
|
|
818
818
|
*/
|
package/api/teamsApi.ts
CHANGED
package/api/templateApi.ts
CHANGED
|
@@ -15,7 +15,7 @@ import axios, { AxiosError, AxiosRequestConfig, AxiosResponse } from 'axios';
|
|
|
15
15
|
import {
|
|
16
16
|
ObjectSerializer, Authentication, VoidAuth, Interceptor,
|
|
17
17
|
HttpBasicAuth, HttpBearerAuth, ApiKeyAuth, OAuth, RequestFile,
|
|
18
|
-
CreateTemplateRequest,DocumentCreated,EditTemplateRequest,EmbeddedCreateTemplateRequest,EmbeddedMergeTemplateFormRequest,EmbeddedSendCreated,EmbeddedSendTemplateFormRequest,EmbeddedTemplateCreated,EmbeddedTemplateEditRequest,EmbeddedTemplateEdited,EmbeddedTemplatePreview,EmbeddedTemplatePreviewJsonRequest,ErrorResponse,ErrorResult,MergeAndSendForSignForm,SendForSignFromTemplateForm,TemplateCreated,TemplateProperties,TemplateRecords,TemplateShareErrorResponse,TemplateShareRequest,TemplateTag,
|
|
18
|
+
CreateTemplateRequest,DocumentCreated,EditTemplateRequest,EmbeddedCloneTemplateJsonRequest,EmbeddedClonedTemplate,EmbeddedCreateTemplateRequest,EmbeddedMergeTemplateFormRequest,EmbeddedSendCreated,EmbeddedSendTemplateFormRequest,EmbeddedTemplateCreated,EmbeddedTemplateEditRequest,EmbeddedTemplateEdited,EmbeddedTemplatePreview,EmbeddedTemplatePreviewJsonRequest,ErrorResponse,ErrorResult,MergeAndSendForSignForm,SendForSignFromTemplateForm,TemplateCreated,TemplateProperties,TemplateRecords,TemplateShareErrorResponse,TemplateShareRequest,TemplateTag,
|
|
19
19
|
} from '../model';
|
|
20
20
|
|
|
21
21
|
import {
|
|
@@ -205,7 +205,7 @@ export class TemplateApi {
|
|
|
205
205
|
/**
|
|
206
206
|
*
|
|
207
207
|
* @summary Generates a preview URL for a template to view it.
|
|
208
|
-
* @param templateId
|
|
208
|
+
* @param templateId
|
|
209
209
|
* @param embeddedTemplatePreviewJsonRequest The embedded template preview request body.
|
|
210
210
|
* @param options
|
|
211
211
|
*/
|
|
@@ -326,7 +326,7 @@ export class TemplateApi {
|
|
|
326
326
|
/**
|
|
327
327
|
*
|
|
328
328
|
* @summary Generates a send URL using a template which embeds document sending process into your application.
|
|
329
|
-
* @param templateId
|
|
329
|
+
* @param templateId
|
|
330
330
|
* @param embeddedSendTemplateFormRequest Embedded send template json request.
|
|
331
331
|
* @param options
|
|
332
332
|
*/
|
|
@@ -447,6 +447,135 @@ export class TemplateApi {
|
|
|
447
447
|
}
|
|
448
448
|
|
|
449
449
|
|
|
450
|
+
reject(error);
|
|
451
|
+
});
|
|
452
|
+
});
|
|
453
|
+
});
|
|
454
|
+
}
|
|
455
|
+
/**
|
|
456
|
+
*
|
|
457
|
+
* @summary Generates a URL to embeds Clone template process into your application.
|
|
458
|
+
* @param templateId
|
|
459
|
+
* @param embeddedCloneTemplateJsonRequest The embedded clone template request body.
|
|
460
|
+
* @param options
|
|
461
|
+
*/
|
|
462
|
+
public async createEmbeddedTemplateCloneUrl (templateId: string, embeddedCloneTemplateJsonRequest?: EmbeddedCloneTemplateJsonRequest, options: optionsI = {headers: {}}) : Promise<EmbeddedClonedTemplate> {
|
|
463
|
+
embeddedCloneTemplateJsonRequest = deserializeIfNeeded(embeddedCloneTemplateJsonRequest, "EmbeddedCloneTemplateJsonRequest");
|
|
464
|
+
const localVarPath = this.basePath + '/v1/template/createEmbeddedCloneUrl';
|
|
465
|
+
let localVarQueryParameters: any = {};
|
|
466
|
+
let localVarHeaderParams: any = (<any>Object).assign({}, this._defaultHeaders);
|
|
467
|
+
const produces = ['application/json'];
|
|
468
|
+
// give precedence to 'application/json'
|
|
469
|
+
if (produces.indexOf('application/json') >= 0) {
|
|
470
|
+
localVarHeaderParams['content-type'] = 'application/json';
|
|
471
|
+
} else {
|
|
472
|
+
localVarHeaderParams['content-type'] = produces.join(',');
|
|
473
|
+
}
|
|
474
|
+
let localVarFormParams: any = {};
|
|
475
|
+
let localVarBodyParams: any = undefined;
|
|
476
|
+
|
|
477
|
+
// verify required parameter 'templateId' is not null or undefined
|
|
478
|
+
if (templateId === null || templateId === undefined) {
|
|
479
|
+
throw new Error('Required parameter templateId was null or undefined when calling createEmbeddedTemplateCloneUrl.');
|
|
480
|
+
}
|
|
481
|
+
|
|
482
|
+
if (templateId !== undefined) {
|
|
483
|
+
localVarQueryParameters['templateId'] = ObjectSerializer.serialize(templateId, "string");
|
|
484
|
+
}
|
|
485
|
+
|
|
486
|
+
(<any>Object).assign(localVarHeaderParams, options.headers);
|
|
487
|
+
|
|
488
|
+
let localVarUseFormData = false;
|
|
489
|
+
|
|
490
|
+
const result = generateFormData(embeddedCloneTemplateJsonRequest, EmbeddedCloneTemplateJsonRequest);
|
|
491
|
+
localVarUseFormData = result.localVarUseFormData;
|
|
492
|
+
|
|
493
|
+
let data = {};
|
|
494
|
+
if (localVarUseFormData) {
|
|
495
|
+
const formData = toFormData(result.data);
|
|
496
|
+
data = formData;
|
|
497
|
+
localVarHeaderParams = {
|
|
498
|
+
...localVarHeaderParams,
|
|
499
|
+
...formData.getHeaders(),
|
|
500
|
+
};
|
|
501
|
+
} else {
|
|
502
|
+
data = ObjectSerializer.serialize(
|
|
503
|
+
embeddedCloneTemplateJsonRequest,
|
|
504
|
+
"EmbeddedCloneTemplateJsonRequest"
|
|
505
|
+
);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
let localVarRequestOptions: AxiosRequestConfig = {
|
|
509
|
+
method: 'POST',
|
|
510
|
+
params: localVarQueryParameters,
|
|
511
|
+
headers: localVarHeaderParams,
|
|
512
|
+
url: localVarPath,
|
|
513
|
+
paramsSerializer: this._useQuerystring ? queryParamsSerializer : undefined,
|
|
514
|
+
maxContentLength: Infinity,
|
|
515
|
+
maxBodyLength: Infinity,
|
|
516
|
+
responseType: "json",
|
|
517
|
+
};
|
|
518
|
+
|
|
519
|
+
if (localVarRequestOptions.method !== 'GET') {
|
|
520
|
+
localVarRequestOptions.data = data;
|
|
521
|
+
}
|
|
522
|
+
let authenticationPromise = Promise.resolve();
|
|
523
|
+
|
|
524
|
+
if (this.authentications["X-API-KEY"].apiKey) {
|
|
525
|
+
authenticationPromise = authenticationPromise.then(() => this.authentications["X-API-KEY"].applyToRequest(localVarRequestOptions));
|
|
526
|
+
}
|
|
527
|
+
if (this.authentications["Bearer"].apiKey) {
|
|
528
|
+
authenticationPromise = authenticationPromise.then(() => this.authentications["Bearer"].applyToRequest(localVarRequestOptions));
|
|
529
|
+
}
|
|
530
|
+
authenticationPromise = authenticationPromise.then(() => this.authentications.default.applyToRequest(localVarRequestOptions));
|
|
531
|
+
|
|
532
|
+
let interceptorPromise = authenticationPromise;
|
|
533
|
+
for (const interceptor of this.interceptors) {
|
|
534
|
+
interceptorPromise = interceptorPromise.then(() => interceptor(localVarRequestOptions));
|
|
535
|
+
}
|
|
536
|
+
|
|
537
|
+
return interceptorPromise.then(() => {
|
|
538
|
+
return new Promise<EmbeddedClonedTemplate>((resolve, reject) => {
|
|
539
|
+
axios.request(localVarRequestOptions)
|
|
540
|
+
.then((response) => {
|
|
541
|
+
handleSuccessfulResponse<EmbeddedClonedTemplate>(
|
|
542
|
+
resolve,
|
|
543
|
+
reject,
|
|
544
|
+
response,
|
|
545
|
+
"EmbeddedClonedTemplate",
|
|
546
|
+
);
|
|
547
|
+
}, (error: AxiosError) => {
|
|
548
|
+
if (error.response == null) {
|
|
549
|
+
reject(error);
|
|
550
|
+
return;
|
|
551
|
+
}
|
|
552
|
+
|
|
553
|
+
if (handleErrorCodeResponse(
|
|
554
|
+
reject,
|
|
555
|
+
error.response,
|
|
556
|
+
201,
|
|
557
|
+
"EmbeddedClonedTemplate",
|
|
558
|
+
)) {
|
|
559
|
+
return;
|
|
560
|
+
}
|
|
561
|
+
if (handleErrorCodeResponse(
|
|
562
|
+
reject,
|
|
563
|
+
error.response,
|
|
564
|
+
401,
|
|
565
|
+
"ErrorResult",
|
|
566
|
+
)) {
|
|
567
|
+
return;
|
|
568
|
+
}
|
|
569
|
+
if (handleErrorCodeResponse(
|
|
570
|
+
reject,
|
|
571
|
+
error.response,
|
|
572
|
+
400,
|
|
573
|
+
"ErrorResult",
|
|
574
|
+
)) {
|
|
575
|
+
return;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
|
|
450
579
|
reject(error);
|
|
451
580
|
});
|
|
452
581
|
});
|
|
@@ -701,8 +830,8 @@ export class TemplateApi {
|
|
|
701
830
|
/**
|
|
702
831
|
*
|
|
703
832
|
* @summary Deletes a template.
|
|
704
|
-
* @param templateId
|
|
705
|
-
* @param onBehalfOf
|
|
833
|
+
* @param templateId
|
|
834
|
+
* @param onBehalfOf
|
|
706
835
|
* @param options
|
|
707
836
|
*/
|
|
708
837
|
public async deleteTemplate (templateId: string, onBehalfOf?: string, options: optionsI = {headers: {}}) : Promise<returnTypeI> {
|
|
@@ -928,9 +1057,9 @@ export class TemplateApi {
|
|
|
928
1057
|
/**
|
|
929
1058
|
*
|
|
930
1059
|
* @summary Download the template.
|
|
931
|
-
* @param templateId
|
|
932
|
-
* @param onBehalfOf
|
|
933
|
-
* @param includeFormFieldValues
|
|
1060
|
+
* @param templateId
|
|
1061
|
+
* @param onBehalfOf
|
|
1062
|
+
* @param includeFormFieldValues
|
|
934
1063
|
* @param options
|
|
935
1064
|
*/
|
|
936
1065
|
public async download (templateId: string, onBehalfOf?: string, includeFormFieldValues?: boolean, options: optionsI = {headers: {}}) : Promise<Buffer> {
|
|
@@ -1057,7 +1186,7 @@ export class TemplateApi {
|
|
|
1057
1186
|
/**
|
|
1058
1187
|
*
|
|
1059
1188
|
* @summary Edit and updates an existing template.
|
|
1060
|
-
* @param templateId
|
|
1189
|
+
* @param templateId
|
|
1061
1190
|
* @param editTemplateRequest The edit template request body.
|
|
1062
1191
|
* @param options
|
|
1063
1192
|
*/
|
|
@@ -1191,7 +1320,7 @@ export class TemplateApi {
|
|
|
1191
1320
|
/**
|
|
1192
1321
|
*
|
|
1193
1322
|
* @summary Generates a edit URL to embeds template edit process into your application.
|
|
1194
|
-
* @param templateId
|
|
1323
|
+
* @param templateId
|
|
1195
1324
|
* @param embeddedTemplateEditRequest The embedded edit template request body.
|
|
1196
1325
|
* @param options
|
|
1197
1326
|
*/
|
|
@@ -1320,7 +1449,7 @@ export class TemplateApi {
|
|
|
1320
1449
|
/**
|
|
1321
1450
|
*
|
|
1322
1451
|
* @summary Get summary of the template.
|
|
1323
|
-
* @param templateId
|
|
1452
|
+
* @param templateId
|
|
1324
1453
|
* @param options
|
|
1325
1454
|
*/
|
|
1326
1455
|
public async getProperties (templateId: string, options: optionsI = {headers: {}}) : Promise<TemplateProperties> {
|
|
@@ -1838,7 +1967,7 @@ export class TemplateApi {
|
|
|
1838
1967
|
/**
|
|
1839
1968
|
*
|
|
1840
1969
|
* @summary Send a document for signature using a Template.
|
|
1841
|
-
* @param templateId
|
|
1970
|
+
* @param templateId
|
|
1842
1971
|
* @param sendForSignFromTemplateForm The send template details as JSON.
|
|
1843
1972
|
* @param options
|
|
1844
1973
|
*/
|
|
@@ -1967,7 +2096,7 @@ export class TemplateApi {
|
|
|
1967
2096
|
/**
|
|
1968
2097
|
*
|
|
1969
2098
|
* @summary Share a template with teams and manage permissions.
|
|
1970
|
-
* @param templateId
|
|
2099
|
+
* @param templateId
|
|
1971
2100
|
* @param templateShareRequest Permissions request.
|
|
1972
2101
|
* @param options
|
|
1973
2102
|
*/
|
package/api/userApi.ts
CHANGED
|
@@ -205,7 +205,7 @@ export class UserApi {
|
|
|
205
205
|
/**
|
|
206
206
|
*
|
|
207
207
|
* @summary Change users to other team.
|
|
208
|
-
* @param userId
|
|
208
|
+
* @param userId
|
|
209
209
|
* @param changeTeamRequest Change team request.
|
|
210
210
|
* @param options
|
|
211
211
|
*/
|
|
@@ -437,7 +437,7 @@ export class UserApi {
|
|
|
437
437
|
/**
|
|
438
438
|
*
|
|
439
439
|
* @summary Get summary of the user.
|
|
440
|
-
* @param userId
|
|
440
|
+
* @param userId
|
|
441
441
|
* @param options
|
|
442
442
|
*/
|
|
443
443
|
public async getUser (userId: string, options: optionsI = {headers: {}}) : Promise<UserProperties> {
|
package/docs/AccessCodeDetail.md
CHANGED
|
@@ -13,6 +13,7 @@ Name | Type | Description | Notes
|
|
|
13
13
|
| `onBehalfOf` | ```string``` | | |
|
|
14
14
|
| `phoneNumber` | [```PhoneNumber```](PhoneNumber.md) | | |
|
|
15
15
|
| `identityVerificationSettings` | [```IdentityVerificationSettings```](IdentityVerificationSettings.md) | | |
|
|
16
|
+
| `kbaSettings` | [```KbaSettings```](KbaSettings.md) | | |
|
|
16
17
|
| `authenticationRetryCount` | ```number``` | | |
|
|
17
18
|
| `authenticationSettings` | [```AuthenticationSettings```](AuthenticationSettings.md) | | |
|
|
18
19
|
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
# # BehalfOfWebhookModel
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
|
|
5
|
+
## Properties
|
|
6
|
+
|
|
7
|
+
Name | Type | Description | Notes
|
|
8
|
+
------------ | ------------- | ------------- | -------------
|
|
9
|
+
| `id` | ```string``` | | |
|
|
10
|
+
| `email` | ```string``` | | |
|
|
11
|
+
|
|
12
|
+
[[Back to Model list]](../README.md#models) [[Back to API list]](../README.md#api-endpoints) [[Back to README]](../README.md)
|