iptdevs-design-system 2.6.56 → 2.6.57
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/environments/{environment.d.ts → environment.qa.d.ts} +0 -0
- package/esm2020/environments/environment.qa.mjs +6 -0
- package/esm2020/lib/core/services/activity-service/activity.service.mjs +3 -2
- package/esm2020/lib/core/services/attendance-service/attendance.service.mjs +3 -2
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +3 -2
- package/esm2020/lib/core/services/calendar-service/calendar.service.mjs +3 -2
- package/esm2020/lib/core/services/classroom-service/classroom-service.service.mjs +3 -2
- package/esm2020/lib/core/services/course-service/course-service.model.mjs +3 -2
- package/esm2020/lib/core/services/marketing-service/marketing-service.mjs +3 -2
- package/esm2020/lib/core/services/notes-service/notes.service.mjs +3 -2
- package/esm2020/lib/core/services/parameters-service/parameters.service.mjs +3 -2
- package/esm2020/lib/core/services/storage-service/storage-service.mjs +1 -1
- package/esm2020/lib/core/services/student-service/student.service.mjs +3 -2
- package/esm2020/lib/core/services/test-service/test.service.mjs +3 -2
- package/esm2020/lib/core/services/user-service/user-service.mjs +2 -3
- package/fesm2015/iptdevs-design-system.mjs +12 -13
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +12 -13
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/package.json +1 -1
- package/esm2020/environments/environment.mjs +0 -6
|
@@ -706,14 +706,13 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
706
706
|
|
|
707
707
|
const environment = {
|
|
708
708
|
production: false,
|
|
709
|
-
baseUrl: 'https://
|
|
709
|
+
baseUrl: 'https://iptdev.com.co/lab/',
|
|
710
710
|
assets: 'https://qa.iptdev.com.co/assets/'
|
|
711
711
|
};
|
|
712
712
|
|
|
713
713
|
class UserService {
|
|
714
714
|
constructor(http) {
|
|
715
715
|
this.http = http;
|
|
716
|
-
// private SERVICE_URL = 'https://iptdev.com.co/lab/users/api/';
|
|
717
716
|
this.SERVICE_URL = environment.baseUrl + 'users/api/';
|
|
718
717
|
}
|
|
719
718
|
login(userLogin) {
|
|
@@ -842,7 +841,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
842
841
|
class CalendarService {
|
|
843
842
|
constructor(http) {
|
|
844
843
|
this.http = http;
|
|
845
|
-
this.SERVICE_URL = '
|
|
844
|
+
this.SERVICE_URL = environment.baseUrl + 'calendar/api/';
|
|
846
845
|
}
|
|
847
846
|
postCreateQueryEvent(params) {
|
|
848
847
|
let serviceUrl = this.SERVICE_URL + 'post/event/create/query';
|
|
@@ -1163,7 +1162,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
1163
1162
|
class ParameterService {
|
|
1164
1163
|
constructor(http) {
|
|
1165
1164
|
this.http = http;
|
|
1166
|
-
this.SERVICE_URL = '
|
|
1165
|
+
this.SERVICE_URL = environment.baseUrl + 'parameters/api/';
|
|
1167
1166
|
}
|
|
1168
1167
|
getIndicatives() {
|
|
1169
1168
|
let serviceUrl = this.SERVICE_URL + 'get/indicatives';
|
|
@@ -1741,7 +1740,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
1741
1740
|
class CourseService {
|
|
1742
1741
|
constructor(http) {
|
|
1743
1742
|
this.http = http;
|
|
1744
|
-
this.SERVICE_URL = '
|
|
1743
|
+
this.SERVICE_URL = environment.baseUrl + 'academic/api/';
|
|
1745
1744
|
}
|
|
1746
1745
|
createCourse(course) {
|
|
1747
1746
|
let serviceUrl = this.SERVICE_URL + 'post/course';
|
|
@@ -1841,7 +1840,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
1841
1840
|
class TestService {
|
|
1842
1841
|
constructor(http) {
|
|
1843
1842
|
this.http = http;
|
|
1844
|
-
this.SERVICE_URL = '
|
|
1843
|
+
this.SERVICE_URL = environment.baseUrl + 'test/api/';
|
|
1845
1844
|
}
|
|
1846
1845
|
// ---------------------- EXÁMENES ---------------------- //
|
|
1847
1846
|
createExam(exam) {
|
|
@@ -1973,7 +1972,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
1973
1972
|
class MarketingService {
|
|
1974
1973
|
constructor(http) {
|
|
1975
1974
|
this.http = http;
|
|
1976
|
-
this.SERVICE_URL = '
|
|
1975
|
+
this.SERVICE_URL = environment.baseUrl + 'commercial/api/';
|
|
1977
1976
|
}
|
|
1978
1977
|
getStrategyByUserCommercial(user) {
|
|
1979
1978
|
let serviceUrl = this.SERVICE_URL + 'post/contact/strategy/byaviser';
|
|
@@ -2026,7 +2025,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2026
2025
|
class BudgetService {
|
|
2027
2026
|
constructor(http) {
|
|
2028
2027
|
this.http = http;
|
|
2029
|
-
this.SERVICE_URL = '
|
|
2028
|
+
this.SERVICE_URL = environment.baseUrl + 'budget/api/';
|
|
2030
2029
|
}
|
|
2031
2030
|
getAllDiscount(user) {
|
|
2032
2031
|
let serviceUrl = this.SERVICE_URL + 'post/discounts/coupon/all';
|
|
@@ -2063,7 +2062,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2063
2062
|
class ClassroomService {
|
|
2064
2063
|
constructor(http) {
|
|
2065
2064
|
this.http = http;
|
|
2066
|
-
this.SERVICE_URL = '
|
|
2065
|
+
this.SERVICE_URL = environment.baseUrl + 'academic/api/';
|
|
2067
2066
|
}
|
|
2068
2067
|
getClassroomsByModality(params) {
|
|
2069
2068
|
let serviceUrl = this.SERVICE_URL + 'post/classroom/by/modality';
|
|
@@ -2095,7 +2094,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2095
2094
|
class ActivityService {
|
|
2096
2095
|
constructor(http) {
|
|
2097
2096
|
this.http = http;
|
|
2098
|
-
this.SERVICE_URL = '
|
|
2097
|
+
this.SERVICE_URL = environment.baseUrl + 'academic/api/';
|
|
2099
2098
|
}
|
|
2100
2099
|
getActivityByCourse(params) {
|
|
2101
2100
|
let serviceUrl = this.SERVICE_URL + 'post/activities/by/course/code';
|
|
@@ -2252,7 +2251,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2252
2251
|
class AttendanceService {
|
|
2253
2252
|
constructor(http) {
|
|
2254
2253
|
this.http = http;
|
|
2255
|
-
this.SERVICE_URL = '
|
|
2254
|
+
this.SERVICE_URL = environment.baseUrl + 'academic/api/';
|
|
2256
2255
|
}
|
|
2257
2256
|
addEventByCourseRq(params) {
|
|
2258
2257
|
let serviceUrl = `${this.SERVICE_URL}/post/event/by/course`;
|
|
@@ -2317,7 +2316,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2317
2316
|
class NotesService {
|
|
2318
2317
|
constructor(http) {
|
|
2319
2318
|
this.http = http;
|
|
2320
|
-
this.SERVICE_URL = '
|
|
2319
|
+
this.SERVICE_URL = environment.baseUrl + 'academic/api/';
|
|
2321
2320
|
}
|
|
2322
2321
|
getNotesByGroup(params) {
|
|
2323
2322
|
let serviceUrl = this.SERVICE_URL + 'post/obtain/notes/by/course';
|
|
@@ -2363,7 +2362,7 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "13.1.3", ngImpor
|
|
|
2363
2362
|
class StudentService {
|
|
2364
2363
|
constructor(http) {
|
|
2365
2364
|
this.http = http;
|
|
2366
|
-
this.SERVICE_URL = '
|
|
2365
|
+
this.SERVICE_URL = environment.baseUrl + 'academic/api/';
|
|
2367
2366
|
}
|
|
2368
2367
|
getStudentsByCourse(params) {
|
|
2369
2368
|
let serviceUrl = this.SERVICE_URL + 'post/obtain/students/by/course';
|