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