Skip to content

Commit 25166bf

Browse files
committed
Merge branch 'maintenance-november-2023' of https://github.com/docusign/code-examples-csharp-private into maintenance-november-2023
2 parents 82b4eee + e910aa5 commit 25166bf

File tree

6 files changed

+113
-41
lines changed

6 files changed

+113
-41
lines changed

manifest/ConfigurationManifestJS.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@
176176
"packages": [
177177
{
178178
"name": "docusign-esign",
179-
"version": "6.3.0"
179+
"version": "6.5.1"
180180
},
181181
{
182182
"name": "fs",
@@ -198,7 +198,7 @@
198198
"packages": [
199199
{
200200
"name": "docusign-esign",
201-
"version": "^6.3.0"
201+
"version": "^6.5.1"
202202
}
203203
],
204204
"scopes": [

manifest/ConfigurationManifestPython.json

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -191,15 +191,15 @@
191191
"packages": [
192192
{
193193
"name": "Flask",
194-
"version": "2.2.5"
194+
"version": "2.3.3"
195195
},
196196
{
197197
"name": "Flask-OAuthlib",
198198
"version": "0.9.6"
199199
},
200200
{
201201
"name": "flask-wtf",
202-
"version": "1.1.1"
202+
"version": "1.2.1"
203203
},
204204
{
205205
"name": "oauthlib",
@@ -221,7 +221,7 @@
221221
"packages": [
222222
{
223223
"name": "docusign-esign",
224-
"version": "3.23.0"
224+
"version": "3.25.0"
225225
}
226226
],
227227
"scopes": [
@@ -269,7 +269,7 @@
269269
"packages": [
270270
{
271271
"name": "docusign-monitor",
272-
"version": "1.1.0"
272+
"version": "1.2.0"
273273
}
274274
]
275275
}

manifest/ConfigurationManifestRuby.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -185,15 +185,15 @@
185185
"packages": [
186186
{
187187
"name": "rails",
188-
"version": "7.0.5"
188+
"version": "7.1.2"
189189
},
190190
{
191191
"name": "sqlite3",
192-
"version": "1.6.3"
192+
"version": "1.6.9"
193193
},
194194
{
195195
"name": "puma",
196-
"version": "6.3.0"
196+
"version": "6.4.0"
197197
},
198198
{
199199
"name": "sass-rails",
@@ -227,7 +227,7 @@
227227
"packages": [
228228
{
229229
"name": "docusign_esign",
230-
"version": "3.24.0"
230+
"version": "3.26.0"
231231
}
232232
],
233233
"scopes": [
@@ -275,7 +275,7 @@
275275
"packages": [
276276
{
277277
"name": "docusign_monitor",
278-
"version": "1.1.0"
278+
"version": "1.2.0"
279279
}
280280
]
281281
}

manifest/ExtensionManifestJS.json

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -418,35 +418,59 @@
418418
},
419419
{
420420
"number": "53",
421-
"name": "Query monitoring data with filters",
422-
"description": "Demonstrates how to query an organization's data based on specified filters and aggregations.",
423-
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/monitor/examples/postWebQuery.js",
424-
"method": "postQuery",
425-
"apiType": "Monitor"
426-
},
427-
{
428-
"number": "54",
429421
"name": "Send an envelope to an In Person Signer",
430422
"description": "Demonstrates how to host an In Person Signing session with embedded signing.",
431423
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/eSignature/examples/signingInPerson.js",
432424
"method": "sendEnvelopeForInPersonSigning",
433425
"apiType": "ESignature"
434426
},
435427
{
436-
"number": "55",
428+
"number": "54",
437429
"name": "Request a signature through your app (embedded signing) with a CFR Part 11 account",
438430
"description": "Sends an envelope, then uses embedded signing with recipient authentication by phone for the first signer. With embedded signing, DocuSign signing is initiated from your website.",
439431
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/eSignature/examples/embeddedSigningCFR.js",
440432
"method": "sendEnvelopeForEmbeddedSigning",
441433
"apiType": "ESignature"
442434
},
443435
{
444-
"number": "56",
436+
"number": "55",
445437
"name": "Embed a clickwrap",
446438
"description": "Creates a unique URL for an active clickwrap and embeds the clickwrap on your page.",
447439
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/click/examples/embedClickwrap.js",
448440
"method": "embedClickwrap",
449441
"apiType": "Click"
442+
},
443+
{
444+
"number": "56",
445+
"name": "Request a signature by email with document generation",
446+
"description": "Creates an envelope from a template with a document that is dynamically generated to include all the customized data specified by the sender.",
447+
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/eSignature/examples/documentGeneration.js",
448+
"method": "sendEnvelope",
449+
"apiType": "ESignature"
450+
},
451+
{
452+
"number": "57",
453+
"name": "Share access to a DocuSign envelope inbox",
454+
"description": "Share envelope inbox access with an agent user and view the principal user's envelopes using the Shared Access view in the DocuSign UI.",
455+
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/eSignature/examples/sharedAccess.js",
456+
"method": "createAgent",
457+
"apiType": "ESignature"
458+
},
459+
{
460+
"number": "58",
461+
"name": "Request a signature using focused view",
462+
"description": "Sends an envelope, then uses focused view for the signer.",
463+
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/eSignature/examples/focusedView.js",
464+
"method": "sendEnvelope",
465+
"apiType": "ESignature"
466+
},
467+
{
468+
"number": "59",
469+
"name": "Set document visibility for envelope recipients",
470+
"description": "Demonstrates how to set document visibility for envelope recipients.",
471+
"source": "https://raw.githubusercontent.com/docusign/code-examples-node/master/lib/eSignature/examples/setDocumentVisibility.js",
472+
"method": "sendEnvelope",
473+
"apiType": "ESignature"
450474
}
451475
],
452476
"postAddOpenURI": "https://developers.docusign.com/platform/auth/authcode/"

manifest/ExtensionManifestPython.json

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -418,35 +418,59 @@
418418
},
419419
{
420420
"number": "53",
421-
"name": "Query monitoring data with filters",
422-
"description": "Demonstrates how to query an organization's data based on specified filters and aggregations.",
423-
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/monitor/examples/eg002_post_web_query.py",
424-
"method": "worker",
425-
"apiType": "Monitor"
426-
},
427-
{
428-
"number": "54",
429421
"name": "Send an envelope to an In Person Signer",
430422
"description": "Demonstrates how to host an In Person Signing session with embedded signing.",
431423
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/eSignature/examples/eg039_in_person_signer.py",
432424
"method": "worker",
433425
"apiType": "ESignature"
434426
},
435427
{
436-
"number": "55",
428+
"number": "54",
437429
"name": "Request a signature through your app (embedded signing) with a CFR Part 11 account",
438430
"description": "Sends an envelope, then uses embedded signing with recipient authentication by phone for the first signer. With embedded signing, DocuSign signing is initiated from your website.",
439431
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/eSignature/examples/eg041_cfr_embedded_signing.py",
440432
"method": "worker",
441433
"apiType": "ESignature"
442434
},
443435
{
444-
"number": "56",
436+
"number": "55",
445437
"name": "Embed a clickwrap",
446438
"description": "Creates a unique URL for an active clickwrap and embeds the clickwrap on your page.",
447439
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/click/examples/eg006_embed_clickwrap.py",
448440
"method": "worker",
449441
"apiType": "Click"
442+
},
443+
{
444+
"number": "56",
445+
"name": "Request a signature by email with document generation",
446+
"description": "Creates an envelope from a template with a document that is dynamically generated to include all the customized data specified by the sender.",
447+
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/eSignature/examples/eg042_document_generation.py",
448+
"method": "worker",
449+
"apiType": "ESignature"
450+
},
451+
{
452+
"number": "57",
453+
"name": "Share access to a DocuSign envelope inbox",
454+
"description": "Share envelope inbox access with an agent user and view the principal user's envelopes using the Shared Access view in the DocuSign UI.",
455+
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/eSignature/examples/eg043_shared_access.py",
456+
"method": "worker",
457+
"apiType": "ESignature"
458+
},
459+
{
460+
"number": "58",
461+
"name": "Request a signature using focused view",
462+
"description": "Sends an envelope, then uses focused view for the signer.",
463+
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/eSignature/examples/eg044_focused_view.py",
464+
"method": "worker",
465+
"apiType": "ESignature"
466+
},
467+
{
468+
"number": "59",
469+
"name": "Set document visibility for envelope recipients",
470+
"description": "Demonstrates how to set document visibility for envelope recipients.",
471+
"source": "https://raw.githubusercontent.com/docusign/code-examples-python/master/app/eSignature/examples/eg040_document_visibility.py",
472+
"method": "worker",
473+
"apiType": "ESignature"
450474
}
451475
],
452476
"postAddOpenURI": "https://developers.docusign.com/platform/auth/authcode/"

manifest/ExtensionManifestRuby.json

Lines changed: 34 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -418,35 +418,59 @@
418418
},
419419
{
420420
"number": "53",
421-
"name": "Query monitoring data with filters",
422-
"description": "Demonstrates how to query an organization's data based on specified filters and aggregations.",
423-
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg004_envelope_info_service.rb",
424-
"method": "worker",
425-
"apiType": "Monitor"
426-
},
427-
{
428-
"number": "54",
429421
"name": "Send an envelope to an In Person Signer",
430422
"description": "Demonstrates how to host an In Person Signing session with embedded signing.",
431423
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg039_signing_in_person_service.rb",
432424
"method": "worker",
433425
"apiType": "ESignature"
434426
},
435427
{
436-
"number": "55",
428+
"number": "54",
437429
"name": "Request a signature through your app (embedded signing) with a CFR Part 11 account",
438430
"description": "Sends an envelope, then uses embedded signing with recipient authentication by phone for the first signer. With embedded signing, DocuSign signing is initiated from your website.",
439431
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg041_cfr_embedded_signing_service.rb",
440432
"method": "worker",
441433
"apiType": "ESignature"
442434
},
443435
{
444-
"number": "56",
436+
"number": "55",
445437
"name": "Embed a clickwrap",
446438
"description": "Creates a unique URL for an active clickwrap and embeds the clickwrap on your page.",
447439
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/clickwrap/eg006_embed_clickwrap_service.rb",
448440
"method": "worker",
449441
"apiType": "Click"
442+
},
443+
{
444+
"number": "56",
445+
"name": "Request a signature by email with document generation",
446+
"description": "Creates an envelope from a template with a document that is dynamically generated to include all the customized data specified by the sender.",
447+
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg042_document_generation_service.rb",
448+
"method": "worker",
449+
"apiType": "ESignature"
450+
},
451+
{
452+
"number": "57",
453+
"name": "Share access to a DocuSign envelope inbox",
454+
"description": "Share envelope inbox access with an agent user and view the principal user's envelopes using the Shared Access view in the DocuSign UI.",
455+
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg043_shared_access_service.rb",
456+
"method": "worker",
457+
"apiType": "ESignature"
458+
},
459+
{
460+
"number": "58",
461+
"name": "Request a signature using focused view",
462+
"description": "Sends an envelope, then uses focused view for the signer.",
463+
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg044_focused_view_service.rb",
464+
"method": "worker",
465+
"apiType": "ESignature"
466+
},
467+
{
468+
"number": "59",
469+
"name": "Set document visibility for envelope recipients",
470+
"description": "Demonstrates how to set document visibility for envelope recipients.",
471+
"source": "https://raw.githubusercontent.com/docusign/code-examples-ruby/master/app/services/e_sign/eg040_set_document_visibility_service.rb",
472+
"method": "worker",
473+
"apiType": "ESignature"
450474
}
451475
],
452476
"postAddOpenURI": "https://developers.docusign.com/platform/auth/authcode/"

0 commit comments

Comments
 (0)