@ignos/api-client 20240911.0.10321 → 20240916.0.10379
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.
- package/lib/ignosportal-api.d.ts +15 -1
- package/lib/ignosportal-api.js +30 -0
- package/package.json +1 -1
- package/src/ignosportal-api.ts +45 -1
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -3338,6 +3338,7 @@ export declare class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
3338
3338
|
mrbExportJobId?: string | null;
|
|
3339
3339
|
status?: MrbStatusDto | null;
|
|
3340
3340
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
3341
|
+
part?: MrbPartDto | null;
|
|
3341
3342
|
constructor(data?: IMrbInstanceDto);
|
|
3342
3343
|
init(_data?: any): void;
|
|
3343
3344
|
static fromJS(data: any): MrbInstanceDto;
|
|
@@ -3358,6 +3359,7 @@ export interface IMrbInstanceDto {
|
|
|
3358
3359
|
mrbExportJobId?: string | null;
|
|
3359
3360
|
status?: MrbStatusDto | null;
|
|
3360
3361
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
3362
|
+
part?: MrbPartDto | null;
|
|
3361
3363
|
}
|
|
3362
3364
|
export declare class CustomerOrderLineTraceItemDto implements ICustomerOrderLineTraceItemDto {
|
|
3363
3365
|
workOrder: string;
|
|
@@ -3431,6 +3433,18 @@ export interface IMrbSentInfoDto {
|
|
|
3431
3433
|
sentTime: Date;
|
|
3432
3434
|
sentBy: UserDto;
|
|
3433
3435
|
}
|
|
3436
|
+
export declare class MrbPartDto implements IMrbPartDto {
|
|
3437
|
+
partNumber?: string | null;
|
|
3438
|
+
partName?: string | null;
|
|
3439
|
+
constructor(data?: IMrbPartDto);
|
|
3440
|
+
init(_data?: any): void;
|
|
3441
|
+
static fromJS(data: any): MrbPartDto;
|
|
3442
|
+
toJSON(data?: any): any;
|
|
3443
|
+
}
|
|
3444
|
+
export interface IMrbPartDto {
|
|
3445
|
+
partNumber?: string | null;
|
|
3446
|
+
partName?: string | null;
|
|
3447
|
+
}
|
|
3434
3448
|
export declare class MrbInstanceJobDto implements IMrbInstanceJobDto {
|
|
3435
3449
|
jobId: string;
|
|
3436
3450
|
mrbInstanceId: string;
|
|
@@ -8186,7 +8200,7 @@ export interface IBookingStatusUpdateDto {
|
|
|
8186
8200
|
deliveryExceptionToLocationId?: string | null;
|
|
8187
8201
|
deliveryExceptionComment?: string | null;
|
|
8188
8202
|
}
|
|
8189
|
-
export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "
|
|
8203
|
+
export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "Environmental" | "Gate" | "Ground" | "Inbound" | "Logia" | "LogiaTransit" | "Outbound" | "Pack" | "PalletRack" | "Pick" | "Quality" | "Quarantine" | "Resource" | "ShelvingRack" | "User";
|
|
8190
8204
|
export declare class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
8191
8205
|
materialId: string;
|
|
8192
8206
|
materialName: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -21633,6 +21633,7 @@ export class MrbInstanceDto {
|
|
|
21633
21633
|
this.mrbExportJobId = _data["mrbExportJobId"];
|
|
21634
21634
|
this.status = _data["status"] ? MrbStatusDto.fromJS(_data["status"]) : undefined;
|
|
21635
21635
|
this.latestRevision = _data["latestRevision"] ? MrbInstanceRevisionDto.fromJS(_data["latestRevision"]) : undefined;
|
|
21636
|
+
this.part = _data["part"] ? MrbPartDto.fromJS(_data["part"]) : undefined;
|
|
21636
21637
|
}
|
|
21637
21638
|
}
|
|
21638
21639
|
static fromJS(data) {
|
|
@@ -21661,6 +21662,7 @@ export class MrbInstanceDto {
|
|
|
21661
21662
|
data["mrbExportJobId"] = this.mrbExportJobId;
|
|
21662
21663
|
data["status"] = this.status ? this.status.toJSON() : undefined;
|
|
21663
21664
|
data["latestRevision"] = this.latestRevision ? this.latestRevision.toJSON() : undefined;
|
|
21665
|
+
data["part"] = this.part ? this.part.toJSON() : undefined;
|
|
21664
21666
|
return data;
|
|
21665
21667
|
}
|
|
21666
21668
|
}
|
|
@@ -21801,6 +21803,34 @@ export class MrbSentInfoDto {
|
|
|
21801
21803
|
return data;
|
|
21802
21804
|
}
|
|
21803
21805
|
}
|
|
21806
|
+
export class MrbPartDto {
|
|
21807
|
+
constructor(data) {
|
|
21808
|
+
if (data) {
|
|
21809
|
+
for (var property in data) {
|
|
21810
|
+
if (data.hasOwnProperty(property))
|
|
21811
|
+
this[property] = data[property];
|
|
21812
|
+
}
|
|
21813
|
+
}
|
|
21814
|
+
}
|
|
21815
|
+
init(_data) {
|
|
21816
|
+
if (_data) {
|
|
21817
|
+
this.partNumber = _data["partNumber"];
|
|
21818
|
+
this.partName = _data["partName"];
|
|
21819
|
+
}
|
|
21820
|
+
}
|
|
21821
|
+
static fromJS(data) {
|
|
21822
|
+
data = typeof data === 'object' ? data : {};
|
|
21823
|
+
let result = new MrbPartDto();
|
|
21824
|
+
result.init(data);
|
|
21825
|
+
return result;
|
|
21826
|
+
}
|
|
21827
|
+
toJSON(data) {
|
|
21828
|
+
data = typeof data === 'object' ? data : {};
|
|
21829
|
+
data["partNumber"] = this.partNumber;
|
|
21830
|
+
data["partName"] = this.partName;
|
|
21831
|
+
return data;
|
|
21832
|
+
}
|
|
21833
|
+
}
|
|
21804
21834
|
export class MrbInstanceJobDto {
|
|
21805
21835
|
constructor(data) {
|
|
21806
21836
|
if (data) {
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -23895,6 +23895,7 @@ export class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
23895
23895
|
mrbExportJobId?: string | null;
|
|
23896
23896
|
status?: MrbStatusDto | null;
|
|
23897
23897
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
23898
|
+
part?: MrbPartDto | null;
|
|
23898
23899
|
|
|
23899
23900
|
constructor(data?: IMrbInstanceDto) {
|
|
23900
23901
|
if (data) {
|
|
@@ -23928,6 +23929,7 @@ export class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
23928
23929
|
this.mrbExportJobId = _data["mrbExportJobId"];
|
|
23929
23930
|
this.status = _data["status"] ? MrbStatusDto.fromJS(_data["status"]) : <any>undefined;
|
|
23930
23931
|
this.latestRevision = _data["latestRevision"] ? MrbInstanceRevisionDto.fromJS(_data["latestRevision"]) : <any>undefined;
|
|
23932
|
+
this.part = _data["part"] ? MrbPartDto.fromJS(_data["part"]) : <any>undefined;
|
|
23931
23933
|
}
|
|
23932
23934
|
}
|
|
23933
23935
|
|
|
@@ -23958,6 +23960,7 @@ export class MrbInstanceDto implements IMrbInstanceDto {
|
|
|
23958
23960
|
data["mrbExportJobId"] = this.mrbExportJobId;
|
|
23959
23961
|
data["status"] = this.status ? this.status.toJSON() : <any>undefined;
|
|
23960
23962
|
data["latestRevision"] = this.latestRevision ? this.latestRevision.toJSON() : <any>undefined;
|
|
23963
|
+
data["part"] = this.part ? this.part.toJSON() : <any>undefined;
|
|
23961
23964
|
return data;
|
|
23962
23965
|
}
|
|
23963
23966
|
}
|
|
@@ -23977,6 +23980,7 @@ export interface IMrbInstanceDto {
|
|
|
23977
23980
|
mrbExportJobId?: string | null;
|
|
23978
23981
|
status?: MrbStatusDto | null;
|
|
23979
23982
|
latestRevision?: MrbInstanceRevisionDto | null;
|
|
23983
|
+
part?: MrbPartDto | null;
|
|
23980
23984
|
}
|
|
23981
23985
|
|
|
23982
23986
|
export class CustomerOrderLineTraceItemDto implements ICustomerOrderLineTraceItemDto {
|
|
@@ -24190,6 +24194,46 @@ export interface IMrbSentInfoDto {
|
|
|
24190
24194
|
sentBy: UserDto;
|
|
24191
24195
|
}
|
|
24192
24196
|
|
|
24197
|
+
export class MrbPartDto implements IMrbPartDto {
|
|
24198
|
+
partNumber?: string | null;
|
|
24199
|
+
partName?: string | null;
|
|
24200
|
+
|
|
24201
|
+
constructor(data?: IMrbPartDto) {
|
|
24202
|
+
if (data) {
|
|
24203
|
+
for (var property in data) {
|
|
24204
|
+
if (data.hasOwnProperty(property))
|
|
24205
|
+
(<any>this)[property] = (<any>data)[property];
|
|
24206
|
+
}
|
|
24207
|
+
}
|
|
24208
|
+
}
|
|
24209
|
+
|
|
24210
|
+
init(_data?: any) {
|
|
24211
|
+
if (_data) {
|
|
24212
|
+
this.partNumber = _data["partNumber"];
|
|
24213
|
+
this.partName = _data["partName"];
|
|
24214
|
+
}
|
|
24215
|
+
}
|
|
24216
|
+
|
|
24217
|
+
static fromJS(data: any): MrbPartDto {
|
|
24218
|
+
data = typeof data === 'object' ? data : {};
|
|
24219
|
+
let result = new MrbPartDto();
|
|
24220
|
+
result.init(data);
|
|
24221
|
+
return result;
|
|
24222
|
+
}
|
|
24223
|
+
|
|
24224
|
+
toJSON(data?: any) {
|
|
24225
|
+
data = typeof data === 'object' ? data : {};
|
|
24226
|
+
data["partNumber"] = this.partNumber;
|
|
24227
|
+
data["partName"] = this.partName;
|
|
24228
|
+
return data;
|
|
24229
|
+
}
|
|
24230
|
+
}
|
|
24231
|
+
|
|
24232
|
+
export interface IMrbPartDto {
|
|
24233
|
+
partNumber?: string | null;
|
|
24234
|
+
partName?: string | null;
|
|
24235
|
+
}
|
|
24236
|
+
|
|
24193
24237
|
export class MrbInstanceJobDto implements IMrbInstanceJobDto {
|
|
24194
24238
|
jobId!: string;
|
|
24195
24239
|
mrbInstanceId!: string;
|
|
@@ -38523,7 +38567,7 @@ export interface IBookingStatusUpdateDto {
|
|
|
38523
38567
|
deliveryExceptionComment?: string | null;
|
|
38524
38568
|
}
|
|
38525
38569
|
|
|
38526
|
-
export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "
|
|
38570
|
+
export type LocationProfileDto = "Cage" | "CantileverRack" | "Deviation" | "Environmental" | "Gate" | "Ground" | "Inbound" | "Logia" | "LogiaTransit" | "Outbound" | "Pack" | "PalletRack" | "Pick" | "Quality" | "Quarantine" | "Resource" | "ShelvingRack" | "User";
|
|
38527
38571
|
|
|
38528
38572
|
export class MaterialDesciptionDto implements IMaterialDesciptionDto {
|
|
38529
38573
|
materialId!: string;
|