@ignos/api-client 20240614.0.9562 → 20240614.0.9570
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
CHANGED
|
@@ -4132,6 +4132,7 @@ export declare class BookingItemDto implements IBookingItemDto {
|
|
|
4132
4132
|
trackingId: string;
|
|
4133
4133
|
workOrderId: string;
|
|
4134
4134
|
material?: string | null;
|
|
4135
|
+
comment?: string | null;
|
|
4135
4136
|
constructor(data?: IBookingItemDto);
|
|
4136
4137
|
init(_data?: any): void;
|
|
4137
4138
|
static fromJS(data: any): BookingItemDto;
|
|
@@ -4141,6 +4142,7 @@ export interface IBookingItemDto {
|
|
|
4141
4142
|
trackingId: string;
|
|
4142
4143
|
workOrderId: string;
|
|
4143
4144
|
material?: string | null;
|
|
4145
|
+
comment?: string | null;
|
|
4144
4146
|
}
|
|
4145
4147
|
export declare class LocationDto implements ILocationDto {
|
|
4146
4148
|
locationId: string;
|
|
@@ -4206,7 +4208,6 @@ export interface IBookingItemRequestDto {
|
|
|
4206
4208
|
}
|
|
4207
4209
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
4208
4210
|
bookingId: string;
|
|
4209
|
-
comment?: string | null;
|
|
4210
4211
|
constructor(data?: IBookingUpdateDto);
|
|
4211
4212
|
init(_data?: any): void;
|
|
4212
4213
|
static fromJS(data: any): BookingUpdateDto;
|
|
@@ -4214,11 +4215,9 @@ export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
|
4214
4215
|
}
|
|
4215
4216
|
export interface IBookingUpdateDto {
|
|
4216
4217
|
bookingId: string;
|
|
4217
|
-
comment?: string | null;
|
|
4218
4218
|
}
|
|
4219
4219
|
export declare class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
|
|
4220
4220
|
bookingId: string;
|
|
4221
|
-
comment?: string | null;
|
|
4222
4221
|
deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
|
|
4223
4222
|
constructor(data?: IBookingDeliveryUpdateDto);
|
|
4224
4223
|
init(_data?: any): void;
|
|
@@ -4227,7 +4226,6 @@ export declare class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateD
|
|
|
4227
4226
|
}
|
|
4228
4227
|
export interface IBookingDeliveryUpdateDto {
|
|
4229
4228
|
bookingId: string;
|
|
4230
|
-
comment?: string | null;
|
|
4231
4229
|
deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
|
|
4232
4230
|
}
|
|
4233
4231
|
export declare class BookingDeliveryExceptionDto implements IBookingDeliveryExceptionDto {
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -22440,6 +22440,7 @@ export class BookingItemDto {
|
|
|
22440
22440
|
this.trackingId = _data["trackingId"];
|
|
22441
22441
|
this.workOrderId = _data["workOrderId"];
|
|
22442
22442
|
this.material = _data["material"];
|
|
22443
|
+
this.comment = _data["comment"];
|
|
22443
22444
|
}
|
|
22444
22445
|
}
|
|
22445
22446
|
static fromJS(data) {
|
|
@@ -22453,6 +22454,7 @@ export class BookingItemDto {
|
|
|
22453
22454
|
data["trackingId"] = this.trackingId;
|
|
22454
22455
|
data["workOrderId"] = this.workOrderId;
|
|
22455
22456
|
data["material"] = this.material;
|
|
22457
|
+
data["comment"] = this.comment;
|
|
22456
22458
|
return data;
|
|
22457
22459
|
}
|
|
22458
22460
|
}
|
|
@@ -22611,7 +22613,6 @@ export class BookingUpdateDto {
|
|
|
22611
22613
|
init(_data) {
|
|
22612
22614
|
if (_data) {
|
|
22613
22615
|
this.bookingId = _data["bookingId"];
|
|
22614
|
-
this.comment = _data["comment"];
|
|
22615
22616
|
}
|
|
22616
22617
|
}
|
|
22617
22618
|
static fromJS(data) {
|
|
@@ -22623,7 +22624,6 @@ export class BookingUpdateDto {
|
|
|
22623
22624
|
toJSON(data) {
|
|
22624
22625
|
data = typeof data === 'object' ? data : {};
|
|
22625
22626
|
data["bookingId"] = this.bookingId;
|
|
22626
|
-
data["comment"] = this.comment;
|
|
22627
22627
|
return data;
|
|
22628
22628
|
}
|
|
22629
22629
|
}
|
|
@@ -22639,7 +22639,6 @@ export class BookingDeliveryUpdateDto {
|
|
|
22639
22639
|
init(_data) {
|
|
22640
22640
|
if (_data) {
|
|
22641
22641
|
this.bookingId = _data["bookingId"];
|
|
22642
|
-
this.comment = _data["comment"];
|
|
22643
22642
|
if (Array.isArray(_data["deliveryExceptions"])) {
|
|
22644
22643
|
this.deliveryExceptions = [];
|
|
22645
22644
|
for (let item of _data["deliveryExceptions"])
|
|
@@ -22656,7 +22655,6 @@ export class BookingDeliveryUpdateDto {
|
|
|
22656
22655
|
toJSON(data) {
|
|
22657
22656
|
data = typeof data === 'object' ? data : {};
|
|
22658
22657
|
data["bookingId"] = this.bookingId;
|
|
22659
|
-
data["comment"] = this.comment;
|
|
22660
22658
|
if (Array.isArray(this.deliveryExceptions)) {
|
|
22661
22659
|
data["deliveryExceptions"] = [];
|
|
22662
22660
|
for (let item of this.deliveryExceptions)
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -25596,6 +25596,7 @@ export class BookingItemDto implements IBookingItemDto {
|
|
|
25596
25596
|
trackingId!: string;
|
|
25597
25597
|
workOrderId!: string;
|
|
25598
25598
|
material?: string | null;
|
|
25599
|
+
comment?: string | null;
|
|
25599
25600
|
|
|
25600
25601
|
constructor(data?: IBookingItemDto) {
|
|
25601
25602
|
if (data) {
|
|
@@ -25611,6 +25612,7 @@ export class BookingItemDto implements IBookingItemDto {
|
|
|
25611
25612
|
this.trackingId = _data["trackingId"];
|
|
25612
25613
|
this.workOrderId = _data["workOrderId"];
|
|
25613
25614
|
this.material = _data["material"];
|
|
25615
|
+
this.comment = _data["comment"];
|
|
25614
25616
|
}
|
|
25615
25617
|
}
|
|
25616
25618
|
|
|
@@ -25626,6 +25628,7 @@ export class BookingItemDto implements IBookingItemDto {
|
|
|
25626
25628
|
data["trackingId"] = this.trackingId;
|
|
25627
25629
|
data["workOrderId"] = this.workOrderId;
|
|
25628
25630
|
data["material"] = this.material;
|
|
25631
|
+
data["comment"] = this.comment;
|
|
25629
25632
|
return data;
|
|
25630
25633
|
}
|
|
25631
25634
|
}
|
|
@@ -25634,6 +25637,7 @@ export interface IBookingItemDto {
|
|
|
25634
25637
|
trackingId: string;
|
|
25635
25638
|
workOrderId: string;
|
|
25636
25639
|
material?: string | null;
|
|
25640
|
+
comment?: string | null;
|
|
25637
25641
|
}
|
|
25638
25642
|
|
|
25639
25643
|
export class LocationDto implements ILocationDto {
|
|
@@ -25845,7 +25849,6 @@ export interface IBookingItemRequestDto {
|
|
|
25845
25849
|
|
|
25846
25850
|
export class BookingUpdateDto implements IBookingUpdateDto {
|
|
25847
25851
|
bookingId!: string;
|
|
25848
|
-
comment?: string | null;
|
|
25849
25852
|
|
|
25850
25853
|
constructor(data?: IBookingUpdateDto) {
|
|
25851
25854
|
if (data) {
|
|
@@ -25859,7 +25862,6 @@ export class BookingUpdateDto implements IBookingUpdateDto {
|
|
|
25859
25862
|
init(_data?: any) {
|
|
25860
25863
|
if (_data) {
|
|
25861
25864
|
this.bookingId = _data["bookingId"];
|
|
25862
|
-
this.comment = _data["comment"];
|
|
25863
25865
|
}
|
|
25864
25866
|
}
|
|
25865
25867
|
|
|
@@ -25873,19 +25875,16 @@ export class BookingUpdateDto implements IBookingUpdateDto {
|
|
|
25873
25875
|
toJSON(data?: any) {
|
|
25874
25876
|
data = typeof data === 'object' ? data : {};
|
|
25875
25877
|
data["bookingId"] = this.bookingId;
|
|
25876
|
-
data["comment"] = this.comment;
|
|
25877
25878
|
return data;
|
|
25878
25879
|
}
|
|
25879
25880
|
}
|
|
25880
25881
|
|
|
25881
25882
|
export interface IBookingUpdateDto {
|
|
25882
25883
|
bookingId: string;
|
|
25883
|
-
comment?: string | null;
|
|
25884
25884
|
}
|
|
25885
25885
|
|
|
25886
25886
|
export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
|
|
25887
25887
|
bookingId!: string;
|
|
25888
|
-
comment?: string | null;
|
|
25889
25888
|
deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
|
|
25890
25889
|
|
|
25891
25890
|
constructor(data?: IBookingDeliveryUpdateDto) {
|
|
@@ -25900,7 +25899,6 @@ export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
|
|
|
25900
25899
|
init(_data?: any) {
|
|
25901
25900
|
if (_data) {
|
|
25902
25901
|
this.bookingId = _data["bookingId"];
|
|
25903
|
-
this.comment = _data["comment"];
|
|
25904
25902
|
if (Array.isArray(_data["deliveryExceptions"])) {
|
|
25905
25903
|
this.deliveryExceptions = [] as any;
|
|
25906
25904
|
for (let item of _data["deliveryExceptions"])
|
|
@@ -25919,7 +25917,6 @@ export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
|
|
|
25919
25917
|
toJSON(data?: any) {
|
|
25920
25918
|
data = typeof data === 'object' ? data : {};
|
|
25921
25919
|
data["bookingId"] = this.bookingId;
|
|
25922
|
-
data["comment"] = this.comment;
|
|
25923
25920
|
if (Array.isArray(this.deliveryExceptions)) {
|
|
25924
25921
|
data["deliveryExceptions"] = [];
|
|
25925
25922
|
for (let item of this.deliveryExceptions)
|
|
@@ -25931,7 +25928,6 @@ export class BookingDeliveryUpdateDto implements IBookingDeliveryUpdateDto {
|
|
|
25931
25928
|
|
|
25932
25929
|
export interface IBookingDeliveryUpdateDto {
|
|
25933
25930
|
bookingId: string;
|
|
25934
|
-
comment?: string | null;
|
|
25935
25931
|
deliveryExceptions?: BookingDeliveryExceptionDto[] | null;
|
|
25936
25932
|
}
|
|
25937
25933
|
|