mobicloud-core 1.0.259 → 1.0.260

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.
@@ -312,7 +312,8 @@ export declare enum PriorityType {
312
312
  export declare enum TimeQuantityUnit {
313
313
  None = "None",
314
314
  Quantity = "Quantity",
315
- Hours = "Hours"
315
+ Hours = "Hours",
316
+ Percent = "Percent"
316
317
  }
317
318
  export declare enum WeekDays {
318
319
  Monday = "Monday",
@@ -1,8 +1,8 @@
1
- import { Dashboard } from "./dashboard";
2
1
  import { DomainObject } from "./domain-object";
2
+ import { Dashboard } from "./dashboard";
3
3
  export declare class DashboardParameter extends DomainObject {
4
4
  TypeName?: string | undefined;
5
5
  EntityProperty?: string | undefined;
6
- DashboardId: string | undefined;
7
- Dashboard: Dashboard | undefined;
6
+ ReportId: string | undefined;
7
+ Report: Dashboard | undefined;
8
8
  }
@@ -1,18 +1,18 @@
1
- import { DashboardOrientation, DashboardType, DataSourceType } from "./all.enum";
2
- import { DashboardParameter } from "./dashboard-parameter";
1
+ import { DataSourceType, DashboardType, DashboardOrientation } from "./all.enum";
3
2
  import { DomainObject } from "./domain-object";
4
3
  import { FileContent } from "./file-content";
4
+ import { DashboardParameter } from "./dashboard-parameter";
5
5
  export declare class Dashboard extends DomainObject {
6
6
  DashboardId?: string | undefined;
7
7
  EntityType?: string | undefined;
8
8
  Category?: string | undefined;
9
- DashboardType: DashboardType | undefined;
10
- DashboardOrientation: DashboardOrientation | undefined;
11
9
  FileContentId: string | undefined;
12
10
  FileContent: FileContent | undefined;
13
11
  DataSourceFileId: string | undefined;
14
12
  DataSourceFile: FileContent | undefined;
15
13
  DataSourceType: DataSourceType | undefined;
16
14
  DataSourceTypeInfo: string | undefined;
15
+ DashboardType: DashboardType | undefined;
16
+ DashboardOrientation: DashboardOrientation | undefined;
17
17
  Parameters?: DashboardParameter[] | undefined;
18
18
  }
@@ -1301,6 +1301,7 @@
1301
1301
  TimeQuantityUnit["None"] = "None";
1302
1302
  TimeQuantityUnit["Quantity"] = "Quantity";
1303
1303
  TimeQuantityUnit["Hours"] = "Hours";
1304
+ TimeQuantityUnit["Percent"] = "Percent";
1304
1305
  })(exports.TimeQuantityUnit || (exports.TimeQuantityUnit = {}));
1305
1306
  exports.WeekDays = void 0;
1306
1307
  (function (WeekDays) {