mobicloud-core 1.0.219 → 1.0.221

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.
@@ -118,6 +118,11 @@ export declare enum PalletType {
118
118
  QuarterPallet = "QuarterPallet",
119
119
  OceanPallet = "OceanPallet"
120
120
  }
121
+ export declare enum ContainerSizeType {
122
+ Full = "Full",
123
+ Half = "Half",
124
+ Small = "Small"
125
+ }
121
126
  export declare enum InventTransType {
122
127
  Sales = "Sales",
123
128
  Production = "Production",
@@ -117,6 +117,7 @@ export * from './wms-location-type';
117
117
  export * from './wms-pallet';
118
118
  export * from './batch';
119
119
  export * from './invent-trans';
120
+ export * from './invent-container';
120
121
  export * from './wms-zone';
121
122
  export * from './work-center-setting';
122
123
  export * from './work-center';
@@ -0,0 +1,7 @@
1
+ import { DomainObject } from "./domain-object";
2
+ import { ContainerSizeType } from "./all.enum";
3
+ export declare class InventContainer extends DomainObject {
4
+ ContainerId?: string | undefined;
5
+ SizeType?: ContainerSizeType | undefined;
6
+ Active?: boolean | undefined;
7
+ }
@@ -6,6 +6,7 @@ import { WMSLocation } from "./wms-location";
6
6
  import { WMSPallet } from "./wms-pallet";
7
7
  import { Batch } from "./batch";
8
8
  import { ServiceObject } from "./service-object";
9
+ import { InventContainer } from "./invent-container";
9
10
  import { Project } from "./project";
10
11
  export declare class InventTrans extends DomainObject {
11
12
  TransactionId?: string | undefined;
@@ -46,4 +47,8 @@ export declare class InventTrans extends DomainObject {
46
47
  Project?: Project | undefined;
47
48
  PROJECT_PROJECTID?: string | undefined;
48
49
  PROJECT_NAME?: string | undefined;
50
+ ContainerId?: string | undefined;
51
+ Container?: InventContainer | undefined;
52
+ CONTAINER_CONTAINERID?: string | undefined;
53
+ CONTAINER_NAME?: string | undefined;
49
54
  }
@@ -10,4 +10,8 @@ export declare class ShipmentLabel extends DomainObject {
10
10
  Parcel: ShipmentParcel | undefined;
11
11
  ShipmentId: string | undefined;
12
12
  Shipment: Shipment | undefined;
13
+ StorageAccountName: string | undefined;
14
+ BlobContainerName: string | undefined;
15
+ BlobName: string | undefined;
16
+ BlobFullName: string | undefined;
13
17
  }
@@ -104,4 +104,8 @@ export declare class Shipment extends DomainObject {
104
104
  HasLabels?: boolean | undefined;
105
105
  Labels?: ShipmentLabel[] | undefined;
106
106
  ShipmentVendorId?: string | undefined;
107
+ StorageAccountName_Label: string | undefined;
108
+ BlobContainerName_Label: string | undefined;
109
+ BlobName_Label: string | undefined;
110
+ BlobFullName_Label: string | undefined;
107
111
  }
@@ -5,6 +5,8 @@ import { InventLocation } from "./invent-location";
5
5
  import { WMSLocationType } from "./wms-location-type";
6
6
  export declare class WMSLocation extends DomainObject {
7
7
  WMSLocationId?: string | undefined;
8
+ ParentId?: string | undefined;
9
+ Parent?: WMSLocation | undefined;
8
10
  Aisle?: string | undefined;
9
11
  Bin?: string | undefined;
10
12
  Row?: string | undefined;
@@ -1069,6 +1069,12 @@
1069
1069
  PalletType["QuarterPallet"] = "QuarterPallet";
1070
1070
  PalletType["OceanPallet"] = "OceanPallet";
1071
1071
  })(exports.PalletType || (exports.PalletType = {}));
1072
+ exports.ContainerSizeType = void 0;
1073
+ (function (ContainerSizeType) {
1074
+ ContainerSizeType["Full"] = "Full";
1075
+ ContainerSizeType["Half"] = "Half";
1076
+ ContainerSizeType["Small"] = "Small";
1077
+ })(exports.ContainerSizeType || (exports.ContainerSizeType = {}));
1072
1078
  exports.InventTransType = void 0;
1073
1079
  (function (InventTransType) {
1074
1080
  InventTransType["Sales"] = "Sales";
@@ -3218,6 +3224,14 @@
3218
3224
  return InventTrans;
3219
3225
  }(DomainObject));
3220
3226
 
3227
+ var InventContainer = /** @class */ (function (_super) {
3228
+ __extends(InventContainer, _super);
3229
+ function InventContainer() {
3230
+ return _super !== null && _super.apply(this, arguments) || this;
3231
+ }
3232
+ return InventContainer;
3233
+ }(DomainObject));
3234
+
3221
3235
  var WMSZone = /** @class */ (function (_super) {
3222
3236
  __extends(WMSZone, _super);
3223
3237
  function WMSZone() {
@@ -3666,6 +3680,7 @@
3666
3680
  exports.GatewayPrinterInfo = GatewayPrinterInfo;
3667
3681
  exports.Holiday = Holiday;
3668
3682
  exports.Image = Image;
3683
+ exports.InventContainer = InventContainer;
3669
3684
  exports.InventLocation = InventLocation;
3670
3685
  exports.InventTrans = InventTrans;
3671
3686
  exports.KilometerToMeterPipe = KilometerToMeterPipe;