mobicloud-core 1.0.263 → 1.0.266

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.
@@ -233,7 +233,9 @@ export declare enum FinancialStatus {
233
233
  }
234
234
  export declare enum ProjectType {
235
235
  None = "None",
236
- ServiceOrder = "ServiceOrder"
236
+ ServiceOrder = "ServiceOrder",
237
+ InventLoading = "InventLoading",
238
+ InventUnLoading = "InventUnLoading"
237
239
  }
238
240
  export declare enum ProductionStatus {
239
241
  Unknown = "Unknown",
@@ -117,6 +117,7 @@ export * from './wms-location';
117
117
  export * from './wms-location-type';
118
118
  export * from './wms-pallet';
119
119
  export * from './wms-pallet-type';
120
+ export * from './wms-pallet-type-config';
120
121
  export * from './batch';
121
122
  export * from './invent-trans';
122
123
  export * from './invent-container';
@@ -7,7 +7,7 @@ export declare class WMSLocationType extends DomainObject {
7
7
  NumberOfItems?: number | undefined;
8
8
  NumberOfPallets?: number | undefined;
9
9
  NumberOfContainers?: number | undefined;
10
- Container_Length?: number | undefined;
11
- Container_Width?: number | undefined;
12
- Container_Height?: number | undefined;
10
+ Length?: number | undefined;
11
+ Width?: number | undefined;
12
+ Height?: number | undefined;
13
13
  }
@@ -4,6 +4,7 @@ import { Beacon } from "./beacon";
4
4
  import { InventLocation } from "./invent-location";
5
5
  import { WMSLocationType } from "./wms-location-type";
6
6
  import { Barcode } from "./barcode";
7
+ import { WMSPalletTypeConfig } from "./wms-pallet-type-config";
7
8
  export declare class WMSLocation extends DomainObject {
8
9
  WMSLocationId?: string | undefined;
9
10
  IsAbstract?: boolean | undefined;
@@ -24,4 +25,5 @@ export declare class WMSLocation extends DomainObject {
24
25
  InventLocationId?: string | undefined;
25
26
  InventLocation?: InventLocation | undefined;
26
27
  Barcodes?: Barcode[] | undefined;
28
+ PalletTypeConfigs?: WMSPalletTypeConfig[] | undefined;
27
29
  }
@@ -0,0 +1,11 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { WMSLocation } from "./wms-location";
3
+ import { WMSPalletType } from "./wms-pallet-type";
4
+ export declare class WMSPalletTypeConfig extends DomainObject {
5
+ ConfigId?: string | undefined;
6
+ Quantity?: number | undefined;
7
+ PalletTypeId?: string | undefined;
8
+ PalletType?: WMSPalletType | undefined;
9
+ WMSLocationId?: string | undefined;
10
+ WMSLocation?: WMSLocation | undefined;
11
+ }
@@ -1208,6 +1208,8 @@
1208
1208
  (function (ProjectType) {
1209
1209
  ProjectType["None"] = "None";
1210
1210
  ProjectType["ServiceOrder"] = "ServiceOrder";
1211
+ ProjectType["InventLoading"] = "InventLoading";
1212
+ ProjectType["InventUnLoading"] = "InventUnLoading";
1211
1213
  })(exports.ProjectType || (exports.ProjectType = {}));
1212
1214
  exports.ProductionStatus = void 0;
1213
1215
  (function (ProductionStatus) {
@@ -3340,6 +3342,14 @@
3340
3342
  return WMSPalletType;
3341
3343
  }(DomainObject));
3342
3344
 
3345
+ var WMSPalletTypeConfig = /** @class */ (function (_super) {
3346
+ __extends(WMSPalletTypeConfig, _super);
3347
+ function WMSPalletTypeConfig() {
3348
+ return _super !== null && _super.apply(this, arguments) || this;
3349
+ }
3350
+ return WMSPalletTypeConfig;
3351
+ }(DomainObject));
3352
+
3343
3353
  var Batch = /** @class */ (function (_super) {
3344
3354
  __extends(Batch, _super);
3345
3355
  function Batch() {
@@ -3997,6 +4007,7 @@
3997
4007
  exports.WMSLocationType = WMSLocationType;
3998
4008
  exports.WMSPallet = WMSPallet;
3999
4009
  exports.WMSPalletType = WMSPalletType;
4010
+ exports.WMSPalletTypeConfig = WMSPalletTypeConfig;
4000
4011
  exports.WMSZone = WMSZone;
4001
4012
  exports.Webshop = Webshop;
4002
4013
  exports.WorkBreak = WorkBreak;