mobicloud-core 1.0.301 → 1.0.302

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.
@@ -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;
@@ -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
  }
@@ -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;
@@ -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;
@@ -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;