iptdevs-design-system 3.2.180 → 3.2.181

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.
@@ -4244,11 +4244,21 @@ class CommercialService extends IPTGeneralService {
4244
4244
  this.generateRequestParams(params);
4245
4245
  return this.http.post(serviceUrl, this.httpOptions);
4246
4246
  }
4247
+ getUserCommercialByTypeAssingAndCampus(params) {
4248
+ let serviceUrl = this.SERVICE_URL + 'get/user/commercial/by/type/assing/and/campus';
4249
+ this.generateRequestParams(params);
4250
+ return this.http.post(serviceUrl, this.httpOptions);
4251
+ }
4247
4252
  assingCustomersByTypeAssingContactForAdviser(params) {
4248
4253
  let serviceUrl = this.SERVICE_URL + 'post/Assing/user/posible/student/by/date';
4249
4254
  this.generateRequestParams(params);
4250
4255
  return this.http.post(serviceUrl, this.httpOptions);
4251
4256
  }
4257
+ assingPosibleStudentByCampusAndDate(params) {
4258
+ let serviceUrl = this.SERVICE_URL + 'post/Assing/user/posible/student/by/campus/and/date';
4259
+ this.generateRequestParams(params);
4260
+ return this.http.post(serviceUrl, this.httpOptions);
4261
+ }
4252
4262
  obtainAdditionalUserDataByCourse(params) {
4253
4263
  let serviceUrl = this.SERVICE_URL + 'obtain/additional/user/data/by/course';
4254
4264
  this.generateRequestParams(params);
@@ -4555,11 +4565,6 @@ class CommercialService extends IPTGeneralService {
4555
4565
  };
4556
4566
  return this.http.delete(serviceUrl, options);
4557
4567
  }
4558
- getMonthlyBonusStatus(request, code) {
4559
- let serviceUrl = this.SERVICE_URL + `advisor/monthly/status/${code}`;
4560
- this.generateRequestParams(request);
4561
- return this.http.post(serviceUrl, this.httpOptions);
4562
- }
4563
4568
  getAllCourseTypeCategories(request) {
4564
4569
  const serviceUrl = this.SERVICE_URL + `get/all/course/type/categories`;
4565
4570
  this.generateRequestParams(request);
@@ -4619,6 +4624,11 @@ class CommercialService extends IPTGeneralService {
4619
4624
  this.generateRequestParams(params);
4620
4625
  return this.http.post(serviceUrl, this.httpOptions);
4621
4626
  }
4627
+ getMonthlyBonusStatus(params) {
4628
+ let serviceUrl = this.SERVICE_URL + `advisor/monthly/status`;
4629
+ this.generateRequestParams(params);
4630
+ return this.http.post(serviceUrl, this.httpOptions);
4631
+ }
4622
4632
  }
4623
4633
  CommercialService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
4624
4634
  CommercialService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: CommercialService, providedIn: 'root' });