iptdevs-design-system 3.1.752 → 3.1.754
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/announcement/announcement-user-rq.model.mjs +2 -0
- package/esm2020/lib/core/models/announcement/announcement-user-rs.model.mjs +3 -0
- package/esm2020/lib/core/services/announcement/announcement.service.mjs +57 -0
- package/esm2020/lib/core/services/budget-service/budget-service.mjs +4 -4
- package/esm2020/public-api.mjs +6 -1
- package/fesm2015/iptdevs-design-system.mjs +60 -4
- package/fesm2015/iptdevs-design-system.mjs.map +1 -1
- package/fesm2020/iptdevs-design-system.mjs +60 -4
- package/fesm2020/iptdevs-design-system.mjs.map +1 -1
- package/lib/core/models/announcement/announcement-user-rq.model.d.ts +12 -0
- package/lib/core/models/announcement/announcement-user-rs.model.d.ts +7 -0
- package/lib/core/services/announcement/announcement.service.d.ts +18 -0
- package/package.json +1 -1
- package/public-api.d.ts +5 -0
|
@@ -6171,7 +6171,7 @@ class BudgetService extends IPTGeneralService {
|
|
|
6171
6171
|
// return this.http.delete<any>(serviceUrl);
|
|
6172
6172
|
// }
|
|
6173
6173
|
getAllTransfers(params) {
|
|
6174
|
-
const serviceUrl = this.SERVICE_URL + '
|
|
6174
|
+
const serviceUrl = this.SERVICE_URL + 'post/transfers/all';
|
|
6175
6175
|
this.generateRequestParams(params);
|
|
6176
6176
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6177
6177
|
}
|
|
@@ -6186,12 +6186,12 @@ class BudgetService extends IPTGeneralService {
|
|
|
6186
6186
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6187
6187
|
}
|
|
6188
6188
|
updateTransfer(params) {
|
|
6189
|
-
const serviceUrl = this.SERVICE_URL + '
|
|
6189
|
+
const serviceUrl = this.SERVICE_URL + 'post/transfers/update';
|
|
6190
6190
|
this.generateRequestParams(params);
|
|
6191
6191
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6192
6192
|
}
|
|
6193
6193
|
deleteTransfer(params) {
|
|
6194
|
-
const serviceUrl = this.SERVICE_URL + '
|
|
6194
|
+
const serviceUrl = this.SERVICE_URL + 'post/transfers/delete';
|
|
6195
6195
|
this.generateRequestParams(params);
|
|
6196
6196
|
return this.http.post(serviceUrl, this.httpOptions);
|
|
6197
6197
|
}
|
|
@@ -8243,6 +8243,59 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImpor
|
|
|
8243
8243
|
args: [{ providedIn: 'root' }]
|
|
8244
8244
|
}], ctorParameters: function () { return [{ type: i1$2.HttpClient }]; } });
|
|
8245
8245
|
|
|
8246
|
+
class AnnouncementService {
|
|
8247
|
+
constructor(http) {
|
|
8248
|
+
this.http = http;
|
|
8249
|
+
this.SERVICE_URL = 'https://iptdev.com.co/ekt/api/';
|
|
8250
|
+
}
|
|
8251
|
+
announcementUser(user, announcement) {
|
|
8252
|
+
let serviceUrl = this.SERVICE_URL + 'get/announcement/' + 41 + "/user/" + user;
|
|
8253
|
+
return this.http.get(serviceUrl);
|
|
8254
|
+
}
|
|
8255
|
+
getAnnouncementEktByEpaycoRef(user, announcement, payment_ref) {
|
|
8256
|
+
let serviceUrl = this.SERVICE_URL + 'get/announcement/' + announcement + "/user/" + user + "/paymenref/" + payment_ref;
|
|
8257
|
+
return this.http.get(serviceUrl);
|
|
8258
|
+
}
|
|
8259
|
+
announcementUserGroup(announcement, user) {
|
|
8260
|
+
let serviceUrl = this.SERVICE_URL + 'get/announcementGroup/' + 41 + "/user/" + user;
|
|
8261
|
+
return this.http.get(serviceUrl);
|
|
8262
|
+
}
|
|
8263
|
+
getAnnouncementGroupByEpaycoRef(announcement, user, payment_ref) {
|
|
8264
|
+
let serviceUrl = this.SERVICE_URL + 'get/announcementGroup/' + announcement + "/user/" + user + "/paymenref/" + payment_ref;
|
|
8265
|
+
;
|
|
8266
|
+
return this.http.get(serviceUrl);
|
|
8267
|
+
}
|
|
8268
|
+
joinAnnouncementUserGroup(request) {
|
|
8269
|
+
let serviceUrl = this.SERVICE_URL + 'join/announcementGroup';
|
|
8270
|
+
let httpOptions = {
|
|
8271
|
+
header: new HttpHeaders(),
|
|
8272
|
+
params: request
|
|
8273
|
+
};
|
|
8274
|
+
return this.http.post(serviceUrl, httpOptions);
|
|
8275
|
+
}
|
|
8276
|
+
joinAnnouncement(user, announcement, typeAnnouncement) {
|
|
8277
|
+
let serviceUrl = this.SERVICE_URL + 'join/announcement';
|
|
8278
|
+
let httpOptions = {
|
|
8279
|
+
header: new HttpHeaders(),
|
|
8280
|
+
params: {
|
|
8281
|
+
token: 'DS7zBTcVX1UlvWO94AwyexGskPcWi55PG5WP',
|
|
8282
|
+
announcement_code: 41,
|
|
8283
|
+
typeAnnouncement,
|
|
8284
|
+
user_code: user
|
|
8285
|
+
}
|
|
8286
|
+
};
|
|
8287
|
+
return this.http.post(serviceUrl, httpOptions);
|
|
8288
|
+
}
|
|
8289
|
+
}
|
|
8290
|
+
AnnouncementService.ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AnnouncementService, deps: [{ token: i1$2.HttpClient }], target: i0.ɵɵFactoryTarget.Injectable });
|
|
8291
|
+
AnnouncementService.ɵprov = i0.ɵɵngDeclareInjectable({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AnnouncementService, providedIn: 'root' });
|
|
8292
|
+
i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "14.0.7", ngImport: i0, type: AnnouncementService, decorators: [{
|
|
8293
|
+
type: Injectable,
|
|
8294
|
+
args: [{
|
|
8295
|
+
providedIn: 'root'
|
|
8296
|
+
}]
|
|
8297
|
+
}], ctorParameters: function () { return [{ type: i1$2.HttpClient }]; } });
|
|
8298
|
+
|
|
8246
8299
|
var IUnitNameClubRs;
|
|
8247
8300
|
(function (IUnitNameClubRs) {
|
|
8248
8301
|
IUnitNameClubRs["Club"] = "Club";
|
|
@@ -8260,6 +8313,9 @@ class UserLoginRs {
|
|
|
8260
8313
|
class IUserFullDataRs {
|
|
8261
8314
|
}
|
|
8262
8315
|
|
|
8316
|
+
class AnnouncementUserRs {
|
|
8317
|
+
}
|
|
8318
|
+
|
|
8263
8319
|
/*
|
|
8264
8320
|
* Public API Surface of design-system dockerizada
|
|
8265
8321
|
*/
|
|
@@ -8268,5 +8324,5 @@ class IUserFullDataRs {
|
|
|
8268
8324
|
* Generated bundle index. Do not edit.
|
|
8269
8325
|
*/
|
|
8270
8326
|
|
|
8271
|
-
export { AcademicService, ActivityService, AsideButtonComponent, AttendanceService, BaseService, BudgetService, ButtonComponent, CalculateQuotesService, CalendarService, CardCourseComponent, CardSelectCourseComponent, CertificateService, CheckboxComponent, ClassroomService, CodDocumentsSectionComponent, CodFormComponent, CodFormControls, CodFormStepFiveComponent, CodFormStepFourComponent, CodFormStepOneComponent, CodFormStepThreeComponent, CodFormStepTwoComponent, CodFormSteps, CodModule, CodSelfFormStepFourComponent, CodSelfFormStepOneComponent, CodSelfFormStepThreeComponent, CodSelfFormStepTwoComponent, CodSelfManagedComponent, CodSelfManagedControls, CodSelfManagedSteps, CommercialService, CommunicatorService, ComponentsModule, CopiesService, CoreModule, CourseService, CreateUserFormComponent, DatalistComponent, DesignSystemModule, IUnitNameClubRs, IUserEktRs, IUserFullDataRs, InputComponent, LevelButtonComponent, LevelTextComponent, LoaderComponent, LocalStorageCODService, LocalStorageCodSelfMaganedService, LoginFormComponent, MarketingService, NotesService, ParameterService, PlacementService, QuestionTypeComponent, RadioComponent, RedirectGuard, ScheduleFormatPipe, ScheduleTimeFormatPipe, SelectComponent, Session, SidenavComponent, StorageService, StudentService, SwitchService, TestService, TextLinkComponent, TypeLevelPipe, UserEktService, UserLoginRs, UserRs, UserService, codSelfManagedModule, validateCoupunts };
|
|
8327
|
+
export { AcademicService, ActivityService, AnnouncementService, AnnouncementUserRs, AsideButtonComponent, AttendanceService, BaseService, BudgetService, ButtonComponent, CalculateQuotesService, CalendarService, CardCourseComponent, CardSelectCourseComponent, CertificateService, CheckboxComponent, ClassroomService, CodDocumentsSectionComponent, CodFormComponent, CodFormControls, CodFormStepFiveComponent, CodFormStepFourComponent, CodFormStepOneComponent, CodFormStepThreeComponent, CodFormStepTwoComponent, CodFormSteps, CodModule, CodSelfFormStepFourComponent, CodSelfFormStepOneComponent, CodSelfFormStepThreeComponent, CodSelfFormStepTwoComponent, CodSelfManagedComponent, CodSelfManagedControls, CodSelfManagedSteps, CommercialService, CommunicatorService, ComponentsModule, CopiesService, CoreModule, CourseService, CreateUserFormComponent, DatalistComponent, DesignSystemModule, EpaycoService, IUnitNameClubRs, IUserEktRs, IUserFullDataRs, InputComponent, LevelButtonComponent, LevelTextComponent, LoaderComponent, LocalStorageCODService, LocalStorageCodSelfMaganedService, LoginFormComponent, MarketingService, NotesService, ParameterService, PlacementService, QuestionTypeComponent, RadioComponent, RedirectGuard, ScheduleFormatPipe, ScheduleTimeFormatPipe, SelectComponent, Session, SidenavComponent, StorageService, StudentService, SwitchService, TestService, TextLinkComponent, TypeLevelPipe, UserEktService, UserLoginRs, UserRs, UserService, codSelfManagedModule, validateCoupunts };
|
|
8272
8328
|
//# sourceMappingURL=iptdevs-design-system.mjs.map
|