mobicloud-core 1.0.301 → 1.0.303
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/company-info.d.ts +3 -0
- package/api/types/customer.d.ts +4 -0
- package/api/types/location.d.ts +4 -0
- package/api/types/planable-task-part.d.ts +8 -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/sales-order.d.ts +1 -0
- package/api/types/shipment-vendor.d.ts +2 -2
- package/api/types/time-journal-line.d.ts +5 -0
- package/api/types/vendor.d.ts +3 -0
- package/bundles/mobicloud-core-api.umd.js.map +1 -1
- package/esm2015/api/types/company-info.js +1 -1
- package/esm2015/api/types/customer.js +1 -1
- package/esm2015/api/types/location.js +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/sales-order.js +1 -1
- package/esm2015/api/types/shipment-vendor.js +1 -1
- package/esm2015/api/types/time-journal-line.js +1 -1
- package/esm2015/api/types/vendor.js +1 -1
- package/fesm2015/mobicloud-core-api.js.map +1 -1
- package/package.json +1 -1
|
@@ -15,6 +15,9 @@ export declare class CompanyInfo extends DomainObject {
|
|
|
15
15
|
State?: string | undefined;
|
|
16
16
|
Country?: string | undefined;
|
|
17
17
|
CVR?: string | undefined;
|
|
18
|
+
EAN?: string | undefined;
|
|
19
|
+
GlnNumber?: string | undefined;
|
|
20
|
+
EORINumber?: string | undefined;
|
|
18
21
|
LogoImageId?: string | undefined;
|
|
19
22
|
LogoImage?: StorageAccountImage | undefined;
|
|
20
23
|
LabelPrinterId?: string | undefined;
|
package/api/types/customer.d.ts
CHANGED
|
@@ -12,6 +12,7 @@ import { DeliveryTerm } from "./delivery-term";
|
|
|
12
12
|
import { CustomerUser } from "./customer-user";
|
|
13
13
|
import { InventLocation } from './invent-location';
|
|
14
14
|
import { Webshop } from './webshop';
|
|
15
|
+
import { ProductCatalog } from './product-catalog';
|
|
15
16
|
export declare class Customer extends DomainObject {
|
|
16
17
|
CustomerId?: string | undefined;
|
|
17
18
|
AccountNumber?: string | undefined;
|
|
@@ -21,6 +22,8 @@ export declare class Customer extends DomainObject {
|
|
|
21
22
|
Phone?: string | undefined;
|
|
22
23
|
VatNumber?: string | undefined;
|
|
23
24
|
EAN?: string | undefined;
|
|
25
|
+
GlnNumber?: string | undefined;
|
|
26
|
+
EORINumber?: string | undefined;
|
|
24
27
|
Email?: string | undefined;
|
|
25
28
|
DigitalId?: string | undefined;
|
|
26
29
|
Street?: string | undefined;
|
|
@@ -68,6 +71,7 @@ export declare class Customer extends DomainObject {
|
|
|
68
71
|
InventLocationId?: string | undefined;
|
|
69
72
|
InventLocation?: InventLocation | undefined;
|
|
70
73
|
Webshops?: Webshop[] | undefined;
|
|
74
|
+
ProductCatalogs?: ProductCatalog[] | undefined;
|
|
71
75
|
get DataFields(): Array<any> | null;
|
|
72
76
|
static DATA_FIELDS: Array<any>;
|
|
73
77
|
}
|
package/api/types/location.d.ts
CHANGED
|
@@ -15,6 +15,10 @@ export declare class Location extends DomainObject {
|
|
|
15
15
|
Country?: string | undefined;
|
|
16
16
|
Building?: string | undefined;
|
|
17
17
|
Block?: string | undefined;
|
|
18
|
+
VatNumber?: string | undefined;
|
|
19
|
+
EAN?: string | undefined;
|
|
20
|
+
GlnNumber?: string | undefined;
|
|
21
|
+
EORINumber?: string | undefined;
|
|
18
22
|
ImageId?: string | undefined;
|
|
19
23
|
Image?: StorageAccountImage;
|
|
20
24
|
Latitude?: number | undefined;
|
|
@@ -2,6 +2,8 @@ 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";
|
|
5
7
|
export declare class PlanableTaskPart extends DomainObject {
|
|
6
8
|
TaskPartId?: string | undefined;
|
|
7
9
|
StartDate?: Date | undefined;
|
|
@@ -15,4 +17,10 @@ export declare class PlanableTaskPart extends DomainObject {
|
|
|
15
17
|
Followup?: boolean | undefined;
|
|
16
18
|
ResourceIds?: string[] | undefined;
|
|
17
19
|
Status?: TaskPartStatus | undefined;
|
|
20
|
+
Conclusion?: string | undefined;
|
|
21
|
+
ConclusionDate?: Date | undefined;
|
|
22
|
+
ConclusionById?: string | undefined;
|
|
23
|
+
ConclusionBy?: Employee | undefined;
|
|
24
|
+
ServiceObjectId?: string | undefined;
|
|
25
|
+
ServiceObject?: ServiceObject | undefined;
|
|
18
26
|
}
|
|
@@ -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;
|
|
@@ -78,6 +78,7 @@ export declare class SalesOrder extends DomainObject {
|
|
|
78
78
|
BillToEmail: string | undefined;
|
|
79
79
|
BillToPhone: string | undefined;
|
|
80
80
|
BillTo_ProviderAccount: string | undefined;
|
|
81
|
+
BillTo_ProviderAccount_Type: string | undefined;
|
|
81
82
|
BillToLatitude?: number | undefined;
|
|
82
83
|
BillToLongitude?: number | undefined;
|
|
83
84
|
Lines?: SalesLine[] | 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;
|
package/api/types/vendor.d.ts
CHANGED
|
@@ -13,6 +13,9 @@ export declare class Vendor extends DomainObject {
|
|
|
13
13
|
State?: string | undefined;
|
|
14
14
|
Country?: string | undefined;
|
|
15
15
|
VatNumber?: string | undefined;
|
|
16
|
+
EAN?: string | undefined;
|
|
17
|
+
GlnNumber?: string | undefined;
|
|
18
|
+
EORINumber?: string | undefined;
|
|
16
19
|
CurrencyId?: string | undefined;
|
|
17
20
|
Currency?: Currency | undefined;
|
|
18
21
|
PriceListId?: string | undefined;
|