Skip to content

Commit c42ae8d

Browse files
garg-muditroot
andauthored
Version 8.1.0-rc-v2.1-25.1.00.01 release (#467)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 3aa9f59 commit c42ae8d

87 files changed

Lines changed: 5457 additions & 159 deletions

Some content is hidden

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

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,10 @@
11
# DocuSign C# Client Changelog
22

3+
## [v8.1.0-rc] - eSignature API v2.1-25.1.00.01 - 2025-03-26
4+
### Changed
5+
- Added support for version v2.1-25.1.00.01 of the DocuSign ESignature API.
6+
- Updated the SDK release version.
7+
38
## [v8.0.2] - eSignature API v2.1-24.2.00.00 - 2024-11-15
49
### Changed
510
- Resolved an issue that prevented the use of `RequestJWTApplicationToken` with a production account URL.

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This client SDK is provided as open source, which enables you to customize its f
3333
<a id="versionInformation"></a>
3434
### Version Information
3535
- **API version**: v2.1
36-
- **Latest SDK version (Including prerelease)**: 8.0.2
36+
- **Latest SDK version (Including prerelease)**: 8.1.0-rc
3737

3838
<a id="requirements"></a>
3939
### Requirements

sdk/DocuSign.eSign.sln

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -2,18 +2,18 @@ Microsoft Visual Studio Solution File, Format Version 12.00
22
# Visual Studio 2012
33
VisualStudioVersion = 12.0.0.0
44
MinimumVisualStudioVersion = 10.0.0.1
5-
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{F033EEDD-2FFD-410C-B56A-0AFEDB851DEE}"
5+
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "DocuSign.eSign", "src\DocuSign.eSign\DocuSign.eSign.csproj", "{4CE5731F-3D0E-47D4-BB09-BEF42118D756}"
66
EndProject
77
Global
88
GlobalSection(SolutionConfigurationPlatforms) = preSolution
99
Debug|Any CPU = Debug|Any CPU
1010
Release|Any CPU = Release|Any CPU
1111
EndGlobalSection
1212
GlobalSection(ProjectConfigurationPlatforms) = postSolution
13-
{F033EEDD-2FFD-410C-B56A-0AFEDB851DEE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14-
{F033EEDD-2FFD-410C-B56A-0AFEDB851DEE}.Debug|Any CPU.Build.0 = Debug|Any CPU
15-
{F033EEDD-2FFD-410C-B56A-0AFEDB851DEE}.Release|Any CPU.ActiveCfg = Release|Any CPU
16-
{F033EEDD-2FFD-410C-B56A-0AFEDB851DEE}.Release|Any CPU.Build.0 = Release|Any CPU
13+
{4CE5731F-3D0E-47D4-BB09-BEF42118D756}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
14+
{4CE5731F-3D0E-47D4-BB09-BEF42118D756}.Debug|Any CPU.Build.0 = Debug|Any CPU
15+
{4CE5731F-3D0E-47D4-BB09-BEF42118D756}.Release|Any CPU.ActiveCfg = Release|Any CPU
16+
{4CE5731F-3D0E-47D4-BB09-BEF42118D756}.Release|Any CPU.Build.0 = Release|Any CPU
1717
EndGlobalSection
1818
GlobalSection(SolutionProperties) = preSolution
1919
HideSolutionNode = FALSE

sdk/src/DocuSign.eSign/Api/CloudStorageApi.cs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1206,6 +1206,8 @@ public class ListOptions
12061206
public string orderBy {get; set;}
12071207
///
12081208
public string searchText {get; set;}
1209+
///
1210+
public string skyDriveSkipToken {get; set;}
12091211
/// Indicates the starting point of the first item included in the response set. It uses a 0-based index. The default setting for this is 0.
12101212
public string startPosition {get; set;}
12111213
}
@@ -1288,6 +1290,7 @@ public ApiResponse<ExternalFolder> ListWithHttpInfo(string accountId, string use
12881290
if (options.order != null) localVarQueryParams.Add("order", this.ApiClient.ParameterToString(options.order)); // query parameter
12891291
if (options.orderBy != null) localVarQueryParams.Add("order_by", this.ApiClient.ParameterToString(options.orderBy)); // query parameter
12901292
if (options.searchText != null) localVarQueryParams.Add("search_text", this.ApiClient.ParameterToString(options.searchText)); // query parameter
1293+
if (options.skyDriveSkipToken != null) localVarQueryParams.Add("sky_drive_skip_token", this.ApiClient.ParameterToString(options.skyDriveSkipToken)); // query parameter
12911294
if (options.startPosition != null) localVarQueryParams.Add("start_position", this.ApiClient.ParameterToString(options.startPosition)); // query parameter
12921295
}
12931296

@@ -1394,6 +1397,7 @@ public async System.Threading.Tasks.Task<ApiResponse<ExternalFolder>> ListAsyncW
13941397
if (options.order != null) localVarQueryParams.Add("order", this.ApiClient.ParameterToString(options.order)); // query parameter
13951398
if (options.orderBy != null) localVarQueryParams.Add("order_by", this.ApiClient.ParameterToString(options.orderBy)); // query parameter
13961399
if (options.searchText != null) localVarQueryParams.Add("search_text", this.ApiClient.ParameterToString(options.searchText)); // query parameter
1400+
if (options.skyDriveSkipToken != null) localVarQueryParams.Add("sky_drive_skip_token", this.ApiClient.ParameterToString(options.skyDriveSkipToken)); // query parameter
13971401
if (options.startPosition != null) localVarQueryParams.Add("start_position", this.ApiClient.ParameterToString(options.startPosition)); // query parameter
13981402
}
13991403

sdk/src/DocuSign.eSign/Api/PowerFormsApi.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1502,6 +1502,8 @@ public async System.Threading.Tasks.Task<ApiResponse<PowerFormSendersResponse>>
15021502
/// </summary>
15031503
public class ListPowerFormsOptions
15041504
{
1505+
///
1506+
public string count {get; set;}
15051507
///
15061508
public string fromDate {get; set;}
15071509
///
@@ -1513,6 +1515,8 @@ public class ListPowerFormsOptions
15131515
///
15141516
public string searchText {get; set;}
15151517
///
1518+
public string startPosition {get; set;}
1519+
///
15161520
public string toDate {get; set;}
15171521
}
15181522

@@ -1570,11 +1574,13 @@ public ApiResponse<PowerFormsResponse> ListPowerFormsWithHttpInfo(string account
15701574
if (accountId != null) localVarPathParams.Add("accountId", this.ApiClient.ParameterToString(accountId)); // path parameter
15711575
if (options != null)
15721576
{
1577+
if (options.count != null) localVarQueryParams.Add("count", this.ApiClient.ParameterToString(options.count)); // query parameter
15731578
if (options.fromDate != null) localVarQueryParams.Add("from_date", this.ApiClient.ParameterToString(options.fromDate)); // query parameter
15741579
if (options.order != null) localVarQueryParams.Add("order", this.ApiClient.ParameterToString(options.order)); // query parameter
15751580
if (options.orderBy != null) localVarQueryParams.Add("order_by", this.ApiClient.ParameterToString(options.orderBy)); // query parameter
15761581
if (options.searchFields != null) localVarQueryParams.Add("search_fields", this.ApiClient.ParameterToString(options.searchFields)); // query parameter
15771582
if (options.searchText != null) localVarQueryParams.Add("search_text", this.ApiClient.ParameterToString(options.searchText)); // query parameter
1583+
if (options.startPosition != null) localVarQueryParams.Add("start_position", this.ApiClient.ParameterToString(options.startPosition)); // query parameter
15781584
if (options.toDate != null) localVarQueryParams.Add("to_date", this.ApiClient.ParameterToString(options.toDate)); // query parameter
15791585
}
15801586

@@ -1657,11 +1663,13 @@ public async System.Threading.Tasks.Task<ApiResponse<PowerFormsResponse>> ListPo
16571663
if (accountId != null) localVarPathParams.Add("accountId", this.ApiClient.ParameterToString(accountId)); // path parameter
16581664
if (options != null)
16591665
{
1666+
if (options.count != null) localVarQueryParams.Add("count", this.ApiClient.ParameterToString(options.count)); // query parameter
16601667
if (options.fromDate != null) localVarQueryParams.Add("from_date", this.ApiClient.ParameterToString(options.fromDate)); // query parameter
16611668
if (options.order != null) localVarQueryParams.Add("order", this.ApiClient.ParameterToString(options.order)); // query parameter
16621669
if (options.orderBy != null) localVarQueryParams.Add("order_by", this.ApiClient.ParameterToString(options.orderBy)); // query parameter
16631670
if (options.searchFields != null) localVarQueryParams.Add("search_fields", this.ApiClient.ParameterToString(options.searchFields)); // query parameter
16641671
if (options.searchText != null) localVarQueryParams.Add("search_text", this.ApiClient.ParameterToString(options.searchText)); // query parameter
1672+
if (options.startPosition != null) localVarQueryParams.Add("start_position", this.ApiClient.ParameterToString(options.startPosition)); // query parameter
16651673
if (options.toDate != null) localVarQueryParams.Add("to_date", this.ApiClient.ParameterToString(options.toDate)); // query parameter
16661674
}
16671675

0 commit comments

Comments
 (0)