Skip to content

Commit 828807a

Browse files
garg-muditroot
andauthored
Version 3.0.0-rc3-v2.1-1.4.1 release (#14)
Co-authored-by: root <root@devcenteradmin.docusigntest.com>
1 parent 896a70f commit 828807a

6 files changed

Lines changed: 51 additions & 42 deletions

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,11 @@
33
See [DocuSign Support Center](https://support.docusign.com/en/releasenotes/) for Product Release Notes.
44

55

6+
## [v3.0.0-rc3] - Admin API v2.1-1.4.1 - 2024-10-22
7+
### Changed
8+
- Added support for version v2.1-1.4.1 of the DocuSign Admin API.
9+
- Updated the SDK release version.
10+
611
## [v3.0.0-rc2] - Admin API v2.1-1.4.0 - 2024-09-19
712
### Other Changes
813
- Fixed issue - skipped removing empty arrays in request parameters when making HTTP calls.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "docusign-admin",
3-
"version": "3.0.0-rc2",
3+
"version": "3.0.0-rc3",
44
"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",

src/api/UsersApi.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -659,7 +659,7 @@
659659
* @param {String} optsOrCallback.accountId Select users that are members of the specified account. At least one of email, account_id or organization_reserved_domain_id must be specified.
660660
* @param {String} optsOrCallback.organizationReservedDomainId Select users that are in the specified domain. At least one of email, account_id or organization_reserved_domain_id must be specified.
661661
* @param {String} optsOrCallback.lastModifiedSince Select users whose data have been modified since the date specified; account_id or organization_reserved_domain_id must be specified.
662-
* @param {Boolean} optsOrCallback.includeDsGroups Select users with groups the users belong to; The organization must have entitlement AllowMultiApplication enabled.
662+
* @param {Boolean} optsOrCallback.includeDsGroups Select users with groups the users belong to; account_id must be specified. The organization must have the entitlement AllowMultiApplication enabled.
663663
* @param {module:api/UsersApi~getUsersCallback} callback The callback function, accepting three arguments: error, data, response
664664
* data is of type: {@link module:model/OrganizationUsersResponse}
665665
*/

src/model/SubscriptionProvisionModelAccountCreateCreateAccountDetails.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@
7373
obj['AdminUser'] = SubscriptionProvisionModelAccountCreateAccountAdmin.constructFromObject(data['AdminUser']);
7474
}
7575
if (data.hasOwnProperty('BillingProfileType')) {
76-
obj['BillingProfileType'] = ApiClient.convertToType(data['BillingProfileType'], 'String');
76+
obj['BillingProfileType'] = ApiClient.convertToType(data['BillingProfileType'], 'Number');
7777
}
7878
}
7979
return obj;
@@ -104,28 +104,29 @@
104104
*/
105105
exports.prototype['AdminUser'] = undefined;
106106
/**
107+
* 0 stands for Web, 1 stands for Direct
107108
* @member {module:model/SubscriptionProvisionModelAccountCreateCreateAccountDetails.BillingProfileTypeEnum} BillingProfileType
108109
*/
109110
exports.prototype['BillingProfileType'] = undefined;
110111

111112

112113
/**
113114
* Allowed values for the <code>billingProfileType</code> property.
114-
* @enum {String}
115+
* @enum {Number}
115116
* @readonly
116117
*/
117118
exports.BillingProfileTypeEnum = {
118119
/**
119-
* value: "Web"
120+
* value: 0
120121
* @const
121122
*/
122-
web: "Web",
123+
_0: 0,
123124

124125
/**
125-
* value: "Direct"
126+
* value: 1
126127
* @const
127128
*/
128-
direct: "Direct"
129+
_1: 1
129130
};
130131

131132

src/model/SubscriptionProvisionModelAccountCreateCreateSubAccountDetails.js

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@
7676
obj['AdminUser'] = SubscriptionProvisionModelAccountCreateAccountAdmin.constructFromObject(data['AdminUser']);
7777
}
7878
if (data.hasOwnProperty('BillingProfileType')) {
79-
obj['BillingProfileType'] = ApiClient.convertToType(data['BillingProfileType'], 'String');
79+
obj['BillingProfileType'] = ApiClient.convertToType(data['BillingProfileType'], 'Number');
8080
}
8181
}
8282
return obj;
@@ -111,28 +111,29 @@
111111
*/
112112
exports.prototype['AdminUser'] = undefined;
113113
/**
114+
* 0 stands for Web, 1 stands for Direct
114115
* @member {module:model/SubscriptionProvisionModelAccountCreateCreateSubAccountDetails.BillingProfileTypeEnum} BillingProfileType
115116
*/
116117
exports.prototype['BillingProfileType'] = undefined;
117118

118119

119120
/**
120121
* Allowed values for the <code>billingProfileType</code> property.
121-
* @enum {String}
122+
* @enum {Number}
122123
* @readonly
123124
*/
124125
exports.BillingProfileTypeEnum = {
125126
/**
126-
* value: "Web"
127+
* value: 0
127128
* @const
128129
*/
129-
web: "Web",
130+
_0: 0,
130131

131132
/**
132-
* value: "Direct"
133+
* value: 1
133134
* @const
134135
*/
135-
direct: "Direct"
136+
_1: 1
136137
};
137138

138139

src/model/SubscriptionProvisionModelAssetGroupWork.js

Lines changed: 30 additions & 28 deletions
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@
127127
obj['CreatedBy'] = ApiClient.convertToType(data['CreatedBy'], 'String');
128128
}
129129
if (data.hasOwnProperty('CreatedByType')) {
130-
obj['CreatedByType'] = ApiClient.convertToType(data['CreatedByType'], 'String');
130+
obj['CreatedByType'] = ApiClient.convertToType(data['CreatedByType'], 'Number');
131131
}
132132
if (data.hasOwnProperty('CreatedDate')) {
133133
obj['CreatedDate'] = ApiClient.convertToType(data['CreatedDate'], 'Date');
@@ -136,7 +136,7 @@
136136
obj['UpdatedBy'] = ApiClient.convertToType(data['UpdatedBy'], 'String');
137137
}
138138
if (data.hasOwnProperty('UpdatedByType')) {
139-
obj['UpdatedByType'] = ApiClient.convertToType(data['UpdatedByType'], 'String');
139+
obj['UpdatedByType'] = ApiClient.convertToType(data['UpdatedByType'], 'Number');
140140
}
141141
if (data.hasOwnProperty('UpdatedDate')) {
142142
obj['UpdatedDate'] = ApiClient.convertToType(data['UpdatedDate'], 'Date');
@@ -245,6 +245,7 @@
245245
*/
246246
exports.prototype['CreatedBy'] = undefined;
247247
/**
248+
* 0 stands for Application, 1 stands for User, 2 stands for Generic, 3 stands for RestAPIAuth, 4 stands for Resource, 5 stands for Restricted
248249
* @member {module:model/SubscriptionProvisionModelAssetGroupWork.CreatedByTypeEnum} CreatedByType
249250
*/
250251
exports.prototype['CreatedByType'] = undefined;
@@ -257,6 +258,7 @@
257258
*/
258259
exports.prototype['UpdatedBy'] = undefined;
259260
/**
261+
* 0 stands for Application, 1 stands for User, 2 stands for Generic, 3 stands for RestAPIAuth, 4 stands for Resource, 5 stands for Restricted
260262
* @member {module:model/SubscriptionProvisionModelAssetGroupWork.UpdatedByTypeEnum} UpdatedByType
261263
*/
262264
exports.prototype['UpdatedByType'] = undefined;
@@ -376,88 +378,88 @@
376378

377379
/**
378380
* Allowed values for the <code>createdByType</code> property.
379-
* @enum {String}
381+
* @enum {Number}
380382
* @readonly
381383
*/
382384
exports.CreatedByTypeEnum = {
383385
/**
384-
* value: "Application"
386+
* value: 0
385387
* @const
386388
*/
387-
application: "Application",
389+
_0: 0,
388390

389391
/**
390-
* value: "User"
392+
* value: 1
391393
* @const
392394
*/
393-
user: "User",
395+
_1: 1,
394396

395397
/**
396-
* value: "Generic"
398+
* value: 2
397399
* @const
398400
*/
399-
generic: "Generic",
401+
_2: 2,
400402

401403
/**
402-
* value: "RestAPIAuth"
404+
* value: 3
403405
* @const
404406
*/
405-
restAPIAuth: "RestAPIAuth",
407+
_3: 3,
406408

407409
/**
408-
* value: "Resource"
410+
* value: 4
409411
* @const
410412
*/
411-
resource: "Resource",
413+
_4: 4,
412414

413415
/**
414-
* value: "Restricted"
416+
* value: 5
415417
* @const
416418
*/
417-
restricted: "Restricted"
419+
_5: 5
418420
};
419421

420422
/**
421423
* Allowed values for the <code>updatedByType</code> property.
422-
* @enum {String}
424+
* @enum {Number}
423425
* @readonly
424426
*/
425427
exports.UpdatedByTypeEnum = {
426428
/**
427-
* value: "Application"
429+
* value: 0
428430
* @const
429431
*/
430-
application: "Application",
432+
_0: 0,
431433

432434
/**
433-
* value: "User"
435+
* value: 1
434436
* @const
435437
*/
436-
user: "User",
438+
_1: 1,
437439

438440
/**
439-
* value: "Generic"
441+
* value: 2
440442
* @const
441443
*/
442-
generic: "Generic",
444+
_2: 2,
443445

444446
/**
445-
* value: "RestAPIAuth"
447+
* value: 3
446448
* @const
447449
*/
448-
restAPIAuth: "RestAPIAuth",
450+
_3: 3,
449451

450452
/**
451-
* value: "Resource"
453+
* value: 4
452454
* @const
453455
*/
454-
resource: "Resource",
456+
_4: 4,
455457

456458
/**
457-
* value: "Restricted"
459+
* value: 5
458460
* @const
459461
*/
460-
restricted: "Restricted"
462+
_5: 5
461463
};
462464

463465

0 commit comments

Comments
 (0)