iptdevs-design-system 3.1.161 → 3.1.163
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/cod/cod-form/cod-form.component.mjs +4 -2
- package/esm2020/lib/core/models/commercial/commercial.model.mjs +1 -1
- package/esm2020/lib/core/models/course/course-rq.model.mjs +1 -1
- package/esm2020/lib/core/services/academic-service/academic.service.mjs +6 -1
- package/esm2020/lib/core/services/commercial-service/comercial.service.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +13 -1
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +13 -1
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/cod/cod-form/cod-form.component.d.ts +2 -1
- package/lib/core/models/commercial/commercial.model.d.ts +14 -0
- package/lib/core/models/course/course-rq.model.d.ts +4 -0
- package/lib/core/services/academic-service/academic.service.d.ts +2 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +2 -0
- package/package.json +1 -1
|
@@ -12,6 +12,7 @@ export declare class CodFormComponent implements OnChanges {
|
|
|
12
12
|
private codFormControls;
|
|
13
13
|
private commercialService;
|
|
14
14
|
dataFromPreviusCodData?: any;
|
|
15
|
+
courseSelect?: any;
|
|
15
16
|
isNewCod: boolean;
|
|
16
17
|
okCreatedCOD: EventEmitter<Boolean>;
|
|
17
18
|
subscription?: Subscription;
|
|
@@ -34,5 +35,5 @@ export declare class CodFormComponent implements OnChanges {
|
|
|
34
35
|
getCreateCOD(data: any[]): CreateCODRq;
|
|
35
36
|
changeStep(step: number): void;
|
|
36
37
|
static ɵfac: i0.ɵɵFactoryDeclaration<CodFormComponent, never>;
|
|
37
|
-
static ɵcmp: i0.ɵɵComponentDeclaration<CodFormComponent, "ipt-cod-form", never, { "dataFromPreviusCodData": "dataFromPreviusCodData"; "isNewCod": "isNewCod"; }, { "okCreatedCOD": "okCreatedCOD"; }, never, never, false>;
|
|
38
|
+
static ɵcmp: i0.ɵɵComponentDeclaration<CodFormComponent, "ipt-cod-form", never, { "dataFromPreviusCodData": "dataFromPreviusCodData"; "courseSelect": "courseSelect"; "isNewCod": "isNewCod"; }, { "okCreatedCOD": "okCreatedCOD"; }, never, never, false>;
|
|
38
39
|
}
|
|
@@ -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
|
+
}
|
|
@@ -5,6 +5,7 @@ import { GetCourseByTypeRq, GetStudentByCourse, GetLastStudentCodRq, GetStudentB
|
|
|
5
5
|
import { UserTokenRq } from '../../models/user/user-rq.model';
|
|
6
6
|
import { GetStudentsByCourseRq } from '../../models/student/student.interface';
|
|
7
7
|
import { GetCodByStudentCourseRq } from '../../models/cod/cod-rq.model';
|
|
8
|
+
import { IgetCodBcourseByModalityAndDisponibilityRq } from '../../models/course/course-rq.model';
|
|
8
9
|
import * as i0 from "@angular/core";
|
|
9
10
|
export declare class AcademicService extends IPTGeneralService {
|
|
10
11
|
private http;
|
|
@@ -22,6 +23,7 @@ export declare class AcademicService extends IPTGeneralService {
|
|
|
22
23
|
getAllCodActiveByCourse(params: GetStudentsByCourseRq): Observable<any>;
|
|
23
24
|
createClassroom(params: ClassRoomRQI): Observable<any>;
|
|
24
25
|
getCodByStudentAndCourse(params: GetCodByStudentCourseRq): Observable<any>;
|
|
26
|
+
getCodBcourseByModalityAndDisponibility(params: IgetCodBcourseByModalityAndDisponibilityRq): Observable<any>;
|
|
25
27
|
static ɵfac: i0.ɵɵFactoryDeclaration<AcademicService, never>;
|
|
26
28
|
static ɵprov: i0.ɵɵInjectableDeclaration<AcademicService>;
|
|
27
29
|
}
|
|
@@ -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
|
}
|