mobicloud-core 1.0.204 → 1.0.207
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 +8 -0
- package/api/types/gateway-printer.d.ts +3 -0
- package/api/types/planable-task-part.d.ts +1 -2
- package/api/types/resource-task.d.ts +3 -0
- package/api/types/time-forecast.d.ts +2 -1
- package/bundles/mobicloud-core-api.umd.js +10 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/all.enum.js +11 -1
- package/esm2015/api/types/gateway-printer.js +1 -1
- package/esm2015/api/types/planable-task-part.js +1 -1
- package/esm2015/api/types/resource-task.js +1 -1
- package/esm2015/api/types/time-forecast.js +1 -1
- package/fesm2015/mobicloud-core-api.js +11 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
package/api/types/all.enum.d.ts
CHANGED
|
@@ -161,6 +161,9 @@ export declare enum TaskStatus {
|
|
|
161
161
|
Cancelled = "Cancelled",
|
|
162
162
|
Closed = "Closed"
|
|
163
163
|
}
|
|
164
|
+
export declare enum ResourceTaskType {
|
|
165
|
+
None = "None"
|
|
166
|
+
}
|
|
164
167
|
export declare enum ProjectFinancialType {
|
|
165
168
|
None = "None",
|
|
166
169
|
Internal = "Internal",
|
|
@@ -331,6 +334,11 @@ export declare enum ProductConsumptionJournalStatus {
|
|
|
331
334
|
Open = "Open",
|
|
332
335
|
Closed = "Closed"
|
|
333
336
|
}
|
|
337
|
+
export declare enum TimeForecastStatus {
|
|
338
|
+
Created = "Created",
|
|
339
|
+
Approved = "Approved",
|
|
340
|
+
Closed = "Closed"
|
|
341
|
+
}
|
|
334
342
|
export declare enum ProductConsumptionItemType {
|
|
335
343
|
None = "None",
|
|
336
344
|
Product = "Product"
|
|
@@ -1,6 +1,9 @@
|
|
|
1
|
+
import { Beacon } from "./beacon";
|
|
1
2
|
import { DomainObject } from "./domain-object";
|
|
2
3
|
export declare class GatewayPrinter extends DomainObject {
|
|
3
4
|
PrinterId?: string | undefined;
|
|
5
|
+
BeaconId?: string | undefined;
|
|
6
|
+
Beacon?: Beacon | undefined;
|
|
4
7
|
GatewayInstallationName?: string | undefined;
|
|
5
8
|
PrinterName?: string | undefined;
|
|
6
9
|
}
|
|
@@ -9,8 +9,7 @@ export declare class PlanableTaskPart extends DomainObject {
|
|
|
9
9
|
TimeDuration?: number | undefined;
|
|
10
10
|
TaskId?: string | undefined;
|
|
11
11
|
Task?: PlanableTask | undefined;
|
|
12
|
-
|
|
13
|
-
ResourceTask?: ResourceTask | undefined;
|
|
12
|
+
ResourceTasks?: ResourceTask[] | undefined;
|
|
14
13
|
AllDay?: boolean | undefined;
|
|
15
14
|
Followup?: boolean | undefined;
|
|
16
15
|
get DisplayName(): string | undefined;
|
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
import { DomainObject } from "./domain-object";
|
|
2
2
|
import { Resource } from "./employee";
|
|
3
3
|
import { PlanableTask } from "./planable-task";
|
|
4
|
+
import { PlanableTaskPart } from "./planable-task-part";
|
|
4
5
|
export declare class ResourceTask extends DomainObject {
|
|
5
6
|
StartDate?: Date | undefined;
|
|
6
7
|
EndDate?: Date | undefined;
|
|
@@ -10,4 +11,6 @@ export declare class ResourceTask extends DomainObject {
|
|
|
10
11
|
Task?: PlanableTask | undefined;
|
|
11
12
|
ResourceId?: string | undefined;
|
|
12
13
|
Resource?: Resource | undefined;
|
|
14
|
+
TaskPartId?: string | undefined;
|
|
15
|
+
TaskPart?: PlanableTaskPart | undefined;
|
|
13
16
|
}
|
|
@@ -2,10 +2,11 @@ import { DomainObject } from "./domain-object";
|
|
|
2
2
|
import { Employee } from "./employee";
|
|
3
3
|
import { TimeCategory } from "./time-category";
|
|
4
4
|
import { Project } from "./project";
|
|
5
|
-
import { UserType } from "./all.enum";
|
|
5
|
+
import { TimeForecastStatus, UserType } from "./all.enum";
|
|
6
6
|
export declare class TimeForecast extends DomainObject {
|
|
7
7
|
ForecastId?: string | undefined;
|
|
8
8
|
Date?: Date | undefined;
|
|
9
|
+
Status?: TimeForecastStatus | undefined;
|
|
9
10
|
Start?: Date | undefined;
|
|
10
11
|
End?: Date | undefined;
|
|
11
12
|
EmployeeId?: string | undefined;
|
|
@@ -1117,6 +1117,10 @@
|
|
|
1117
1117
|
TaskStatus["Cancelled"] = "Cancelled";
|
|
1118
1118
|
TaskStatus["Closed"] = "Closed";
|
|
1119
1119
|
})(exports.TaskStatus || (exports.TaskStatus = {}));
|
|
1120
|
+
exports.ResourceTaskType = void 0;
|
|
1121
|
+
(function (ResourceTaskType) {
|
|
1122
|
+
ResourceTaskType["None"] = "None";
|
|
1123
|
+
})(exports.ResourceTaskType || (exports.ResourceTaskType = {}));
|
|
1120
1124
|
exports.ProjectFinancialType = void 0;
|
|
1121
1125
|
(function (ProjectFinancialType) {
|
|
1122
1126
|
ProjectFinancialType["None"] = "None";
|
|
@@ -1318,6 +1322,12 @@
|
|
|
1318
1322
|
ProductConsumptionJournalStatus["Open"] = "Open";
|
|
1319
1323
|
ProductConsumptionJournalStatus["Closed"] = "Closed";
|
|
1320
1324
|
})(exports.ProductConsumptionJournalStatus || (exports.ProductConsumptionJournalStatus = {}));
|
|
1325
|
+
exports.TimeForecastStatus = void 0;
|
|
1326
|
+
(function (TimeForecastStatus) {
|
|
1327
|
+
TimeForecastStatus["Created"] = "Created";
|
|
1328
|
+
TimeForecastStatus["Approved"] = "Approved";
|
|
1329
|
+
TimeForecastStatus["Closed"] = "Closed";
|
|
1330
|
+
})(exports.TimeForecastStatus || (exports.TimeForecastStatus = {}));
|
|
1321
1331
|
exports.ProductConsumptionItemType = void 0;
|
|
1322
1332
|
(function (ProductConsumptionItemType) {
|
|
1323
1333
|
ProductConsumptionItemType["None"] = "None";
|