spartaxx.businessmodels 1.0.156 → 1.0.157
Sign up to get free protection for your applications and to get access to all the features.
- package/CCC/CCCModel.ts +3 -1
- package/CCC/GenarateClientPackageParam.js +1 -0
- package/CCC/GenarateClientPackageParam.ts +1 -1
- package/Scheduler/ManageScheduler.js +2 -0
- package/Scheduler/ManageScheduler.ts +16 -0
- package/Scheduler/SchedulerModels.js +2 -0
- package/Scheduler/SchedulerModels.ts +5 -0
- package/package.json +1 -1
package/CCC/CCCModel.ts
CHANGED
@@ -9,6 +9,7 @@ import { CCCTemplateData } from "./CCCTemplateData";
|
|
9
9
|
import { Client } from "./Client";
|
10
10
|
import { BlastCountyPriority } from "./BlastCountyPriority";
|
11
11
|
import { BlastCountyPriorityResults } from "./BlastCountyPriorityResults";
|
12
|
+
import { GenarateClientPackageParam } from "./GenarateClientPackageParam";
|
12
13
|
|
13
14
|
export {
|
14
15
|
ScoreCardDetails,
|
@@ -21,5 +22,6 @@ export {
|
|
21
22
|
CCCTemplateData,
|
22
23
|
Client,
|
23
24
|
BlastCountyPriority,
|
24
|
-
BlastCountyPriorityResults
|
25
|
+
BlastCountyPriorityResults,
|
26
|
+
GenarateClientPackageParam
|
25
27
|
}
|
@@ -0,0 +1,16 @@
|
|
1
|
+
export interface ManageScheduler{
|
2
|
+
Id?: number;
|
3
|
+
ModuleId?: number;
|
4
|
+
Name?: string;
|
5
|
+
Recurrence?: number;
|
6
|
+
OccurrenceOption?: string;
|
7
|
+
StartDate?: string;
|
8
|
+
EndDate?: string;
|
9
|
+
StartTime?: string;
|
10
|
+
Weekday?: string;
|
11
|
+
OnDay?: number;
|
12
|
+
OnTheOccurrence?: string;
|
13
|
+
OnTheWeekday?: string;
|
14
|
+
CronSyntax?: string;
|
15
|
+
UserId?: number;
|
16
|
+
}
|