File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -203,7 +203,7 @@ function Document(newDocument = {}) {
203203 throw new Error ( "Signer needs at least a Name and an E-Mail address" ) ;
204204
205205 if ( ! signer . getId ( ) )
206- signer . setId ( signers . length + 1 )
206+ signer . setId ( document . signers . length + 1 )
207207
208208 document . signers . push ( signer ) ;
209209 } ;
Original file line number Diff line number Diff line change @@ -40,7 +40,7 @@ function Recipient(newRecipient) {
4040 } ;
4141
4242 this . setEmail = function ( newEmail ) {
43- recipient . recipientemail = newEmail ;
43+ recipient . email = newEmail ;
4444 } ;
4545
4646 this . setRole = function ( newRole ) {
Original file line number Diff line number Diff line change @@ -130,7 +130,6 @@ ApiRequest.prototype.startDownload = function () {
130130function createQuery ( context ) {
131131 var query = {
132132 access_key : context . accessKey ,
133- business_id : context . businessId
134133 } ;
135134
136135 if ( context . parameters ) query = Object . assign ( query , context . parameters ) ;
You can’t perform that action at this time.
0 commit comments