mobicloud-core 1.0.276 → 1.0.277

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.
@@ -37,6 +37,7 @@ export * from './location';
37
37
  export * from './open-close-times';
38
38
  export * from './payment-group';
39
39
  export * from './payroll-vendor';
40
+ export * from './planning-setting';
40
41
  export * from './planable-task';
41
42
  export * from './resource-task';
42
43
  export * from './price-list-line';
@@ -0,0 +1,9 @@
1
+ import { DomainObject } from "./domain-object";
2
+ export declare class PlanningSetting extends DomainObject {
3
+ SettingId?: string | undefined;
4
+ WorkTimeStart?: number | undefined;
5
+ WorkTimeEnd?: number | undefined;
6
+ Planboard_CellDuration?: number | undefined;
7
+ Planboard_MaxTasksPerCell?: number | undefined;
8
+ Planboard_ShowProfileImage?: boolean | undefined;
9
+ }
@@ -2027,6 +2027,14 @@
2027
2027
  return PayrollVendor;
2028
2028
  }(Vendor));
2029
2029
 
2030
+ var PlanningSetting = /** @class */ (function (_super) {
2031
+ __extends(PlanningSetting, _super);
2032
+ function PlanningSetting() {
2033
+ return _super !== null && _super.apply(this, arguments) || this;
2034
+ }
2035
+ return PlanningSetting;
2036
+ }(DomainObject));
2037
+
2030
2038
  var PlanableTask = /** @class */ (function (_super) {
2031
2039
  __extends(PlanableTask, _super);
2032
2040
  function PlanableTask() {
@@ -3972,6 +3980,7 @@
3972
3980
  exports.PlanableTaskPartContainer = PlanableTaskPartContainer;
3973
3981
  exports.PlanningMapSlideShow = PlanningMapSlideShow;
3974
3982
  exports.PlanningMapSlideShowEntry = PlanningMapSlideShowEntry;
3983
+ exports.PlanningSetting = PlanningSetting;
3975
3984
  exports.PriceList = PriceList;
3976
3985
  exports.PriceListLine = PriceListLine;
3977
3986
  exports.Product = Product;