comprodls-sdk 2.32.0 → 2.33.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -702,6 +702,7 @@ function generateClassCode(options) {
|
|
|
702
702
|
accountId: 'string' //mandatory
|
|
703
703
|
extUserId: 'string', //mandatory
|
|
704
704
|
jobType: 'string' //optional queryParam, Use this param to get All Jobs of a particular jobType.
|
|
705
|
+
details: boolean //optional queryParam, Use this param to add extension data in response of each job.
|
|
705
706
|
}
|
|
706
707
|
*/
|
|
707
708
|
function getAllJobs(options) {
|
|
@@ -716,6 +717,7 @@ function getAllJobs(options) {
|
|
|
716
717
|
|
|
717
718
|
var params = {};
|
|
718
719
|
if(options.jobType) { params.jobType = options.jobType; }
|
|
720
|
+
if(options.details) { params.details = options.details; }
|
|
719
721
|
|
|
720
722
|
// Setup request with URL and Params
|
|
721
723
|
var requestAPI = request.get(url).query(params);
|