@ignos/api-client 20240618.0.9588 → 20240620.0.9604
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
|
@@ -4186,7 +4186,6 @@ export interface IBookingRequestListDto {
|
|
|
4186
4186
|
export type BookingOrderDto = "Ascending" | "Descending";
|
|
4187
4187
|
export declare class BookingTransportRequestDto implements IBookingTransportRequestDto {
|
|
4188
4188
|
transportKind: TransportKindDto;
|
|
4189
|
-
bookingKind: BookingKindDto;
|
|
4190
4189
|
items: BookingItemRequestDto[];
|
|
4191
4190
|
fromLocationId: string;
|
|
4192
4191
|
toLocationId: string;
|
|
@@ -4197,7 +4196,6 @@ export declare class BookingTransportRequestDto implements IBookingTransportRequ
|
|
|
4197
4196
|
}
|
|
4198
4197
|
export interface IBookingTransportRequestDto {
|
|
4199
4198
|
transportKind: TransportKindDto;
|
|
4200
|
-
bookingKind: BookingKindDto;
|
|
4201
4199
|
items: BookingItemRequestDto[];
|
|
4202
4200
|
fromLocationId: string;
|
|
4203
4201
|
toLocationId: string;
|
|
@@ -4221,6 +4219,7 @@ export declare class BookingGeneralRequestDto implements IBookingGeneralRequestD
|
|
|
4221
4219
|
toLocationId: string;
|
|
4222
4220
|
material?: string | null;
|
|
4223
4221
|
comment?: string | null;
|
|
4222
|
+
itemCount: number;
|
|
4224
4223
|
constructor(data?: IBookingGeneralRequestDto);
|
|
4225
4224
|
init(_data?: any): void;
|
|
4226
4225
|
static fromJS(data: any): BookingGeneralRequestDto;
|
|
@@ -4233,6 +4232,7 @@ export interface IBookingGeneralRequestDto {
|
|
|
4233
4232
|
toLocationId: string;
|
|
4234
4233
|
material?: string | null;
|
|
4235
4234
|
comment?: string | null;
|
|
4235
|
+
itemCount: number;
|
|
4236
4236
|
}
|
|
4237
4237
|
export declare class BookingUpdateDto implements IBookingUpdateDto {
|
|
4238
4238
|
bookingId: string;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -22587,7 +22587,6 @@ export class BookingTransportRequestDto {
|
|
|
22587
22587
|
init(_data) {
|
|
22588
22588
|
if (_data) {
|
|
22589
22589
|
this.transportKind = _data["transportKind"];
|
|
22590
|
-
this.bookingKind = _data["bookingKind"];
|
|
22591
22590
|
if (Array.isArray(_data["items"])) {
|
|
22592
22591
|
this.items = [];
|
|
22593
22592
|
for (let item of _data["items"])
|
|
@@ -22606,7 +22605,6 @@ export class BookingTransportRequestDto {
|
|
|
22606
22605
|
toJSON(data) {
|
|
22607
22606
|
data = typeof data === 'object' ? data : {};
|
|
22608
22607
|
data["transportKind"] = this.transportKind;
|
|
22609
|
-
data["bookingKind"] = this.bookingKind;
|
|
22610
22608
|
if (Array.isArray(this.items)) {
|
|
22611
22609
|
data["items"] = [];
|
|
22612
22610
|
for (let item of this.items)
|
|
@@ -22662,6 +22660,7 @@ export class BookingGeneralRequestDto {
|
|
|
22662
22660
|
this.toLocationId = _data["toLocationId"];
|
|
22663
22661
|
this.material = _data["material"];
|
|
22664
22662
|
this.comment = _data["comment"];
|
|
22663
|
+
this.itemCount = _data["itemCount"];
|
|
22665
22664
|
}
|
|
22666
22665
|
}
|
|
22667
22666
|
static fromJS(data) {
|
|
@@ -22678,6 +22677,7 @@ export class BookingGeneralRequestDto {
|
|
|
22678
22677
|
data["toLocationId"] = this.toLocationId;
|
|
22679
22678
|
data["material"] = this.material;
|
|
22680
22679
|
data["comment"] = this.comment;
|
|
22680
|
+
data["itemCount"] = this.itemCount;
|
|
22681
22681
|
return data;
|
|
22682
22682
|
}
|
|
22683
22683
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -25798,7 +25798,6 @@ export type BookingOrderDto = "Ascending" | "Descending";
|
|
|
25798
25798
|
|
|
25799
25799
|
export class BookingTransportRequestDto implements IBookingTransportRequestDto {
|
|
25800
25800
|
transportKind!: TransportKindDto;
|
|
25801
|
-
bookingKind!: BookingKindDto;
|
|
25802
25801
|
items!: BookingItemRequestDto[];
|
|
25803
25802
|
fromLocationId!: string;
|
|
25804
25803
|
toLocationId!: string;
|
|
@@ -25818,7 +25817,6 @@ export class BookingTransportRequestDto implements IBookingTransportRequestDto {
|
|
|
25818
25817
|
init(_data?: any) {
|
|
25819
25818
|
if (_data) {
|
|
25820
25819
|
this.transportKind = _data["transportKind"];
|
|
25821
|
-
this.bookingKind = _data["bookingKind"];
|
|
25822
25820
|
if (Array.isArray(_data["items"])) {
|
|
25823
25821
|
this.items = [] as any;
|
|
25824
25822
|
for (let item of _data["items"])
|
|
@@ -25839,7 +25837,6 @@ export class BookingTransportRequestDto implements IBookingTransportRequestDto {
|
|
|
25839
25837
|
toJSON(data?: any) {
|
|
25840
25838
|
data = typeof data === 'object' ? data : {};
|
|
25841
25839
|
data["transportKind"] = this.transportKind;
|
|
25842
|
-
data["bookingKind"] = this.bookingKind;
|
|
25843
25840
|
if (Array.isArray(this.items)) {
|
|
25844
25841
|
data["items"] = [];
|
|
25845
25842
|
for (let item of this.items)
|
|
@@ -25853,7 +25850,6 @@ export class BookingTransportRequestDto implements IBookingTransportRequestDto {
|
|
|
25853
25850
|
|
|
25854
25851
|
export interface IBookingTransportRequestDto {
|
|
25855
25852
|
transportKind: TransportKindDto;
|
|
25856
|
-
bookingKind: BookingKindDto;
|
|
25857
25853
|
items: BookingItemRequestDto[];
|
|
25858
25854
|
fromLocationId: string;
|
|
25859
25855
|
toLocationId: string;
|
|
@@ -25906,6 +25902,7 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
|
25906
25902
|
toLocationId!: string;
|
|
25907
25903
|
material?: string | null;
|
|
25908
25904
|
comment?: string | null;
|
|
25905
|
+
itemCount!: number;
|
|
25909
25906
|
|
|
25910
25907
|
constructor(data?: IBookingGeneralRequestDto) {
|
|
25911
25908
|
if (data) {
|
|
@@ -25924,6 +25921,7 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
|
25924
25921
|
this.toLocationId = _data["toLocationId"];
|
|
25925
25922
|
this.material = _data["material"];
|
|
25926
25923
|
this.comment = _data["comment"];
|
|
25924
|
+
this.itemCount = _data["itemCount"];
|
|
25927
25925
|
}
|
|
25928
25926
|
}
|
|
25929
25927
|
|
|
@@ -25942,6 +25940,7 @@ export class BookingGeneralRequestDto implements IBookingGeneralRequestDto {
|
|
|
25942
25940
|
data["toLocationId"] = this.toLocationId;
|
|
25943
25941
|
data["material"] = this.material;
|
|
25944
25942
|
data["comment"] = this.comment;
|
|
25943
|
+
data["itemCount"] = this.itemCount;
|
|
25945
25944
|
return data;
|
|
25946
25945
|
}
|
|
25947
25946
|
}
|
|
@@ -25953,6 +25952,7 @@ export interface IBookingGeneralRequestDto {
|
|
|
25953
25952
|
toLocationId: string;
|
|
25954
25953
|
material?: string | null;
|
|
25955
25954
|
comment?: string | null;
|
|
25955
|
+
itemCount: number;
|
|
25956
25956
|
}
|
|
25957
25957
|
|
|
25958
25958
|
export class BookingUpdateDto implements IBookingUpdateDto {
|