@ignos/api-client 20240704.0.9748 → 20240705.0.9760
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 +5 -3
- package/lib/ignosportal-api.js +4 -2
- package/package.json +1 -1
- package/src/ignosportal-api.ts +10 -6
package/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8705,6 +8705,7 @@ export declare class BookingItemDto implements IBookingItemDto {
|
|
|
8705
8705
|
workOrderId: string;
|
|
8706
8706
|
material?: string | null;
|
|
8707
8707
|
comment?: string | null;
|
|
8708
|
+
covered: MaterialCoveredDto;
|
|
8708
8709
|
toLocationOverride?: LocationDto | null;
|
|
8709
8710
|
constructor(data?: IBookingItemDto);
|
|
8710
8711
|
init(_data?: any): void;
|
|
@@ -8716,8 +8717,10 @@ export interface IBookingItemDto {
|
|
|
8716
8717
|
workOrderId: string;
|
|
8717
8718
|
material?: string | null;
|
|
8718
8719
|
comment?: string | null;
|
|
8720
|
+
covered: MaterialCoveredDto;
|
|
8719
8721
|
toLocationOverride?: LocationDto | null;
|
|
8720
8722
|
}
|
|
8723
|
+
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
8721
8724
|
export declare class LocationDto implements ILocationDto {
|
|
8722
8725
|
locationId: string;
|
|
8723
8726
|
locationName: string;
|
|
@@ -8819,7 +8822,6 @@ export declare class BookingGeneralRequestDto implements IBookingGeneralRequestD
|
|
|
8819
8822
|
transportKind: TransportKindDto;
|
|
8820
8823
|
fromLocationId: string;
|
|
8821
8824
|
toLocationId: string;
|
|
8822
|
-
material?: string | null;
|
|
8823
8825
|
comment?: string | null;
|
|
8824
8826
|
itemCount: number;
|
|
8825
8827
|
constructor(data?: IBookingGeneralRequestDto);
|
|
@@ -8832,7 +8834,6 @@ export interface IBookingGeneralRequestDto {
|
|
|
8832
8834
|
transportKind: TransportKindDto;
|
|
8833
8835
|
fromLocationId: string;
|
|
8834
8836
|
toLocationId: string;
|
|
8835
|
-
material?: string | null;
|
|
8836
8837
|
comment?: string | null;
|
|
8837
8838
|
itemCount: number;
|
|
8838
8839
|
}
|
|
@@ -8908,7 +8909,6 @@ export interface IMaterialDesciptionDto {
|
|
|
8908
8909
|
materialName: string;
|
|
8909
8910
|
covered: MaterialCoveredDto;
|
|
8910
8911
|
}
|
|
8911
|
-
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
8912
8912
|
export declare class MaterialUpdateDto implements IMaterialUpdateDto {
|
|
8913
8913
|
materialName: string;
|
|
8914
8914
|
covered: MaterialCoveredDto;
|
|
@@ -8996,6 +8996,7 @@ export declare class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
|
|
|
8996
8996
|
workOrderId: string;
|
|
8997
8997
|
part?: PartDto | null;
|
|
8998
8998
|
trackingHistory: TrackingHistoryDto[];
|
|
8999
|
+
covered: MaterialCoveredDto;
|
|
8999
9000
|
constructor(data?: ITrackingWorkOrderDto);
|
|
9000
9001
|
init(_data?: any): void;
|
|
9001
9002
|
static fromJS(data: any): TrackingWorkOrderDto;
|
|
@@ -9005,6 +9006,7 @@ export interface ITrackingWorkOrderDto {
|
|
|
9005
9006
|
workOrderId: string;
|
|
9006
9007
|
part?: PartDto | null;
|
|
9007
9008
|
trackingHistory: TrackingHistoryDto[];
|
|
9009
|
+
covered: MaterialCoveredDto;
|
|
9008
9010
|
}
|
|
9009
9011
|
export declare class TrackingUpdateDto implements ITrackingUpdateDto {
|
|
9010
9012
|
trackingId: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -31656,6 +31656,7 @@ export class BookingItemDto {
|
|
|
31656
31656
|
this.workOrderId = _data["workOrderId"];
|
|
31657
31657
|
this.material = _data["material"];
|
|
31658
31658
|
this.comment = _data["comment"];
|
|
31659
|
+
this.covered = _data["covered"];
|
|
31659
31660
|
this.toLocationOverride = _data["toLocationOverride"] ? LocationDto.fromJS(_data["toLocationOverride"]) : undefined;
|
|
31660
31661
|
}
|
|
31661
31662
|
}
|
|
@@ -31671,6 +31672,7 @@ export class BookingItemDto {
|
|
|
31671
31672
|
data["workOrderId"] = this.workOrderId;
|
|
31672
31673
|
data["material"] = this.material;
|
|
31673
31674
|
data["comment"] = this.comment;
|
|
31675
|
+
data["covered"] = this.covered;
|
|
31674
31676
|
data["toLocationOverride"] = this.toLocationOverride ? this.toLocationOverride.toJSON() : undefined;
|
|
31675
31677
|
return data;
|
|
31676
31678
|
}
|
|
@@ -31931,7 +31933,6 @@ export class BookingGeneralRequestDto {
|
|
|
31931
31933
|
this.transportKind = _data["transportKind"];
|
|
31932
31934
|
this.fromLocationId = _data["fromLocationId"];
|
|
31933
31935
|
this.toLocationId = _data["toLocationId"];
|
|
31934
|
-
this.material = _data["material"];
|
|
31935
31936
|
this.comment = _data["comment"];
|
|
31936
31937
|
this.itemCount = _data["itemCount"];
|
|
31937
31938
|
}
|
|
@@ -31948,7 +31949,6 @@ export class BookingGeneralRequestDto {
|
|
|
31948
31949
|
data["transportKind"] = this.transportKind;
|
|
31949
31950
|
data["fromLocationId"] = this.fromLocationId;
|
|
31950
31951
|
data["toLocationId"] = this.toLocationId;
|
|
31951
|
-
data["material"] = this.material;
|
|
31952
31952
|
data["comment"] = this.comment;
|
|
31953
31953
|
data["itemCount"] = this.itemCount;
|
|
31954
31954
|
return data;
|
|
@@ -32378,6 +32378,7 @@ export class TrackingWorkOrderDto {
|
|
|
32378
32378
|
for (let item of _data["trackingHistory"])
|
|
32379
32379
|
this.trackingHistory.push(TrackingHistoryDto.fromJS(item));
|
|
32380
32380
|
}
|
|
32381
|
+
this.covered = _data["covered"];
|
|
32381
32382
|
}
|
|
32382
32383
|
}
|
|
32383
32384
|
static fromJS(data) {
|
|
@@ -32395,6 +32396,7 @@ export class TrackingWorkOrderDto {
|
|
|
32395
32396
|
for (let item of this.trackingHistory)
|
|
32396
32397
|
data["trackingHistory"].push(item.toJSON());
|
|
32397
32398
|
}
|
|
32399
|
+
data["covered"] = this.covered;
|
|
32398
32400
|
return data;
|
|
32399
32401
|
}
|
|
32400
32402
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -39389,6 +39389,7 @@ export class BookingItemDto implements IBookingItemDto {
|
|
|
39389
39389
|
workOrderId!: string;
|
|
39390
39390
|
material?: string | null;
|
|
39391
39391
|
comment?: string | null;
|
|
39392
|
+
covered!: MaterialCoveredDto;
|
|
39392
39393
|
toLocationOverride?: LocationDto | null;
|
|
39393
39394
|
|
|
39394
39395
|
constructor(data?: IBookingItemDto) {
|
|
@@ -39406,6 +39407,7 @@ export class BookingItemDto implements IBookingItemDto {
|
|
|
39406
39407
|
this.workOrderId = _data["workOrderId"];
|
|
39407
39408
|
this.material = _data["material"];
|
|
39408
39409
|
this.comment = _data["comment"];
|
|
39410
|
+
this.covered = _data["covered"];
|
|
39409
39411
|
this.toLocationOverride = _data["toLocationOverride"] ? LocationDto.fromJS(_data["toLocationOverride"]) : <any>undefined;
|
|
39410
39412
|
}
|
|
39411
39413
|
}
|
|
@@ -39423,6 +39425,7 @@ export class BookingItemDto implements IBookingItemDto {
|
|
|
39423
39425
|
data["workOrderId"] = this.workOrderId;
|
|
39424
39426
|
data["material"] = this.material;
|
|
39425
39427
|
data["comment"] = this.comment;
|
|
39428
|
+
data["covered"] = this.covered;
|
|
39426
39429
|
data["toLocationOverride"] = this.toLocationOverride ? this.toLocationOverride.toJSON() : <any>undefined;
|
|
39427
39430
|
return data;
|
|
39428
39431
|
}
|
|
@@ -39433,9 +39436,12 @@ export interface IBookingItemDto {
|
|
|
39433
39436
|
workOrderId: string;
|
|
39434
39437
|
material?: string | null;
|
|
39435
39438
|
comment?: string | null;
|
|
39439
|
+
covered: MaterialCoveredDto;
|
|
39436
39440
|
toLocationOverride?: LocationDto | null;
|
|
39437
39441
|
}
|
|
39438
39442
|
|
|
39443
|
+
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
39444
|
+
|
|
39439
39445
|
export class LocationDto implements ILocationDto {
|
|
39440
39446
|
locationId!: string;
|
|
39441
39447
|
locationName!: string;
|
|
@@ -39780,7 +39786,6 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
|
39780
39786
|
transportKind!: TransportKindDto;
|
|
39781
39787
|
fromLocationId!: string;
|
|
39782
39788
|
toLocationId!: string;
|
|
39783
|
-
material?: string | null;
|
|
39784
39789
|
comment?: string | null;
|
|
39785
39790
|
itemCount!: number;
|
|
39786
39791
|
|
|
@@ -39799,7 +39804,6 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
|
39799
39804
|
this.transportKind = _data["transportKind"];
|
|
39800
39805
|
this.fromLocationId = _data["fromLocationId"];
|
|
39801
39806
|
this.toLocationId = _data["toLocationId"];
|
|
39802
|
-
this.material = _data["material"];
|
|
39803
39807
|
this.comment = _data["comment"];
|
|
39804
39808
|
this.itemCount = _data["itemCount"];
|
|
39805
39809
|
}
|
|
@@ -39818,7 +39822,6 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
|
39818
39822
|
data["transportKind"] = this.transportKind;
|
|
39819
39823
|
data["fromLocationId"] = this.fromLocationId;
|
|
39820
39824
|
data["toLocationId"] = this.toLocationId;
|
|
39821
|
-
data["material"] = this.material;
|
|
39822
39825
|
data["comment"] = this.comment;
|
|
39823
39826
|
data["itemCount"] = this.itemCount;
|
|
39824
39827
|
return data;
|
|
@@ -39830,7 +39833,6 @@ export interface IBookingGeneralRequestDto {
|
|
|
39830
39833
|
transportKind: TransportKindDto;
|
|
39831
39834
|
fromLocationId: string;
|
|
39832
39835
|
toLocationId: string;
|
|
39833
|
-
material?: string | null;
|
|
39834
39836
|
comment?: string | null;
|
|
39835
39837
|
itemCount: number;
|
|
39836
39838
|
}
|
|
@@ -40102,8 +40104,6 @@ export interface IMaterialDesciptionDto {
|
|
|
40102
40104
|
covered: MaterialCoveredDto;
|
|
40103
40105
|
}
|
|
40104
40106
|
|
|
40105
|
-
export type MaterialCoveredDto = "NotDefined" | "NotCovered" | "Covered";
|
|
40106
|
-
|
|
40107
40107
|
export class MaterialUpdateDto implements IMaterialUpdateDto {
|
|
40108
40108
|
materialName!: string;
|
|
40109
40109
|
covered!: MaterialCoveredDto;
|
|
@@ -40400,6 +40400,7 @@ export class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
|
|
|
40400
40400
|
workOrderId!: string;
|
|
40401
40401
|
part?: PartDto | null;
|
|
40402
40402
|
trackingHistory!: TrackingHistoryDto[];
|
|
40403
|
+
covered!: MaterialCoveredDto;
|
|
40403
40404
|
|
|
40404
40405
|
constructor(data?: ITrackingWorkOrderDto) {
|
|
40405
40406
|
if (data) {
|
|
@@ -40422,6 +40423,7 @@ export class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
|
|
|
40422
40423
|
for (let item of _data["trackingHistory"])
|
|
40423
40424
|
this.trackingHistory!.push(TrackingHistoryDto.fromJS(item));
|
|
40424
40425
|
}
|
|
40426
|
+
this.covered = _data["covered"];
|
|
40425
40427
|
}
|
|
40426
40428
|
}
|
|
40427
40429
|
|
|
@@ -40441,6 +40443,7 @@ export class TrackingWorkOrderDto implements ITrackingWorkOrderDto {
|
|
|
40441
40443
|
for (let item of this.trackingHistory)
|
|
40442
40444
|
data["trackingHistory"].push(item.toJSON());
|
|
40443
40445
|
}
|
|
40446
|
+
data["covered"] = this.covered;
|
|
40444
40447
|
return data;
|
|
40445
40448
|
}
|
|
40446
40449
|
}
|
|
@@ -40449,6 +40452,7 @@ export interface ITrackingWorkOrderDto {
|
|
|
40449
40452
|
workOrderId: string;
|
|
40450
40453
|
part?: PartDto | null;
|
|
40451
40454
|
trackingHistory: TrackingHistoryDto[];
|
|
40455
|
+
covered: MaterialCoveredDto;
|
|
40452
40456
|
}
|
|
40453
40457
|
|
|
40454
40458
|
export class TrackingUpdateDto implements ITrackingUpdateDto {
|