Skip to content

Commit

Permalink
v5.0.0-rc (#84)
Browse files Browse the repository at this point in the history
* v5.0.0-rc

* Update .travis.yml
  • Loading branch information
acooper4960 authored Aug 30, 2019
1 parent 2c80df1 commit 1eb80c1
Show file tree
Hide file tree
Showing 428 changed files with 108,011 additions and 6,923 deletions.
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,13 @@
All notable changes to this project will be documented in this file.

See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
## [5.0.0] - eSignature API v2.1-19.2.02 - 2019-09-28
### BREAKING
* The SDK now supports version v2.1-19.2.02 of the DocuSign eSignature API.
* SDK Release Version updated.
### Fixed
* Number and Date serialization issues DCM-3210
* Updated phpdocs to point to new location of ApiException DCM-3372

## [4.0.0] - eSignature API v19.1.02 - 2019-06-07
### BREAKING
Expand Down
1,157 changes: 922 additions & 235 deletions src/Api/AccountsApi.php

Large diffs are not rendered by default.

30 changes: 15 additions & 15 deletions src/Api/AuthenticationApi.php
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ public function setLoginSettings($login_settings)
namespace DocuSign\eSign\Api;

use \DocuSign\eSign\Client\ApiClient;
use \DocuSign\eSign\ApiException;
use \DocuSign\eSign\Client\ApiException;
use \DocuSign\eSign\Configuration;
use \DocuSign\eSign\ObjectSerializer;

Expand Down Expand Up @@ -202,7 +202,7 @@ public function setApiClient(\DocuSign\eSign\Client\ApiClient $apiClient)
* @param string $account_id The external account number (int) or account ID Guid.
* @param string $user_id The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @param \DocuSign\eSign\Model\SocialAccountInformation $social_account_information (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return void
*/
public function deleteSocialLogin($account_id, $user_id, $social_account_information = null)
Expand All @@ -219,7 +219,7 @@ public function deleteSocialLogin($account_id, $user_id, $social_account_informa
* @param string $account_id The external account number (int) or account ID Guid.
* @param string $user_id The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @param \DocuSign\eSign\Model\SocialAccountInformation $social_account_information (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function deleteSocialLoginWithHttpInfo($account_id, $user_id, $social_account_information = null)
Expand Down Expand Up @@ -306,7 +306,7 @@ public function deleteSocialLoginWithHttpInfo($account_id, $user_id, $social_acc
*
* Creates an authorization token.
*
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return \DocuSign\eSign\Model\OauthAccess
*/
public function getOAuthToken()
Expand All @@ -320,7 +320,7 @@ public function getOAuthToken()
*
* Creates an authorization token.
*
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of \DocuSign\eSign\Model\OauthAccess, HTTP status code, HTTP response headers (array of strings)
*/
public function getOAuthTokenWithHttpInfo()
Expand Down Expand Up @@ -384,7 +384,7 @@ public function getOAuthTokenWithHttpInfo()
*
* @param string $account_id The external account number (int) or account ID Guid.
* @param string $user_id The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return \DocuSign\eSign\Model\UserSocialIdResult
*/
public function listSocialLogins($account_id, $user_id)
Expand All @@ -400,7 +400,7 @@ public function listSocialLogins($account_id, $user_id)
*
* @param string $account_id The external account number (int) or account ID Guid.
* @param string $user_id The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of \DocuSign\eSign\Model\UserSocialIdResult, HTTP status code, HTTP response headers (array of strings)
*/
public function listSocialLoginsWithHttpInfo($account_id, $user_id)
Expand Down Expand Up @@ -487,7 +487,7 @@ public function listSocialLoginsWithHttpInfo($account_id, $user_id)
* Gets login information for a specified user.
*
* @param $options Options for modifying the behavior of the function. (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return \DocuSign\eSign\Model\LoginInformation
*/
public function login(AuthenticationApi\LoginOptions $options = null)
Expand All @@ -502,7 +502,7 @@ public function login(AuthenticationApi\LoginOptions $options = null)
* Gets login information for a specified user.
*
* @param $options Options for modifying the behavior of the function. (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of \DocuSign\eSign\Model\LoginInformation, HTTP status code, HTTP response headers (array of strings)
*/
public function loginWithHttpInfo(AuthenticationApi\LoginOptions $options = null)
Expand Down Expand Up @@ -584,7 +584,7 @@ public function loginWithHttpInfo(AuthenticationApi\LoginOptions $options = null
*
* Revokes an authorization token.
*
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return void
*/
public function revokeOAuthToken()
Expand All @@ -598,7 +598,7 @@ public function revokeOAuthToken()
*
* Revokes an authorization token.
*
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function revokeOAuthTokenWithHttpInfo()
Expand Down Expand Up @@ -658,7 +658,7 @@ public function revokeOAuthTokenWithHttpInfo()
*
* @param string $login_part Currently, only the value **password** is supported.
* @param \DocuSign\eSign\Model\UserPasswordInformation $user_password_information (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return void
*/
public function updatePassword($login_part, $user_password_information = null)
Expand All @@ -674,7 +674,7 @@ public function updatePassword($login_part, $user_password_information = null)
*
* @param string $login_part Currently, only the value **password** is supported.
* @param \DocuSign\eSign\Model\UserPasswordInformation $user_password_information (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function updatePasswordWithHttpInfo($login_part, $user_password_information = null)
Expand Down Expand Up @@ -752,7 +752,7 @@ public function updatePasswordWithHttpInfo($login_part, $user_password_informati
* @param string $account_id The external account number (int) or account ID Guid.
* @param string $user_id The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @param \DocuSign\eSign\Model\SocialAccountInformation $social_account_information (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return void
*/
public function updateSocialLogin($account_id, $user_id, $social_account_information = null)
Expand All @@ -769,7 +769,7 @@ public function updateSocialLogin($account_id, $user_id, $social_account_informa
* @param string $account_id The external account number (int) or account ID Guid.
* @param string $user_id The user ID of the user being accessed. Generally this is the user ID of the authenticated user, but if the authenticated user is an Admin on the account, this may be another user the Admin user is accessing.
* @param \DocuSign\eSign\Model\SocialAccountInformation $social_account_information (optional)
* @throws \DocuSign\eSign\ApiException on non-2xx response
* @throws \DocuSign\eSign\Client\ApiException on non-2xx response
* @return array of null, HTTP status code, HTTP response headers (array of strings)
*/
public function updateSocialLoginWithHttpInfo($account_id, $user_id, $social_account_information = null)
Expand Down
Loading

0 comments on commit 1eb80c1

Please sign in to comment.