mobicloud-core 1.0.252 → 1.0.254

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.
@@ -22,6 +22,7 @@ export declare class Customer extends DomainObject {
22
22
  VatNumber?: string | undefined;
23
23
  EAN?: string | undefined;
24
24
  Email?: string | undefined;
25
+ DigitalId?: string | undefined;
25
26
  Street?: string | undefined;
26
27
  ZipCode?: string | undefined;
27
28
  City?: string | undefined;
@@ -91,6 +91,8 @@ export declare class Asset extends Resource {
91
91
  RegistrationNumber?: string | undefined;
92
92
  ResponsibleId?: string | undefined;
93
93
  Responsible?: Employee | undefined;
94
+ BeaconId?: string | undefined;
95
+ Beacon?: Beacon | undefined;
94
96
  }
95
97
  export declare class Tool extends Asset {
96
98
  }
@@ -45,6 +45,7 @@ export declare class SalesOrder extends DomainObject {
45
45
  DeliveryLongitude?: number | undefined;
46
46
  ShipmentCarrierCode?: string | undefined;
47
47
  ShipmentProductCode?: string | undefined;
48
+ ShipmentMethodCode?: string | undefined;
48
49
  ParcelshopId?: string | undefined;
49
50
  ParcelshopName?: string | undefined;
50
51
  ParcelshopStreet?: string | undefined;
@@ -14,6 +14,7 @@ export declare class ServiceObject extends DomainObject {
14
14
  Serialnumber?: string | undefined;
15
15
  Placement?: string | undefined;
16
16
  OrderReference?: string | undefined;
17
+ DigitalId?: string | undefined;
17
18
  LastServiceDate?: Date | undefined;
18
19
  NextServiceDate?: Date | undefined;
19
20
  ExpireDate?: Date | undefined;