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.
@@ -4609,6 +4609,7 @@ function generateClassCode(options) {
4609
4609
  accountId: 'string' //mandatory
4610
4610
  extUserId: 'string', //mandatory
4611
4611
  jobType: 'string' //optional queryParam, Use this param to get All Jobs of a particular jobType.
4612
+ details: boolean //optional queryParam, Use this param to add extension data in response of each job.
4612
4613
  }
4613
4614
  */
4614
4615
  function getAllJobs(options) {
@@ -4623,6 +4624,7 @@ function getAllJobs(options) {
4623
4624
 
4624
4625
  var params = {};
4625
4626
  if(options.jobType) { params.jobType = options.jobType; }
4627
+ if(options.details) { params.details = options.details; }
4626
4628
 
4627
4629
  // Setup request with URL and Params
4628
4630
  var requestAPI = request.get(url).query(params);