@ignos/api-client 20240613.0.9536 → 20240614.0.9562
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
|
@@ -4162,6 +4162,7 @@ export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
|
4162
4162
|
export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
4163
4163
|
pageSize?: number | null;
|
|
4164
4164
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
4165
|
+
bookingOrder?: BookingOrderDto;
|
|
4165
4166
|
continuationToken?: string | null;
|
|
4166
4167
|
constructor(data?: IBookingRequestListDto);
|
|
4167
4168
|
init(_data?: any): void;
|
|
@@ -4171,8 +4172,10 @@ export declare class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
4171
4172
|
export interface IBookingRequestListDto {
|
|
4172
4173
|
pageSize?: number | null;
|
|
4173
4174
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
4175
|
+
bookingOrder?: BookingOrderDto;
|
|
4174
4176
|
continuationToken?: string | null;
|
|
4175
4177
|
}
|
|
4178
|
+
export type BookingOrderDto = "Ascending" | "Descending";
|
|
4176
4179
|
export declare class BookingRequestDto implements IBookingRequestDto {
|
|
4177
4180
|
bookingType: BookingTypeDto;
|
|
4178
4181
|
items: BookingItemRequestDto[];
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.0.
|
|
3
|
+
// Generated using the NSwag toolchain v14.0.8.0 (NJsonSchema v11.0.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
/* tslint:disable */
|
|
@@ -22505,6 +22505,7 @@ export class BookingRequestListDto {
|
|
|
22505
22505
|
for (let item of _data["bookingStatusFilter"])
|
|
22506
22506
|
this.bookingStatusFilter.push(item);
|
|
22507
22507
|
}
|
|
22508
|
+
this.bookingOrder = _data["bookingOrder"];
|
|
22508
22509
|
this.continuationToken = _data["continuationToken"];
|
|
22509
22510
|
}
|
|
22510
22511
|
}
|
|
@@ -22522,6 +22523,7 @@ export class BookingRequestListDto {
|
|
|
22522
22523
|
for (let item of this.bookingStatusFilter)
|
|
22523
22524
|
data["bookingStatusFilter"].push(item);
|
|
22524
22525
|
}
|
|
22526
|
+
data["bookingOrder"] = this.bookingOrder;
|
|
22525
22527
|
data["continuationToken"] = this.continuationToken;
|
|
22526
22528
|
return data;
|
|
22527
22529
|
}
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
//----------------------
|
|
2
2
|
// <auto-generated>
|
|
3
|
-
// Generated using the NSwag toolchain v14.0.
|
|
3
|
+
// Generated using the NSwag toolchain v14.0.8.0 (NJsonSchema v11.0.1.0 (Newtonsoft.Json v13.0.0.0)) (http://NSwag.org)
|
|
4
4
|
// </auto-generated>
|
|
5
5
|
//----------------------
|
|
6
6
|
|
|
@@ -25689,6 +25689,7 @@ export type LocationKindDto = "Warehouse" | "Zone" | "Location";
|
|
|
25689
25689
|
export class BookingRequestListDto implements IBookingRequestListDto {
|
|
25690
25690
|
pageSize?: number | null;
|
|
25691
25691
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
25692
|
+
bookingOrder?: BookingOrderDto;
|
|
25692
25693
|
continuationToken?: string | null;
|
|
25693
25694
|
|
|
25694
25695
|
constructor(data?: IBookingRequestListDto) {
|
|
@@ -25708,6 +25709,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
25708
25709
|
for (let item of _data["bookingStatusFilter"])
|
|
25709
25710
|
this.bookingStatusFilter!.push(item);
|
|
25710
25711
|
}
|
|
25712
|
+
this.bookingOrder = _data["bookingOrder"];
|
|
25711
25713
|
this.continuationToken = _data["continuationToken"];
|
|
25712
25714
|
}
|
|
25713
25715
|
}
|
|
@@ -25727,6 +25729,7 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
25727
25729
|
for (let item of this.bookingStatusFilter)
|
|
25728
25730
|
data["bookingStatusFilter"].push(item);
|
|
25729
25731
|
}
|
|
25732
|
+
data["bookingOrder"] = this.bookingOrder;
|
|
25730
25733
|
data["continuationToken"] = this.continuationToken;
|
|
25731
25734
|
return data;
|
|
25732
25735
|
}
|
|
@@ -25735,9 +25738,12 @@ export class BookingRequestListDto implements IBookingRequestListDto {
|
|
|
25735
25738
|
export interface IBookingRequestListDto {
|
|
25736
25739
|
pageSize?: number | null;
|
|
25737
25740
|
bookingStatusFilter?: BookingStatusDto[] | null;
|
|
25741
|
+
bookingOrder?: BookingOrderDto;
|
|
25738
25742
|
continuationToken?: string | null;
|
|
25739
25743
|
}
|
|
25740
25744
|
|
|
25745
|
+
export type BookingOrderDto = "Ascending" | "Descending";
|
|
25746
|
+
|
|
25741
25747
|
export class BookingRequestDto implements IBookingRequestDto {
|
|
25742
25748
|
bookingType!: BookingTypeDto;
|
|
25743
25749
|
items!: BookingItemRequestDto[];
|