Skip to content

Commit 89cc305

Browse files
authored
Merge pull request #12 from docusign/3.0.0-rc1-v2.1-1.4.0
Version 3.0.0-rc1 release
2 parents a459680 + 5e5ea80 commit 89cc305

152 files changed

Lines changed: 3760 additions & 154 deletions

File tree

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: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,30 @@
33
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
44

55

6+
## [v3.0.0-rc1] - Admin API v2.1-1.4.0 - 2024-08-27
7+
### Breaking Changes
8+
<details>
9+
<summary>API Changes (Click to expand)</summary>
10+
11+
<br/>
12+
<div style="margin-left: 20px;">
13+
14+
Added new query parameter "include_ds_groups" to the API "/v2/organizations/{organizationId}/users":
15+
16+
<h3>Added New APIs for Account Creation</h3>
17+
<li>GET: get subscription details for organization</li>
18+
<li>POST: initiate Create account request</li>
19+
<li>GET: get ongoing process details by org ID</li>
20+
<li>GET: get individual process details by org ID, asset group ID, asset group work ID</li>
21+
22+
23+
</div>
24+
</details>
25+
26+
### Other Changes
27+
- Added support for version v2.1-1.4.0 of the DocuSign Admin API.
28+
- Updated the SDK release version.
29+
630
## [v2.3.0-rc1] - Admin API v2.1-1.3.0 - 2024-04-23
731
### Changed
832
**Security Updates**

package.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "docusign-admin",
3-
"version": "2.3.0-rc1",
4-
"description": "The DocuSign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.",
3+
"version": "3.0.0-rc1",
4+
"description": "The Docusign Admin API enables you to automate user management with your existing systems while ensuring governance and compliance.",
55
"license": "MIT",
66
"main": "src/index.js",
77
"author": "DocuSign Developer Center <devcenter@docusign.com>",
@@ -64,6 +64,7 @@
6464
"jsdoc": "3.6.10",
6565
"mocha": "~5.0.4",
6666
"mocha-junit-reporter": "^1.18.0",
67+
"pdf-parse-fork": "^1.2.0",
6768
"semistandard": "^12.0.1"
6869
}
6970
}

src/ApiClient.js

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -278,6 +278,16 @@
278278
defaultHeaders[header] = value;
279279
};
280280

281+
/**
282+
* Sets default JWT authorization token for APIs.
283+
*/
284+
exports.prototype.setJWTToken = function setJWTToken(token){
285+
if(!token){
286+
throw new Error("Missing the required parameter 'token' when calling setJWTToken.");
287+
}
288+
defaultHeaders["Authorization"] = `Bearer ${token}`;
289+
}
290+
281291
/**
282292
* Returns a string representation for an actual parameter.
283293
* @param param The actual parameter.

src/api/AccountsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

src/api/BulkExportsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

src/api/BulkImportsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

src/api/DSGroupsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

src/api/IdentityProvidersApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

src/api/OrganizationsApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

src/api/ProductPermissionProfilesApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/**
2-
* DocuSign Admin API
2+
* Docusign Admin API
33
* An API for an organization administrator to manage organizations, accounts and users
44
*
55
* OpenAPI spec version: v2.1

0 commit comments

Comments
 (0)