Skip to content

Commit

Permalink
v3.9.0 GA (#322)
Browse files Browse the repository at this point in the history
  • Loading branch information
RajRele authored Apr 29, 2021
1 parent f84ee05 commit 9289d04
Show file tree
Hide file tree
Showing 7 changed files with 2,719 additions and 2,715 deletions.
9 changes: 8 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,12 @@
# DocuSign C# Client Changelog - eSignature API v2


## [v3.9.0] - eSignature API v2-21.1.01.03 - 04/26/2021
### Added
- Added new method `DeleteConnectSecret` to connect.
### Changed
- Added support for version v2-21.1.01.03 of the DocuSign eSignature API.
- Updated the SDK release version.

## [v3.9.0-rc] - eSignature API v2-21.1.01 - 04/15/2021
### Changed
* Added support for version v2-21.1.01 of the DocuSign eSignature API.
Expand Down
7 changes: 2 additions & 5 deletions sdk/src/DocuSign.eSign/Api/AccountsApi.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11120,8 +11120,7 @@ public ApiResponse< BrandResources > UpdateBrandResourcesByContentTypeWithHttpIn
throw new ApiException(400, "Missing required parameter 'brandId' when calling AccountsApi->UpdateBrandResourcesByContentType");
// verify the required parameter 'resourceContentType' is set
if (resourceContentType == null)
throw new ApiException(400, "Missing required parameter 'resourceContentType' when calling AccountsApi->UpdateBrandResourcesByContentType");

throw new ApiException(400, "Missing required parameter 'resourceContentType' when calling AccountsApi->UpdateBrandResourcesByContentType");
var localVarPath = "/v2/accounts/{accountId}/brands/{brandId}/resources/{resourceContentType}";
var localVarPathParams = new Dictionary<String, String>();
var localVarQueryParams = new Dictionary<String, String>();
Expand Down Expand Up @@ -11151,7 +11150,6 @@ public ApiResponse< BrandResources > UpdateBrandResourcesByContentTypeWithHttpIn
if (brandId != null) localVarPathParams.Add("brandId", this.ApiClient.ParameterToString(brandId)); // path parameter
if (resourceContentType != null) localVarPathParams.Add("resourceContentType", this.ApiClient.ParameterToString(resourceContentType)); // path parameter


// authentication (docusignAccessCode) required
// oauth required
if (!String.IsNullOrEmpty(this.ApiClient.Configuration.AccessToken))
Expand Down Expand Up @@ -11219,7 +11217,7 @@ public async System.Threading.Tasks.Task<ApiResponse<BrandResources>> UpdateBran
// verify the required parameter 'resourceContentType' is set
if (resourceContentType == null)
throw new ApiException(400, "Missing required parameter 'resourceContentType' when calling AccountsApi->UpdateBrandResourcesByContentType");

var localVarPath = "/v2/accounts/{accountId}/brands/{brandId}/resources/{resourceContentType}";
var localVarPathParams = new Dictionary<String, String>();
var localVarQueryParams = new Dictionary<String, String>();
Expand Down Expand Up @@ -11249,7 +11247,6 @@ public async System.Threading.Tasks.Task<ApiResponse<BrandResources>> UpdateBran
if (brandId != null) localVarPathParams.Add("brandId", this.ApiClient.ParameterToString(brandId)); // path parameter
if (resourceContentType != null) localVarPathParams.Add("resourceContentType", this.ApiClient.ParameterToString(resourceContentType)); // path parameter


// authentication (docusignAccessCode) required
// oauth required
if (!String.IsNullOrEmpty(this.ApiClient.Configuration.AccessToken))
Expand Down
5,408 changes: 2,704 additions & 2,704 deletions sdk/src/DocuSign.eSign/Api/EnvelopesApi.cs

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion sdk/src/DocuSign.eSign/Client/Configuration.cs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ public class Configuration
/// Version of the package.
/// </summary>
/// <value>Version of the package.</value>
public const string Version = "3.9.0-rc";
public const string Version = "3.9.0";

/// <summary>
/// Identifier for ISO 8601 DateTime Format
Expand Down
4 changes: 2 additions & 2 deletions sdk/src/DocuSign.eSign/DocuSign.eSign.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Contact: [email protected]
<RootNamespace>DocuSign.eSign</RootNamespace>
<AssemblyName>DocuSign.eSign</AssemblyName>
<NeutralLanguage>en-US</NeutralLanguage>
<VersionPrefix>3.9.0-rc</VersionPrefix>
<VersionPrefix>3.9.0</VersionPrefix>
<VersionSuffix></VersionSuffix>
<GenerateAssemblyInfo>true</GenerateAssemblyInfo>
<GenerateDocumentationFile>true</GenerateDocumentationFile>
Expand All @@ -34,7 +34,7 @@ Contact: [email protected]
<PackageLicenseUrl>https://github.com/docusign/docusign-csharp-client/blob/master/LICENSE</PackageLicenseUrl>
<RepositoryUrl>https://github.com/docusign/docusign-csharp-client</RepositoryUrl>
<RepositoryType>git</RepositoryType>
<PackageReleaseNotes>[3.9.0-rc] - eSignature API v2-21.1.01 - 04/15/2021</PackageReleaseNotes>
<PackageReleaseNotes>[3.9.0] - eSignature API v2-21.1.01.03 - 04/26/2021</PackageReleaseNotes>
</PropertyGroup>

<!-- .NET Framework 4.5.2 compilation flags and build options -->
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/DocuSign.eSign/DocuSign.eSign.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<metadata>
<id>DocuSign.eSign.dll</id>
<version>3.9.0-rc</version>
<version>3.9.0</version>
<title>DocuSign.eSign</title>
<authors>DocuSign</authors>
<owners>DocuSign</owners>
Expand Down
2 changes: 1 addition & 1 deletion sdk/src/DocuSign.eSign/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@
// [assembly: AssemblyVersion("1.0.*")]
internal class AssemblyInformation
{
public const string AssemblyInformationalVersion = "3.7.0";
public const string AssemblyInformationalVersion = "3.9.0";
}

0 comments on commit 9289d04

Please sign in to comment.