iptdevs-design-system 3.1.163 → 3.1.164
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 +15 -0
- package/lib/core/services/commercial-service/comercial.service.d.ts +1 -0
- package/package.json +1 -1
|
@@ -216,3 +216,18 @@ export interface IGoalRs {
|
|
|
216
216
|
daily_goal: number;
|
|
217
217
|
goal_period: Date;
|
|
218
218
|
}
|
|
219
|
+
export interface IOveralGoalAdvisorRs {
|
|
220
|
+
totalMonthlyGoal: number;
|
|
221
|
+
allGoalsAdvisor: IAllGoalsAdvisorRs[];
|
|
222
|
+
}
|
|
223
|
+
export interface IAllGoalsAdvisorRs {
|
|
224
|
+
code: number;
|
|
225
|
+
user: number;
|
|
226
|
+
goal: number;
|
|
227
|
+
status: number;
|
|
228
|
+
name: string;
|
|
229
|
+
monthly_goal: number;
|
|
230
|
+
weekly_goal: number;
|
|
231
|
+
daily_goal: number;
|
|
232
|
+
goal_period: Date;
|
|
233
|
+
}
|
|
@@ -40,6 +40,7 @@ export declare class CommercialService extends IPTGeneralService {
|
|
|
40
40
|
postCreatedSocialNetowrks(params: ISocialNetworksRq): Observable<any>;
|
|
41
41
|
postAssigningAdvisorGoals(params: IAssigningAdvisorGoalsRq): Observable<any>;
|
|
42
42
|
posObtainAdvisorGoals(params: IObtainAllCoursewallet): Observable<any>;
|
|
43
|
+
postObtainOveralGoalAdviso(params: IObtainAllCoursewallet): Observable<any>;
|
|
43
44
|
static ɵfac: i0.ɵɵFactoryDeclaration<CommercialService, never>;
|
|
44
45
|
static ɵprov: i0.ɵɵInjectableDeclaration<CommercialService>;
|
|
45
46
|
}
|