mobicloud-core 1.0.196 → 1.0.198
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 +1 -0
- package/api/types/employee.d.ts +3 -0
- package/api/types/invent-trans.d.ts +15 -0
- package/api/types/time-category.d.ts +3 -0
- 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/employee.js +1 -1
- package/esm2015/api/types/invent-trans.js +1 -1
- package/esm2015/api/types/time-category.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
package/api/types/employee.d.ts
CHANGED
|
@@ -10,6 +10,7 @@ import { InventLocation } from "./invent-location";
|
|
|
10
10
|
import { Location } from "./location";
|
|
11
11
|
import { PayrollInterval } from './payroll-interval';
|
|
12
12
|
import { WorkCenter } from './work-center';
|
|
13
|
+
import { Beacon } from './beacon';
|
|
13
14
|
export declare class Resource extends DomainObject {
|
|
14
15
|
IsPerson?: boolean | undefined;
|
|
15
16
|
IsEmployee?: boolean | undefined;
|
|
@@ -57,6 +58,8 @@ export declare class Employee extends Person {
|
|
|
57
58
|
Supervisor?: Employee | undefined;
|
|
58
59
|
DepartmentId?: string | undefined;
|
|
59
60
|
Department?: Department | undefined;
|
|
61
|
+
BeaconId?: string | undefined;
|
|
62
|
+
Beacon?: Beacon | undefined;
|
|
60
63
|
CheckinInfo?: EmployeeCheckinInfo | undefined;
|
|
61
64
|
LoginInfo?: EmployeeLoginInfo | undefined;
|
|
62
65
|
Substitute?: boolean | undefined;
|
|
@@ -19,16 +19,31 @@ export declare class InventTrans extends DomainObject {
|
|
|
19
19
|
TransactionType?: InventTransType | undefined;
|
|
20
20
|
ProductId?: string | undefined;
|
|
21
21
|
Product?: Product | undefined;
|
|
22
|
+
PRODUCT_PRODUCTID?: string | undefined;
|
|
23
|
+
PRODUCT_SKU?: string | undefined;
|
|
24
|
+
PRODUCT_NAME?: string | undefined;
|
|
22
25
|
InventLocationId?: string | undefined;
|
|
23
26
|
InventLocation?: InventLocation | undefined;
|
|
27
|
+
INVENTLOCATION_INVENTLOCATIONID?: string | undefined;
|
|
28
|
+
INVENTLOCATION_NAME?: string | undefined;
|
|
24
29
|
WMSLocationId?: string | undefined;
|
|
25
30
|
WMSLocation?: WMSLocation | undefined;
|
|
31
|
+
WMSLOCATION_WMSLOCATIONID?: string | undefined;
|
|
32
|
+
WMSLOCATION_NAME?: string | undefined;
|
|
26
33
|
WMSPalletId?: string | undefined;
|
|
27
34
|
WMSPallet?: WMSPallet | undefined;
|
|
35
|
+
WMSPALLET_WMSPALLETID?: string | undefined;
|
|
36
|
+
WMSPALLET_NAME?: string | undefined;
|
|
28
37
|
BatchId?: string | undefined;
|
|
29
38
|
Batch?: Batch | undefined;
|
|
39
|
+
BATCH_BATCHID?: string | undefined;
|
|
40
|
+
BATCH_NAME?: string | undefined;
|
|
30
41
|
ServiceObjectId?: string | undefined;
|
|
31
42
|
ServiceObject?: ServiceObject | undefined;
|
|
43
|
+
SERVICEOBJECT_SERVICEOBJECTID?: string | undefined;
|
|
44
|
+
SERVICEOBJECT_NAME?: string | undefined;
|
|
32
45
|
ProjectId?: string | undefined;
|
|
33
46
|
Project?: Project | undefined;
|
|
47
|
+
PROJECT_PROJECTID?: string | undefined;
|
|
48
|
+
PROJECT_NAME?: string | undefined;
|
|
34
49
|
}
|
|
@@ -4,6 +4,7 @@ import '@angular/localize/init';
|
|
|
4
4
|
import { PayrollCategory } from "./payroll-category";
|
|
5
5
|
import { TimeSplitRule } from "./time-split-rule";
|
|
6
6
|
import { Employee } from "./employee";
|
|
7
|
+
import { Product } from "./product";
|
|
7
8
|
export declare class TimeCategory extends DomainObject {
|
|
8
9
|
CategoryId?: string | undefined;
|
|
9
10
|
Active?: boolean | undefined;
|
|
@@ -21,6 +22,8 @@ export declare class TimeCategory extends DomainObject {
|
|
|
21
22
|
Employees?: Employee[] | undefined;
|
|
22
23
|
GroupText?: string | undefined;
|
|
23
24
|
ResourceColor?: string | undefined;
|
|
25
|
+
ProductId?: string | undefined;
|
|
26
|
+
Product?: Product | undefined;
|
|
24
27
|
get RoundingString(): string;
|
|
25
28
|
get RegistrationTypeString(): string;
|
|
26
29
|
get WorkTypeString(): string;
|
|
@@ -1283,6 +1283,7 @@
|
|
|
1283
1283
|
})(exports.JournalLineStatus || (exports.JournalLineStatus = {}));
|
|
1284
1284
|
exports.DataSourceType = void 0;
|
|
1285
1285
|
(function (DataSourceType) {
|
|
1286
|
+
DataSourceType["None"] = "None";
|
|
1286
1287
|
DataSourceType["Sql"] = "Sql";
|
|
1287
1288
|
DataSourceType["Sqlite"] = "Sqlite";
|
|
1288
1289
|
DataSourceType["Object"] = "Object";
|