Skip to content

Commit 4ec7eeb

Browse files
garg-muditroot
andauthored
Version 5.0.0.rc1-v2.1-24.2.00.00 release (#130)
Co-authored-by: root <[email protected]>
1 parent 840c028 commit 4ec7eeb

File tree

531 files changed

+1503
-1112
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

531 files changed

+1503
-1112
lines changed

.swagger-codegen-ignore

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,6 @@
2525
.swagger-codegen-ignore
2626
git_push.sh
2727
.gitignore
28-
README.md
2928
CHANGELOG.md
3029
best_practices.md
3130

@@ -41,4 +40,4 @@ Rakefile
4140
.rspec
4241
docs/
4342
spec/
44-
tests/
43+
tests/

CHANGELOG.md

Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,77 @@ All notable changes to this project will be documented in this file.
33

44
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
55

6+
## [v5.0.0.rc1] - eSignature API v2.1-24.2.00.00 - 2024-06-28
7+
### Breaking Changes
8+
9+
<details>
10+
<summary>API Changes (Click to expand)</summary>
11+
12+
<div style="margin-left: 20px;">
13+
14+
<br/>
15+
Added support for version v2.1-24.2.00.00 of the Docusign ESignature API.
16+
17+
## Endpoint-Specific Changes
18+
19+
### Updated [Envelopes: get](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/get/)
20+
Added new optional query parameter named `include_anchor_tab_locations` of type string.
21+
22+
### Updated [Envelopes: update](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopes/update/)
23+
Added new optional query parameter named `recycle_on_void` of type string.
24+
25+
### Updated [EnvelopeViews : createCorrect](https://developers.docusign.com/docs/esign-rest-api/reference/envelopes/envelopeviews/createcorrect/)
26+
Request body object `correctViewRequest` has been changed to `envelopeViewRequest`.
27+
28+
## Model Changes
29+
30+
### Updated existing models
31+
32+
### `accountInformation`
33+
34+
- **Added fields:**
35+
- `freeEnvelopeSendsRemainingForAdvancedDocGen`
36+
37+
### `accountSettingsInformation`
38+
39+
- **Added fields:**
40+
- `defaultSigningResponsiveView`
41+
- `defaultSigningResponsiveViewMetadata`
42+
- `dss_SCOREFDN_196_Rebrand_DocuSignIsNotAVerb`
43+
- `enableAdditionalAdvancedWebFormsFeatures`
44+
- `enableAdditionalAdvancedWebFormsFeaturesMetadata`
45+
46+
- **Removed fields:**
47+
- `enableSaveAsEnvelopeCustomFieldInWebForms`
48+
- `enableSaveAsEnvelopeCustomFieldInWebFormsMetadata`
49+
50+
### `bulksendingCopyDocGenFormField`
51+
52+
- **Added field:**
53+
- `rowValues`
54+
55+
### `notaryRecipient`
56+
57+
- **Added field:**
58+
- `canNotaryCorrectEnvelope`
59+
60+
### `tabAccountSettings`
61+
62+
- **Added field:**
63+
- `enableTabAgreementDetails`
64+
- `enableTabAgreementDetailsMetadata`
65+
66+
67+
### Newly added Models
68+
69+
- `bulkSendingCopyDocGenFormFieldRowValue`
70+
71+
</div>
72+
</details>
73+
74+
### Other Changes
75+
- Updated the SDK release version.
76+
677
## [v4.0.0] - eSignature API v2.1-24.1.01.00 - 2024-05-22
778
## Endpoint-Specific Changes
879

README.md

Lines changed: 66 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1,51 +1,95 @@
1-
# The Official DocuSign eSignature Ruby Client SDK
1+
# The Official Docusign eSignature Ruby Client SDK
22

3-
[![RubyGems version][rubygems-image]][rubygems-url]
4-
[![RubyGems downloads][downloads-image]][downloads-url]
5-
[![Build status][travis-image]][travis-url]
3+
The Docusign SDK makes integrating Docusign into your apps and websites a seamless experience.
64

5+
## Table of Contents
6+
- [Introduction](#introduction)
7+
- [Installation](#installation)
8+
* [Version Information](#versionInformation)
9+
* [Requirements](#requirements)
10+
* [Compatibility](#compatibility)
11+
* [Installation via your application's Gemfile](#installationViaGem)
12+
* [Manual Installation](#manualInstallation)
13+
- [Dependencies](#dependencies)
14+
- [API Reference](#apiReference)
15+
- [Code Examples](#codeExamples)
16+
- [OAuth Implementations](#oauthImplementations)
17+
- [Changelog](#changeLog)
18+
- [Support](#support)
19+
- [License](#license)
20+
- [Additional Resources](#additionalResources)
21+
22+
<a id="introduction"></a>
23+
## Introduction
24+
Integrate eSignatures into your application in minutes. The secure and award-winning Docusign eSignature API makes requesting signatures, automating forms, and tracking documents directly from your app easy.
25+
26+
<a id="installation"></a>
27+
## Installation
28+
This client SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our [code examples](https://developers.docusign.com/docs/esign-rest-api/how-to/) from the [Docusign Developer Center](https://developers.docusign.com/), you merely need to install it by following the instructions below.
29+
30+
<a id="versionInformation"></a>
31+
### Version Information
32+
- **API version**: v2.1
33+
- **Latest SDK version**: 5.0.0.rc1
34+
35+
<a id="requirements"></a>
736
## Requirements
837
* Ruby 1.9+
9-
* Free [developer account](https://go.docusign.com/sandbox/productshot/?elqCampaignId=16531)
38+
* Free [developer account](https://go.docusign.com/o/sandbox/?postActivateUrl=https://developers.docusign.com/)
1039

40+
<a id="compatibility"></a>
1141
## Compatibility
1242
* Ruby 1.9+
1343

14-
## Installation
15-
This SDK is provided as open source, which enables you to customize its functionality to suit your particular use case. To do so, download or clone the repository. If the SDK’s given functionality meets your integration needs, or if you’re working through our [code examples](https://developers.docusign.com/docs/esign-rest-api/how-to/) from the [DocuSign Developer Center](https://developers.docusign.com/), you merely need to install it by following the instructions below.
16-
44+
<a id="installationViaGem"></a>
1745
### Installation via your application's Gemfile:
1846
1. In your application's Gemfile, add:
1947
`gem 'docusign_esign'`
2048
2. Open your preferred console.
2149
3. In your project directory, execute the installer by typing: **bundle install**
2250

23-
### Manual installation:
51+
<a id="manualInstallation"></a>
52+
### Manual Installation:
2453
1. Open your preferred console.
2554
2. In the console, type: **gem install docusign_esign**
2655

27-
### Dependencies
56+
<a id="dependencies"></a>
57+
### SDK Dependencies
2858
This client has the following external dependencies:
29-
* Jwt>=1.5.2
30-
* Json>=2.1.0
31-
* Typhoeus>=1.0.1
59+
* Jwt v2.2.1
60+
* Json v2.1.0
61+
* addressable v2.7.0
62+
* Typhoeus v1.0.1
3263

64+
<a id="apiReference"></a>
65+
## API Reference
66+
You can refer to the API reference [here](https://developers.docusign.com/docs/esign-rest-api/reference/).
67+
68+
<a id="codeExamples"></a>
3369
## Code examples
34-
You can find on our GitHub a self-executing package of code examples for the eSignature C# SDK, called a [Launcher](https://github.com/docusign/code-examples-ruby/blob/master/README.md), that demonstrates common use cases. You can also download a version preconfigured for your DocuSign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples can use either the [Authorization Code Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant) or [JSON Web Token (JWT)](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-jsonwebtoken) authentication workflows.
70+
Explore our GitHub repository for the [Launcher](https://github.com/docusign/code-examples-ruby/), a self-executing package housing code examples for the eSignature Ruby SDK. This package showcases several common use cases and their respective source files. Additionally, you can download a version preconfigured for your Docusign developer account from [Quickstart](https://developers.docusign.com/docs/esign-rest-api/quickstart/). These examples support both the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) and [JSON Web Token (JWT)](https://developers.docusign.com/platform/auth/jwt/) authentication workflows.
3571

72+
<a id="oauthImplementations"></a>
3673
## OAuth implementations
37-
For details regarding which type of OAuth grant will work best for your DocuSign integration, see [Choose OAuth Type](https://developers.docusign.com/platform/auth/choose/) in the [DocuSign Developer Center](https://developers.docusign.com/).
74+
For details regarding which type of OAuth grant will work best for your Docusign integration, see [Choose OAuth Type](https://developers.docusign.com/platform/auth/choose/) in the [Docusign Developer Center](https://developers.docusign.com/).
75+
76+
For security purposes, Docusign recommends using the [Authorization Code Grant](https://developers.docusign.com/platform/auth/authcode/) flow.
3877

39-
For security purposes, DocuSign recommends using the [Authorization Code Grant](https://developers.docusign.com/esign-rest-api/guides/authentication/oauth2-code-grant) flow.
78+
<a id="changeLog"></a>
79+
## Changelog
80+
You can refer to the complete changelog [here](https://github.com/docusign/docusign-esign-ruby-client/blob/master/CHANGELOG.md).
4081

82+
<a id="support"></a>
4183
## Support
42-
Log issues against this client through GitHub. We also have an [active developer community on Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi).
84+
Log issues against this client SDK through GitHub. You can also reach out to us through [Docusign Community](https://community.docusign.com/developer-59) and [Stack Overflow](https://stackoverflow.com/questions/tagged/docusignapi).
4385

86+
<a id="license"></a>
4487
## License
45-
The DocuSign eSignature Ruby Client SDK is licensed under the [MIT License](https://github.com/docusign/docusign-ruby-client/blob/master/LICENSE).
88+
The Docusign eSignature Ruby Client SDK is licensed under the [MIT License](https://github.com/docusign/docusign-esign-ruby-client/blob/master/LICENSE).
4689

90+
<a id="additionalResources"></a>
4791
### Additional resources
48-
* [DocuSign Developer Center](https://developers.docusign.com/)
49-
* [DocuSign API on Twitter](https://twitter.com/docusignapi)
50-
* [DocuSign For Developers on LinkedIn](https://www.linkedin.com/showcase/docusign-for-developers/)
51-
* [DocuSign For Developers on YouTube](https://www.youtube.com/channel/UCJSJ2kMs_qeQotmw4-lX2NQ)
92+
* [Docusign Developer Center](https://developers.docusign.com/)
93+
* [Docusign API on Twitter](https://twitter.com/docusignapi)
94+
* [Docusign For Developers on LinkedIn](https://www.linkedin.com/showcase/docusign-for-developers/)
95+
* [Docusign For Developers on YouTube](https://www.youtube.com/channel/UCJSJ2kMs_qeQotmw4-lX2NQ)

docusign_esign.gemspec

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
# -*- encoding: utf-8 -*-
22

33
=begin
4-
#DocuSign REST API
4+
#Docusign eSignature REST API
55
6-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
6+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
77
88
OpenAPI spec version: v2.1
99
@@ -21,7 +21,7 @@ Gem::Specification.new do |s|
2121
s.authors = ["DocuSign"]
2222
s.email = ["[email protected]"]
2323
s.homepage = "https://github.com/docusign/docusign-esign-ruby-client"
24-
s.summary = "DocuSign REST API Ruby Gem"
24+
s.summary = "Docusign eSignature REST API Ruby Gem"
2525
s.description = "The DocuSign package makes integrating DocuSign into your apps and websites a super fast and painless process. The library is open sourced on GitHub, look for the docusign-esign-ruby-client repository. Join the eSign revolution!"
2626
s.license = "MIT"
2727
s.required_ruby_version = ">= 1.9"

lib/docusign_esign.rb

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=begin
2-
#DocuSign REST API
2+
#Docusign eSignature REST API
33
4-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
55
66
OpenAPI spec version: v2.1
77
@@ -120,6 +120,7 @@
120120
require 'docusign_esign/models/bulk_send_test_response'
121121
require 'docusign_esign/models/bulk_sending_copy'
122122
require 'docusign_esign/models/bulk_sending_copy_custom_field'
123+
require 'docusign_esign/models/bulk_sending_copy_doc_gen_form_field_row_value'
123124
require 'docusign_esign/models/bulk_sending_copy_recipient'
124125
require 'docusign_esign/models/bulk_sending_copy_tab'
125126
require 'docusign_esign/models/bulk_sending_list'

lib/docusign_esign/api/accounts_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=begin
2-
#DocuSign REST API
2+
#Docusign eSignature REST API
33
4-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
55
66
OpenAPI spec version: v2.1
77

lib/docusign_esign/api/authentication_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=begin
2-
#DocuSign REST API
2+
#Docusign eSignature REST API
33
4-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
55
66
OpenAPI spec version: v2.1
77

lib/docusign_esign/api/billing_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=begin
2-
#DocuSign REST API
2+
#Docusign eSignature REST API
33
4-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
55
66
OpenAPI spec version: v2.1
77

lib/docusign_esign/api/bulk_envelopes_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=begin
2-
#DocuSign REST API
2+
#Docusign eSignature REST API
33
4-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
55
66
OpenAPI spec version: v2.1
77

lib/docusign_esign/api/bulk_process_data_api.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
=begin
2-
#DocuSign REST API
2+
#Docusign eSignature REST API
33
4-
#The DocuSign REST API provides you with a powerful, convenient, and simple Web services API for interacting with DocuSign.
4+
#The Docusign eSignature REST API provides you with a powerful, convenient, and simple Web services API for interacting with Docusign.
55
66
OpenAPI spec version: v2.1
77

0 commit comments

Comments
 (0)