mobicloud-core 1.0.238 → 1.0.240
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/index.d.ts +1 -0
- package/api/types/number-sequence.d.ts +9 -0
- package/api/types/planable-task.d.ts +5 -1
- package/api/types/production-bom-line.d.ts +6 -0
- package/api/types/production-route.d.ts +4 -0
- package/bundles/mobicloud-core-api.umd.js +9 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/index.js +2 -1
- package/esm2015/api/types/number-sequence.js +4 -0
- package/esm2015/api/types/planable-task.js +1 -1
- package/esm2015/api/types/production-bom-line.js +1 -1
- package/esm2015/api/types/production-route.js +1 -1
- package/fesm2015/mobicloud-core-api.js +4 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
package/api/types/index.d.ts
CHANGED
|
@@ -124,6 +124,7 @@ export * from './invent-container';
|
|
|
124
124
|
export * from './wms-zone';
|
|
125
125
|
export * from './work-center-setting';
|
|
126
126
|
export * from './work-center';
|
|
127
|
+
export * from './number-sequence';
|
|
127
128
|
export * from './picking-list';
|
|
128
129
|
export * from './picking-line';
|
|
129
130
|
export * from './shipment';
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
import { DomainObject } from "./domain-object";
|
|
2
|
+
import { SequenceMode } from "./all.enum";
|
|
3
|
+
export declare class NumberSequence extends DomainObject {
|
|
4
|
+
IsRoot?: boolean | undefined;
|
|
5
|
+
Prefix?: string | undefined;
|
|
6
|
+
NextNumber?: number | undefined;
|
|
7
|
+
Mask?: string | undefined;
|
|
8
|
+
SequenceMode?: SequenceMode | undefined;
|
|
9
|
+
}
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { DomainObject } from "./domain-object";
|
|
2
|
-
import { TaskStatus, ProjectFinancialType, ProjectType } from "./all.enum";
|
|
2
|
+
import { TaskStatus, ProjectFinancialType, ProjectType, UserType } from "./all.enum";
|
|
3
3
|
import { ProjectLocation } from "./project-location";
|
|
4
4
|
import { TaskType } from "./task-type";
|
|
5
5
|
import { Currency } from "./currency";
|
|
@@ -43,4 +43,8 @@ export declare class PlanableTask extends DomainObject {
|
|
|
43
43
|
SchemaTypeId?: string | undefined;
|
|
44
44
|
SchemaType?: SchemaType | undefined;
|
|
45
45
|
SchemaInstances?: SchemaInstance[] | undefined;
|
|
46
|
+
IsTemplate?: boolean | undefined;
|
|
47
|
+
TemplateName?: string | undefined;
|
|
48
|
+
TemplateUserId?: string | undefined;
|
|
49
|
+
TemplateUserType?: UserType | undefined;
|
|
46
50
|
}
|
|
@@ -1,8 +1,10 @@
|
|
|
1
1
|
import { DomainObject } from "./domain-object";
|
|
2
2
|
import { InventLocation } from "./invent-location";
|
|
3
3
|
import { Product } from "./product";
|
|
4
|
+
import { ProductOperation } from "./product-operation";
|
|
4
5
|
import { Production } from "./production";
|
|
5
6
|
import { WMSLocation } from "./wms-location";
|
|
7
|
+
import { WorkCenter } from "./work-center";
|
|
6
8
|
export declare class ProductionBOMLine extends DomainObject {
|
|
7
9
|
LineId?: string | undefined;
|
|
8
10
|
QtyConsumed?: number | undefined;
|
|
@@ -15,4 +17,8 @@ export declare class ProductionBOMLine extends DomainObject {
|
|
|
15
17
|
Product?: Product | undefined;
|
|
16
18
|
InventLocationId?: string | undefined;
|
|
17
19
|
InventLocation?: InventLocation | undefined;
|
|
20
|
+
WorkCenterId?: string | undefined;
|
|
21
|
+
WorkCenter?: WorkCenter | undefined;
|
|
22
|
+
OperationId?: string | undefined;
|
|
23
|
+
Operation?: ProductOperation | undefined;
|
|
18
24
|
}
|
|
@@ -4,6 +4,7 @@ import { ProductOperation } from "./product-operation";
|
|
|
4
4
|
import { Production } from "./production";
|
|
5
5
|
import { ProductionTransaction } from "./production-transaction";
|
|
6
6
|
import { Machine } from "./employee";
|
|
7
|
+
import { ProductionStatus } from "./all.enum";
|
|
7
8
|
export declare class ProductionRoute extends DomainObject {
|
|
8
9
|
RouteId?: string | undefined;
|
|
9
10
|
Qty?: number | undefined;
|
|
@@ -11,6 +12,9 @@ export declare class ProductionRoute extends DomainObject {
|
|
|
11
12
|
HoursConsumed?: number | undefined;
|
|
12
13
|
ScheduledStart?: Date | undefined;
|
|
13
14
|
ScheduledFinish?: Date | undefined;
|
|
15
|
+
ActualStart?: Date | undefined;
|
|
16
|
+
ActualFinish?: Date | undefined;
|
|
17
|
+
Status?: ProductionStatus | undefined;
|
|
14
18
|
ProductionId?: string | undefined;
|
|
15
19
|
Production?: Production | undefined;
|
|
16
20
|
OperationId?: string | undefined;
|
|
@@ -3354,6 +3354,14 @@
|
|
|
3354
3354
|
return WorkCenter;
|
|
3355
3355
|
}(DomainObject));
|
|
3356
3356
|
|
|
3357
|
+
var NumberSequence = /** @class */ (function (_super) {
|
|
3358
|
+
__extends(NumberSequence, _super);
|
|
3359
|
+
function NumberSequence() {
|
|
3360
|
+
return _super !== null && _super.apply(this, arguments) || this;
|
|
3361
|
+
}
|
|
3362
|
+
return NumberSequence;
|
|
3363
|
+
}(DomainObject));
|
|
3364
|
+
|
|
3357
3365
|
var PickingList = /** @class */ (function (_super) {
|
|
3358
3366
|
__extends(PickingList, _super);
|
|
3359
3367
|
function PickingList() {
|
|
@@ -3799,6 +3807,7 @@
|
|
|
3799
3807
|
exports.MobiCloudApiModule = MobiCloudApiModule;
|
|
3800
3808
|
exports.MobiCloudDataService = MobiCloudDataService;
|
|
3801
3809
|
exports.MobiServerLicense = MobiServerLicense;
|
|
3810
|
+
exports.NumberSequence = NumberSequence;
|
|
3802
3811
|
exports.OpenCloseTimes = OpenCloseTimes;
|
|
3803
3812
|
exports.Organization = Organization;
|
|
3804
3813
|
exports.PackagingBox = PackagingBox;
|