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.
- package/api/types/all.enum.d.ts +2 -1
- package/api/types/dashboard-parameter.d.ts +3 -3
- package/api/types/dashboard.d.ts +4 -4
- package/bundles/mobicloud-core-api.umd.js +1 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/all.enum.js +2 -1
- package/esm2015/api/types/dashboard-parameter.js +1 -1
- package/esm2015/api/types/dashboard.js +1 -1
- package/fesm2015/mobicloud-core-api.js +1 -0
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
|
@@ -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
|
-
|
|
7
|
-
|
|
6
|
+
ReportId: string | undefined;
|
|
7
|
+
Report: Dashboard | undefined;
|
|
8
8
|
}
|
package/api/types/dashboard.d.ts
CHANGED
|
@@ -1,18 +1,18 @@
|
|
|
1
|
-
import {
|
|
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) {
|