iptdevs-design-system 3.1.161 → 3.1.162
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.
- package/esm2020/lib/core/models/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +5 -0
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +5 -0
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/commercial/commercial.model.d.ts +14 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -202,3 +202,17 @@ export interface IAssigAdvisorGoalsRs {
|
|
|
202
202
|
status: number;
|
|
203
203
|
code: number;
|
|
204
204
|
}
|
|
205
|
+
export interface IAdvisorGoalsRs {
|
|
206
|
+
code: number;
|
|
207
|
+
user: number;
|
|
208
|
+
goal: IGoalRs;
|
|
209
|
+
status: number;
|
|
210
|
+
}
|
|
211
|
+
export interface IGoalRs {
|
|
212
|
+
code: number;
|
|
213
|
+
name: string;
|
|
214
|
+
monthly_goal: number;
|
|
215
|
+
weekly_goal: number;
|
|
216
|
+
daily_goal: number;
|
|
217
|
+
goal_period: Date;
|
|
218
|
+
}
|
|
@@ -6,6 +6,7 @@ import { IPTGeneralService } from '../service-enviroments';
|
|
|
6
6
|
import { AdicInfoByCodeRq, CodPricesRq, IGoalInterfaceRq, ParentByCodeRq, IReportExcelRq, IObtainRefersByUserRq, IAssignPosibleStudentForValueRq, IGetContactsadviserRq, IObtainCodPricesRq, IAssigningAdvisorGoalsRq } from '../../models/commercial/commercial.model';
|
|
7
7
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
8
8
|
import { ISocialNetworksRq } from '../../models/marketing/marketing.model';
|
|
9
|
+
import { IObtainAllCoursewallet } from '../../models/budget/budget.model';
|
|
9
10
|
import * as i0 from "@angular/core";
|
|
10
11
|
export declare class CommercialService extends IPTGeneralService {
|
|
11
12
|
private http;
|
|
@@ -38,6 +39,7 @@ export declare class CommercialService extends IPTGeneralService {
|
|
|
38
39
|
ObtainCodPrices(params: IObtainCodPricesRq): Observable<any>;
|
|
39
40
|
postCreatedSocialNetowrks(params: ISocialNetworksRq): Observable<any>;
|
|
40
41
|
postAssigningAdvisorGoals(params: IAssigningAdvisorGoalsRq): Observable<any>;
|
|
42
|
+
posObtainAdvisorGoals(params: IObtainAllCoursewallet): Observable<any>;
|
|
41
43
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
|
|
42
44
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
|
|
43
45
|
}
|