mobicloud-core 1.0.272 → 1.0.274

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.
Files changed (32) hide show
  1. package/api/types/all.enum.d.ts +13 -0
  2. package/api/types/beacon.d.ts +2 -1
  3. package/api/types/employee.d.ts +9 -1
  4. package/api/types/invent-trans.d.ts +6 -1
  5. package/api/types/purchase-line.d.ts +3 -0
  6. package/api/types/purchase-order.d.ts +3 -0
  7. package/api/types/sales-line.d.ts +3 -0
  8. package/api/types/sales-order.d.ts +3 -0
  9. package/api/types/service-object.d.ts +3 -0
  10. package/bundles/mobicloud-core-api.umd.js +15 -0
  11. package/bundles/mobicloud-core-api.umd.js.map +1 -1
  12. package/bundles/mobicloud-core-components.umd.js +30 -13
  13. package/bundles/mobicloud-core-components.umd.js.map +1 -1
  14. package/components/service-object/service-object-inventory/service-object-inventory.component.d.ts +2 -0
  15. package/esm2015/api/types/all.enum.js +16 -1
  16. package/esm2015/api/types/beacon.js +1 -1
  17. package/esm2015/api/types/employee.js +1 -1
  18. package/esm2015/api/types/invent-trans.js +1 -1
  19. package/esm2015/api/types/purchase-line.js +1 -1
  20. package/esm2015/api/types/purchase-order.js +1 -1
  21. package/esm2015/api/types/sales-line.js +1 -1
  22. package/esm2015/api/types/sales-order.js +1 -1
  23. package/esm2015/api/types/service-object.js +1 -1
  24. package/esm2015/components/dimension/dimension-groups/dimension-groups.component.js +2 -2
  25. package/esm2015/components/document/document-catalog/document-catalog.component.js +4 -4
  26. package/esm2015/components/pickinglist/pickinglist-add-new-shipment/pickinglist-add-new-shipment.component.js +7 -7
  27. package/esm2015/components/service-object/service-object-inventory/service-object-inventory.component.js +21 -4
  28. package/fesm2015/mobicloud-core-api.js +16 -1
  29. package/fesm2015/mobicloud-core-api.js.map +1 -1
  30. package/fesm2015/mobicloud-core-components.js +30 -13
  31. package/fesm2015/mobicloud-core-components.js.map +1 -1
  32. package/package.json +1 -1
@@ -183,6 +183,19 @@ export declare enum DeliveryModeType {
183
183
  Delivery = "Delivery",
184
184
  Place = "Place"
185
185
  }
186
+ export declare enum AssetStatus {
187
+ Created = "Created",
188
+ Depreciated = "Depreciated",
189
+ Active = "Active",
190
+ OnLoan = "OnLoan",
191
+ LocationInternal = "LocationInternal",
192
+ Missing = "Missing",
193
+ LocationExternal = "LocationExternal"
194
+ }
195
+ export declare enum BeaconType {
196
+ Beacon = "Beacon",
197
+ RFID = "RFID"
198
+ }
186
199
  export declare enum SalesPaymentType {
187
200
  None = "None",
188
201
  Cash = "Cash",
@@ -4,6 +4,7 @@ import { StorageAccountImage } from "./storage-account-image";
4
4
  import { BeaconGroup } from "./beacon-group";
5
5
  import { BeaconMetaData } from "./beacon-meta-data";
6
6
  import { SchemaType } from "./schema-type";
7
+ import { BeaconType } from "./all.enum";
7
8
  export declare class Beacon extends DomainObject {
8
9
  BeaconId?: string | undefined;
9
10
  Major?: string | undefined;
@@ -11,7 +12,7 @@ export declare class Beacon extends DomainObject {
11
12
  HtmlText?: string | undefined;
12
13
  Power?: number | undefined;
13
14
  Battery?: number | undefined;
14
- Type?: number | undefined;
15
+ Type?: BeaconType | undefined;
15
16
  ScanTime?: number | undefined;
16
17
  UUID?: string | undefined;
17
18
  DMAC?: string | undefined;
@@ -1,6 +1,6 @@
1
1
  import '@angular/localize/init';
2
2
  import { DomainObject } from "./domain-object";
3
- import { GenderType } from "./all.enum";
3
+ import { AssetStatus, GenderType } from "./all.enum";
4
4
  import { StorageAccountImage } from "./storage-account-image";
5
5
  import { EmployeeGroup } from "./employee-group";
6
6
  import { Department } from "./department";
@@ -93,6 +93,14 @@ export declare class Asset extends Resource {
93
93
  Responsible?: Employee | undefined;
94
94
  BeaconId?: string | undefined;
95
95
  Beacon?: Beacon | undefined;
96
+ OwnerId?: string | undefined;
97
+ Owner?: Employee | undefined;
98
+ OwnerFacilityId?: string | undefined;
99
+ OwnerFacility?: Facility | undefined;
100
+ ActualFacilityId?: string | undefined;
101
+ ActualFacility?: Facility | undefined;
102
+ LastViewed?: Date | undefined;
103
+ Status?: AssetStatus | undefined;
96
104
  }
97
105
  export declare class Tool extends Asset {
98
106
  }
@@ -1,5 +1,5 @@
1
1
  import { DomainObject } from "./domain-object";
2
- import { InventTransType } from "./all.enum";
2
+ import { BeaconType, InventTransType } from "./all.enum";
3
3
  import { Product } from "./product";
4
4
  import { InventLocation } from "./invent-location";
5
5
  import { WMSLocation } from "./wms-location";
@@ -13,6 +13,7 @@ import { InventObject } from "./invent-object";
13
13
  import { ConfigDimension } from "./config-dimension";
14
14
  import { SizeDimension } from "./size-dimension";
15
15
  import { ColorDimension } from "./color-dimension";
16
+ import { Beacon } from "./beacon";
16
17
  export declare class InventTrans extends DomainObject {
17
18
  TransactionId?: string | undefined;
18
19
  TransactionNo?: number | undefined;
@@ -77,4 +78,8 @@ export declare class InventTrans extends DomainObject {
77
78
  InventObject?: InventObject | undefined;
78
79
  INVENTOBJECT_OBJECTID?: string | undefined;
79
80
  INVENTOBJECT_NAME?: string | undefined;
81
+ BeaconId?: string | undefined;
82
+ Beacon?: Beacon | undefined;
83
+ BEACON_UUID?: string | undefined;
84
+ BEACON_TYPE?: BeaconType | undefined;
80
85
  }
@@ -9,6 +9,7 @@ import { WMSLocation } from "./wms-location";
9
9
  import { Batch } from "./batch";
10
10
  import { PurchaseLineStatus, UserType } from "./all.enum";
11
11
  import { Barcode } from "./barcode";
12
+ import { Beacon } from "./beacon";
12
13
  export declare class PurchaseLine extends DomainObject {
13
14
  PurchaseOrderId?: string | undefined;
14
15
  PurchaseOrder?: PurchaseOrder | undefined;
@@ -30,6 +31,8 @@ export declare class PurchaseLine extends DomainObject {
30
31
  WMSLocation?: WMSLocation | undefined;
31
32
  BatchId?: string | undefined;
32
33
  Batch?: Batch | undefined;
34
+ BeaconId?: string | undefined;
35
+ Beacon?: Beacon | undefined;
33
36
  Note?: string | undefined;
34
37
  UnitPrice?: number | undefined;
35
38
  DiscountAmount?: number | undefined;
@@ -4,6 +4,7 @@ import { Location } from "./location";
4
4
  import { ContactPerson } from "./contact-person";
5
5
  import { Vendor } from "./vendor";
6
6
  import { PurchaseLine } from "./purchase-line";
7
+ import { Beacon } from "./beacon";
7
8
  export declare class PurchaseOrder extends DomainObject {
8
9
  PurchaseId?: string | undefined;
9
10
  Status?: PurchaseOrderStatus | undefined;
@@ -17,6 +18,8 @@ export declare class PurchaseOrder extends DomainObject {
17
18
  ContactPerson?: ContactPerson | undefined;
18
19
  VendorId?: string | undefined;
19
20
  Vendor?: Vendor | undefined;
21
+ BeaconId?: string | undefined;
22
+ Beacon?: Beacon | undefined;
20
23
  Note?: string | undefined;
21
24
  Lines?: PurchaseLine[] | undefined;
22
25
  ApprovedDate?: Date | undefined;
@@ -6,6 +6,7 @@ import { SizeDimension } from "./size-dimension";
6
6
  import { Currency } from "./currency";
7
7
  import { SalesLineStatus, UserType } from "./all.enum";
8
8
  import { Unit } from "./unit";
9
+ import { Beacon } from "./beacon";
9
10
  export declare class SalesLine extends DomainObject {
10
11
  SalesOrderId?: string | undefined;
11
12
  LineId?: string | undefined;
@@ -19,6 +20,8 @@ export declare class SalesLine extends DomainObject {
19
20
  Size?: SizeDimension | undefined;
20
21
  ConfigId?: string | undefined;
21
22
  Config?: ConfigDimension | undefined;
23
+ BeaconId?: string | undefined;
24
+ Beacon?: Beacon | undefined;
22
25
  Note?: string | undefined;
23
26
  UnitPrice?: number | undefined;
24
27
  DiscountAmount?: number | undefined;
@@ -9,6 +9,7 @@ import { SalesLine } from "./sales-line";
9
9
  import { SalesPaymentLine } from "./sales-payment-line";
10
10
  import { Currency } from "./currency";
11
11
  import { Webshop } from "./webshop";
12
+ import { Beacon } from "./beacon";
12
13
  export declare class SalesOrder extends DomainObject {
13
14
  SalesId?: string | undefined;
14
15
  OrderDate?: Date | undefined;
@@ -29,6 +30,8 @@ export declare class SalesOrder extends DomainObject {
29
30
  DeliveryTerm?: DeliveryTerm | undefined;
30
31
  WebshopId?: string | undefined;
31
32
  Webshop?: Webshop | undefined;
33
+ BeaconId?: string | undefined;
34
+ Beacon?: Beacon | undefined;
32
35
  Note?: string | undefined;
33
36
  DeliveryName?: string | undefined;
34
37
  DeliveryContact?: string | undefined;
@@ -9,6 +9,7 @@ import { ServiceObjectLine } from "./service-object-line";
9
9
  import { PlanableTask } from "./planable-task";
10
10
  import { SchemaType } from "./schema-type";
11
11
  import { SchemaInstance } from "./schema-instance";
12
+ import { Asset } from "./employee";
12
13
  export declare class ServiceObject extends DomainObject {
13
14
  ServiceObjectId?: string | undefined;
14
15
  Serialnumber?: string | undefined;
@@ -28,6 +29,8 @@ export declare class ServiceObject extends DomainObject {
28
29
  InventLocation?: InventLocation | undefined;
29
30
  WMSLocationId?: string | undefined;
30
31
  WMSLocation?: WMSLocation | undefined;
32
+ AssetId?: string | undefined;
33
+ Asset?: Asset | undefined;
31
34
  ImageId?: string | undefined;
32
35
  Image?: StorageAccountImage | undefined;
33
36
  Lines?: ServiceObjectLine[] | undefined;
@@ -1148,6 +1148,21 @@
1148
1148
  DeliveryModeType["Delivery"] = "Delivery";
1149
1149
  DeliveryModeType["Place"] = "Place";
1150
1150
  })(exports.DeliveryModeType || (exports.DeliveryModeType = {}));
1151
+ exports.AssetStatus = void 0;
1152
+ (function (AssetStatus) {
1153
+ AssetStatus["Created"] = "Created";
1154
+ AssetStatus["Depreciated"] = "Depreciated";
1155
+ AssetStatus["Active"] = "Active";
1156
+ AssetStatus["OnLoan"] = "OnLoan";
1157
+ AssetStatus["LocationInternal"] = "LocationInternal";
1158
+ AssetStatus["Missing"] = "Missing";
1159
+ AssetStatus["LocationExternal"] = "LocationExternal";
1160
+ })(exports.AssetStatus || (exports.AssetStatus = {}));
1161
+ exports.BeaconType = void 0;
1162
+ (function (BeaconType) {
1163
+ BeaconType["Beacon"] = "Beacon";
1164
+ BeaconType["RFID"] = "RFID";
1165
+ })(exports.BeaconType || (exports.BeaconType = {}));
1151
1166
  exports.SalesPaymentType = void 0;
1152
1167
  (function (SalesPaymentType) {
1153
1168
  SalesPaymentType["None"] = "None";