Skip to content

Commit a84b0e4

Browse files
committed
Comments
1 parent fe29156 commit a84b0e4

16 files changed

+0
-23
lines changed

lib/examples/eg001EmbeddedSigning.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -118,7 +118,6 @@ eg001EmbeddedSigning.createController = async (req, res) => {
118118
* embedded Signing Ceremony
119119
* @param {object} args An object with the following elements: <br/>
120120
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
121-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
122121
* <tt>accountId</tt>: Current account Id <br/>
123122
* <tt>envelopeArgs</tt>: envelopeArgs, an object with elements
124123
* <tt>signerEmail</tt>, <tt>signerName</tt>, <tt>signerClientId</tt>

lib/examples/eg002SigningViaEmail.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,6 @@ eg002SigningViaEmail.createController = async (req, res) => {
119119
* This function does the work of creating the envelope
120120
* @param {object} args An object with the following elements: <br/>
121121
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
122-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
123122
* <tt>accountId</tt>: Current account Id <br/>
124123
* <tt>envelopeArgs</tt>: envelopeArgs, an object with elements
125124
* <tt>status</tt>: envelope status: "sent" | "created"

lib/examples/eg003ListEnvelopes.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -99,7 +99,6 @@ eg003ListEnvelopes.createController = async (req, res) => {
9999
* This function does the work of listing the envelopes
100100
* @param {object} args An object with the following elements: <br/>
101101
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
102-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
103102
* <tt>accountId</tt>: Current account Id <br/>
104103
*/
105104
// ***DS.worker.start ***DS.snippet.1.start

lib/examples/eg004EnvelopeInfo.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ eg004EnvelopeInfo.createController = async (req, res) => {
111111
* This function does the work of getting the envelope information
112112
* @param {object} args An object with the following elements: <br/>
113113
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
114-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
115114
* <tt>accountId</tt>: Current account Id <br/>
116115
* <tt>envelopeId</tt>: envelope Id <br/>
117116
*/

lib/examples/eg005EnvelopeRecipients.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,6 @@ eg005EnvelopeRecipients.createController = async (req, res) => {
111111
* This function does the work of listing the envelope's recipients
112112
* @param {object} args An object with the following elements: <br/>
113113
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
114-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
115114
* <tt>accountId</tt>: Current account Id <br/>
116115
* <tt>envelopeId</tt>: envelope Id <br/>
117116
*/

lib/examples/eg006EnvelopeDocs.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ eg006EnvelopeDocs.createController = async (req, res) => {
129129
* This function does the work of listing the envelope's documents
130130
* @param {object} args An object with the following elements: <br/>
131131
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
132-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
133132
* <tt>accountId</tt>: Current account Id <br/>
134133
* <tt>envelopeId</tt>: envelope Id <br/>
135134
*/

lib/examples/eg007EnvelopeGetDoc.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -129,7 +129,6 @@ eg007EnvelopeGetDoc.createController = async (req, res) => {
129129
* This function does the work of listing the envelope's recipients
130130
* @param {object} args An object with the following elements: <br/>
131131
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
132-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
133132
* <tt>accountId</tt>: Current account Id <br/>
134133
* <tt>documentId</tt>: the document to be fetched <br/>
135134
* <tt>envelopeDocuments</tt>: object with data about the envelope's documents

lib/examples/eg008CreateTemplate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,6 @@ eg008CreateTemplate.createController = async (req, res) => {
108108
* This function does the work of checking to see if the template exists and creating it if not.
109109
* @param {object} args An object with the following elements: <br/>
110110
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
111-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
112111
* <tt>accountId</tt>: Current account Id <br/>
113112
* <tt>templateName</tt>: The template's name <br/>
114113
*/

lib/examples/eg009UseTemplate.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -126,7 +126,6 @@ eg009UseTemplate.createController = async (req, res) => {
126126
* This function does the work of creating the envelope
127127
* @param {object} args An object with the following elements: <br/>
128128
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
129-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
130129
* <tt>accountId</tt>: Current account Id <br/>
131130
* <tt>envelopeArgs</tt>: envelopeArgs, an object with elements
132131
* <tt>templateId</tt>, <tt>signerEmail</tt>, <tt>signerName</tt>,

lib/examples/eg011EmbeddedSending.js

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,6 @@ eg011EmbeddedSending.createController = async (req, res) => {
121121
* draft mode and returning a URL for the sender's view
122122
* @param {object} args An object with the following elements: <br/>
123123
* <tt>dsAPIclient</tt>: The DocuSign API Client object, already set with an access token and base url <br/>
124-
* <tt>makePromise</tt>: Function for promisfying an SDK method <br/>
125124
* <tt>accountId</tt>: Current account Id <br/>
126125
* <tt>senderView</tt>: tagging or recipient
127126
* <tt>envelopeArgs</tt>: envelopeArgs, an object with elements

0 commit comments

Comments
 (0)