mobicloud-core 1.0.302 → 1.0.304
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/planable-task-part.d.ts +10 -0
- package/api/types/product-consumption-line.d.ts +3 -0
- package/api/types/production.d.ts +3 -0
- package/api/types/resource-task.d.ts +1 -0
- package/api/types/shipment-vendor.d.ts +2 -2
- package/api/types/time-journal-line.d.ts +5 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/planable-task-part.js +1 -1
- package/esm2015/api/types/product-consumption-line.js +1 -1
- package/esm2015/api/types/production.js +1 -1
- package/esm2015/api/types/resource-task.js +1 -1
- package/esm2015/api/types/shipment-vendor.js +1 -1
- package/esm2015/api/types/time-journal-line.js +1 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
|
@@ -2,6 +2,9 @@ import { DomainObject } from "./domain-object";
|
|
|
2
2
|
import { PlanableTask } from "./planable-task";
|
|
3
3
|
import { ResourceTask } from "./resource-task";
|
|
4
4
|
import { TaskPartStatus } from "./all.enum";
|
|
5
|
+
import { ServiceObject } from "./service-object";
|
|
6
|
+
import { Employee } from "./employee";
|
|
7
|
+
import { Project } from "./project";
|
|
5
8
|
export declare class PlanableTaskPart extends DomainObject {
|
|
6
9
|
TaskPartId?: string | undefined;
|
|
7
10
|
StartDate?: Date | undefined;
|
|
@@ -10,9 +13,16 @@ export declare class PlanableTaskPart extends DomainObject {
|
|
|
10
13
|
TimeDuration?: number | undefined;
|
|
11
14
|
TaskId?: string | undefined;
|
|
12
15
|
Task?: PlanableTask | undefined;
|
|
16
|
+
Project?: Project | undefined;
|
|
13
17
|
ResourceTasks?: ResourceTask[] | undefined;
|
|
14
18
|
AllDay?: boolean | undefined;
|
|
15
19
|
Followup?: boolean | undefined;
|
|
16
20
|
ResourceIds?: string[] | undefined;
|
|
17
21
|
Status?: TaskPartStatus | undefined;
|
|
22
|
+
Conclusion?: string | undefined;
|
|
23
|
+
ConclusionDate?: Date | undefined;
|
|
24
|
+
ConclusionById?: string | undefined;
|
|
25
|
+
ConclusionBy?: Employee | undefined;
|
|
26
|
+
ServiceObjectId?: string | undefined;
|
|
27
|
+
ServiceObject?: ServiceObject | undefined;
|
|
18
28
|
}
|
|
@@ -10,6 +10,7 @@ import { Batch } from "./batch";
|
|
|
10
10
|
import { ProductConsumptionCategory } from "./product-consumption-category";
|
|
11
11
|
import { Project } from "./project";
|
|
12
12
|
import { LineStatus, UserType } from "./all.enum";
|
|
13
|
+
import { PlanableTaskPart } from "./planable-task-part";
|
|
13
14
|
export declare class ProductConsumptionLine extends DomainObject {
|
|
14
15
|
Date?: Date | undefined;
|
|
15
16
|
LineId?: string | undefined;
|
|
@@ -32,6 +33,8 @@ export declare class ProductConsumptionLine extends DomainObject {
|
|
|
32
33
|
Batch?: Batch | undefined;
|
|
33
34
|
ProjectId?: string | undefined;
|
|
34
35
|
Project?: Project | undefined;
|
|
36
|
+
TaskPartId?: string | undefined;
|
|
37
|
+
TaskPart?: PlanableTaskPart | undefined;
|
|
35
38
|
CategoryId?: string | undefined;
|
|
36
39
|
Category?: ProductConsumptionCategory | undefined;
|
|
37
40
|
Qty?: number | undefined;
|
|
@@ -13,6 +13,7 @@ import { ProductionTransaction } from "./production-transaction";
|
|
|
13
13
|
import { Barcode } from "./barcode";
|
|
14
14
|
import { Project } from "./project";
|
|
15
15
|
import { Employee, Asset } from "./employee";
|
|
16
|
+
import { Beacon } from "./beacon";
|
|
16
17
|
export declare class Production extends DomainObject {
|
|
17
18
|
ProductionId?: string | undefined;
|
|
18
19
|
DeliveryDate?: Date | undefined;
|
|
@@ -29,6 +30,8 @@ export declare class Production extends DomainObject {
|
|
|
29
30
|
Status?: ProductionStatus | undefined;
|
|
30
31
|
get StatusString(): string;
|
|
31
32
|
PackingGroup?: string | undefined;
|
|
33
|
+
BeaconId?: string | undefined;
|
|
34
|
+
Beacon?: Beacon | undefined;
|
|
32
35
|
ProductId?: string | undefined;
|
|
33
36
|
Product?: Product | undefined;
|
|
34
37
|
InventLocationId?: string | undefined;
|
|
@@ -24,8 +24,8 @@ export declare class ShipmentVendor extends Vendor {
|
|
|
24
24
|
SenderTelephone?: string | undefined;
|
|
25
25
|
LabelFormat?: string | undefined;
|
|
26
26
|
ProductChannel?: string | undefined;
|
|
27
|
-
CutOffTime?:
|
|
28
|
-
DeliveryDelayTime?:
|
|
27
|
+
CutOffTime?: number | undefined;
|
|
28
|
+
DeliveryDelayTime?: number | undefined;
|
|
29
29
|
ShipmentPrinterId?: string | undefined;
|
|
30
30
|
ShipmentPrinter?: GatewayPrinter | undefined;
|
|
31
31
|
LabelConfigs?: FileConfig[] | undefined;
|
|
@@ -6,6 +6,7 @@ import { Project } from "./project";
|
|
|
6
6
|
import { LineStatus, ProjectLineFinancialType, TimeType, UserType } from "./all.enum";
|
|
7
7
|
import { PayrollCategory } from "./payroll-category";
|
|
8
8
|
import { ProjectPieceWork } from "./project-piece-work";
|
|
9
|
+
import { ResourceTask } from "./resource-task";
|
|
9
10
|
export declare class TimeJournalLine extends DomainObject {
|
|
10
11
|
JournalId?: string | undefined;
|
|
11
12
|
Journal?: TimeJournal | undefined;
|
|
@@ -13,6 +14,10 @@ export declare class TimeJournalLine extends DomainObject {
|
|
|
13
14
|
Date?: Date | undefined;
|
|
14
15
|
Start?: Date | undefined;
|
|
15
16
|
End?: Date | undefined;
|
|
17
|
+
Start_Actual?: Date | undefined;
|
|
18
|
+
End_Actual?: Date | undefined;
|
|
19
|
+
ResourceTaskId?: string | undefined;
|
|
20
|
+
ResourceTask?: ResourceTask | undefined;
|
|
16
21
|
EmployeeId?: string | undefined;
|
|
17
22
|
Employee?: Employee | undefined;
|
|
18
23
|
CategoryId?: string | undefined;
|