mobicloud-core 1.0.279 → 1.0.280
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/api/types/planable-task-part.d.ts +0 -2
- package/bundles/mobicloud-core-api.umd.js +0 -14
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/planable-task-part.js +1 -11
- package/fesm2015/mobicloud-core-api.js +0 -10
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
|
@@ -13,8 +13,6 @@ export declare class PlanableTaskPart extends DomainObject {
|
|
|
13
13
|
ResourceTasks?: ResourceTask[] | undefined;
|
|
14
14
|
AllDay?: boolean | undefined;
|
|
15
15
|
Followup?: boolean | undefined;
|
|
16
|
-
get DisplayName(): string | undefined;
|
|
17
|
-
set DisplayName(val: string | undefined);
|
|
18
16
|
ResourceIds?: string[] | undefined;
|
|
19
17
|
Status?: TaskPartStatus | undefined;
|
|
20
18
|
}
|
|
@@ -2416,20 +2416,6 @@
|
|
|
2416
2416
|
function PlanableTaskPart() {
|
|
2417
2417
|
return _super !== null && _super.apply(this, arguments) || this;
|
|
2418
2418
|
}
|
|
2419
|
-
Object.defineProperty(PlanableTaskPart.prototype, "DisplayName", {
|
|
2420
|
-
get: function () {
|
|
2421
|
-
if (this.Name)
|
|
2422
|
-
return "" + this.Name;
|
|
2423
|
-
else if (this.TaskPartId)
|
|
2424
|
-
return this.TaskPartId;
|
|
2425
|
-
else
|
|
2426
|
-
return this.Id;
|
|
2427
|
-
},
|
|
2428
|
-
set: function (val) {
|
|
2429
|
-
},
|
|
2430
|
-
enumerable: false,
|
|
2431
|
-
configurable: true
|
|
2432
|
-
});
|
|
2433
2419
|
return PlanableTaskPart;
|
|
2434
2420
|
}(DomainObject));
|
|
2435
2421
|
|