mobicloud-core 1.0.255 → 1.0.257
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 +9 -0
- package/api/types/dashboard-parameter.d.ts +8 -0
- package/api/types/dashboard.d.ts +18 -0
- package/api/types/index.d.ts +2 -0
- package/api/types/report.d.ts +2 -0
- package/bundles/mobicloud-core-api.umd.js +29 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/all.enum.js +12 -1
- package/esm2015/api/types/dashboard-parameter.js +4 -0
- package/esm2015/api/types/dashboard.js +4 -0
- package/esm2015/api/types/index.js +3 -1
- package/esm2015/api/types/report.js +1 -1
- package/fesm2015/mobicloud-core-api.js +18 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/icons/assets/svg/back.svg +6 -3
- package/icons/assets/svg/forward.svg +5 -5
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
|
@@ -357,6 +357,15 @@ export declare enum ServiceObjectLineStatus {
|
|
|
357
357
|
Open = "Open",
|
|
358
358
|
Closed = "Closed"
|
|
359
359
|
}
|
|
360
|
+
export declare enum DashboardType {
|
|
361
|
+
None = "None",
|
|
362
|
+
Entity = "Entity",
|
|
363
|
+
Global = "Global"
|
|
364
|
+
}
|
|
365
|
+
export declare enum DashboardOrientation {
|
|
366
|
+
Portrait = "Portrait",
|
|
367
|
+
Landscape = "Landscape"
|
|
368
|
+
}
|
|
360
369
|
export declare enum DataSourceType {
|
|
361
370
|
None = "None",
|
|
362
371
|
Sql = "Sql",
|
|
@@ -0,0 +1,8 @@
|
|
|
1
|
+
import { Dashboard } from "./dashboard";
|
|
2
|
+
import { DomainObject } from "./domain-object";
|
|
3
|
+
export declare class DashboardParameter extends DomainObject {
|
|
4
|
+
TypeName?: string | undefined;
|
|
5
|
+
EntityProperty?: string | undefined;
|
|
6
|
+
DashboardId: string | undefined;
|
|
7
|
+
Dashboard: Dashboard | undefined;
|
|
8
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { DashboardOrientation, DashboardType, DataSourceType } from "./all.enum";
|
|
2
|
+
import { DashboardParameter } from "./dashboard-parameter";
|
|
3
|
+
import { DomainObject } from "./domain-object";
|
|
4
|
+
import { FileContent } from "./file-content";
|
|
5
|
+
export declare class Dashboard extends DomainObject {
|
|
6
|
+
DashboardId?: string | undefined;
|
|
7
|
+
EntityType?: string | undefined;
|
|
8
|
+
Category?: string | undefined;
|
|
9
|
+
DashboardType: DashboardType | undefined;
|
|
10
|
+
DashboardOrientation: DashboardOrientation | undefined;
|
|
11
|
+
FileContentId: string | undefined;
|
|
12
|
+
FileContent: FileContent | undefined;
|
|
13
|
+
DataSourceFileId: string | undefined;
|
|
14
|
+
DataSourceFile: FileContent | undefined;
|
|
15
|
+
DataSourceType: DataSourceType | undefined;
|
|
16
|
+
DataSourceTypeInfo: string | undefined;
|
|
17
|
+
Parameters?: DashboardParameter[] | undefined;
|
|
18
|
+
}
|
package/api/types/index.d.ts
CHANGED
|
@@ -155,6 +155,8 @@ export * from './gateway-file-response';
|
|
|
155
155
|
export * from './report';
|
|
156
156
|
export * from './report-parameter';
|
|
157
157
|
export * from './file-content';
|
|
158
|
+
export * from './dashboard';
|
|
159
|
+
export * from './dashboard-parameter';
|
|
158
160
|
export * from './planningmap-slide-show';
|
|
159
161
|
export * from './planningmap-slide-show-entry';
|
|
160
162
|
export * from './repository/organization';
|
package/api/types/report.d.ts
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DataSourceType, ReportType } from "./all.enum";
|
|
2
2
|
import { DomainObject } from "./domain-object";
|
|
3
3
|
import { FileContent } from "./file-content";
|
|
4
|
+
import { ReportParameter } from "./report-parameter";
|
|
4
5
|
export declare class Report extends DomainObject {
|
|
5
6
|
ReportId?: string | undefined;
|
|
6
7
|
EntityType?: string | undefined;
|
|
@@ -12,4 +13,5 @@ export declare class Report extends DomainObject {
|
|
|
12
13
|
DataSourceType: DataSourceType | undefined;
|
|
13
14
|
DataSourceTypeInfo: string | undefined;
|
|
14
15
|
ReportType: ReportType | undefined;
|
|
16
|
+
Parameters?: ReportParameter[] | undefined;
|
|
15
17
|
}
|
|
@@ -1352,6 +1352,17 @@
|
|
|
1352
1352
|
ServiceObjectLineStatus["Open"] = "Open";
|
|
1353
1353
|
ServiceObjectLineStatus["Closed"] = "Closed";
|
|
1354
1354
|
})(exports.ServiceObjectLineStatus || (exports.ServiceObjectLineStatus = {}));
|
|
1355
|
+
exports.DashboardType = void 0;
|
|
1356
|
+
(function (DashboardType) {
|
|
1357
|
+
DashboardType["None"] = "None";
|
|
1358
|
+
DashboardType["Entity"] = "Entity";
|
|
1359
|
+
DashboardType["Global"] = "Global";
|
|
1360
|
+
})(exports.DashboardType || (exports.DashboardType = {}));
|
|
1361
|
+
exports.DashboardOrientation = void 0;
|
|
1362
|
+
(function (DashboardOrientation) {
|
|
1363
|
+
DashboardOrientation["Portrait"] = "Portrait";
|
|
1364
|
+
DashboardOrientation["Landscape"] = "Landscape";
|
|
1365
|
+
})(exports.DashboardOrientation || (exports.DashboardOrientation = {}));
|
|
1355
1366
|
exports.DataSourceType = void 0;
|
|
1356
1367
|
(function (DataSourceType) {
|
|
1357
1368
|
DataSourceType["None"] = "None";
|
|
@@ -3644,6 +3655,22 @@
|
|
|
3644
3655
|
return FileContent;
|
|
3645
3656
|
}(DomainObject));
|
|
3646
3657
|
|
|
3658
|
+
var Dashboard = /** @class */ (function (_super) {
|
|
3659
|
+
__extends(Dashboard, _super);
|
|
3660
|
+
function Dashboard() {
|
|
3661
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3662
|
+
}
|
|
3663
|
+
return Dashboard;
|
|
3664
|
+
}(DomainObject));
|
|
3665
|
+
|
|
3666
|
+
var DashboardParameter = /** @class */ (function (_super) {
|
|
3667
|
+
__extends(DashboardParameter, _super);
|
|
3668
|
+
function DashboardParameter() {
|
|
3669
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3670
|
+
}
|
|
3671
|
+
return DashboardParameter;
|
|
3672
|
+
}(DomainObject));
|
|
3673
|
+
|
|
3647
3674
|
var PlanningMapSlideShow = /** @class */ (function (_super) {
|
|
3648
3675
|
__extends(PlanningMapSlideShow, _super);
|
|
3649
3676
|
function PlanningMapSlideShow() {
|
|
@@ -3746,6 +3773,8 @@
|
|
|
3746
3773
|
exports.CustomerDiscountGroup = CustomerDiscountGroup;
|
|
3747
3774
|
exports.CustomerGroup = CustomerGroup;
|
|
3748
3775
|
exports.CustomerUser = CustomerUser;
|
|
3776
|
+
exports.Dashboard = Dashboard;
|
|
3777
|
+
exports.DashboardParameter = DashboardParameter;
|
|
3749
3778
|
exports.DeliveryMode = DeliveryMode;
|
|
3750
3779
|
exports.DeliveryTerm = DeliveryTerm;
|
|
3751
3780
|
exports.Department = Department;
|