mobicloud-core 1.0.205 → 1.0.208

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.
@@ -161,6 +161,9 @@ export declare enum TaskStatus {
161
161
  Cancelled = "Cancelled",
162
162
  Closed = "Closed"
163
163
  }
164
+ export declare enum ResourceTaskType {
165
+ None = "None"
166
+ }
164
167
  export declare enum ProjectFinancialType {
165
168
  None = "None",
166
169
  Internal = "Internal",
@@ -9,8 +9,7 @@ export declare class PlanableTaskPart extends DomainObject {
9
9
  TimeDuration?: number | undefined;
10
10
  TaskId?: string | undefined;
11
11
  Task?: PlanableTask | undefined;
12
- ResourceTaskId?: string | undefined;
13
- ResourceTask?: ResourceTask | undefined;
12
+ ResourceTasks?: ResourceTask[] | undefined;
14
13
  AllDay?: boolean | undefined;
15
14
  Followup?: boolean | undefined;
16
15
  get DisplayName(): string | undefined;
@@ -1,13 +1,18 @@
1
1
  import { DomainObject } from "./domain-object";
2
2
  import { Resource } from "./employee";
3
3
  import { PlanableTask } from "./planable-task";
4
+ import { PlanableTaskPart } from "./planable-task-part";
5
+ import { ResourceTaskType } from "./all.enum";
4
6
  export declare class ResourceTask extends DomainObject {
5
7
  StartDate?: Date | undefined;
6
8
  EndDate?: Date | undefined;
9
+ Type?: ResourceTaskType | undefined;
7
10
  TimeZoneId?: string | undefined;
8
11
  TimeDuration?: number | undefined;
9
12
  TaskId?: string | undefined;
10
13
  Task?: PlanableTask | undefined;
11
14
  ResourceId?: string | undefined;
12
15
  Resource?: Resource | undefined;
16
+ TaskPartId?: string | undefined;
17
+ TaskPart?: PlanableTaskPart | undefined;
13
18
  }
@@ -1117,6 +1117,10 @@
1117
1117
  TaskStatus["Cancelled"] = "Cancelled";
1118
1118
  TaskStatus["Closed"] = "Closed";
1119
1119
  })(exports.TaskStatus || (exports.TaskStatus = {}));
1120
+ exports.ResourceTaskType = void 0;
1121
+ (function (ResourceTaskType) {
1122
+ ResourceTaskType["None"] = "None";
1123
+ })(exports.ResourceTaskType || (exports.ResourceTaskType = {}));
1120
1124
  exports.ProjectFinancialType = void 0;
1121
1125
  (function (ProjectFinancialType) {
1122
1126
  ProjectFinancialType["None"] = "None";